@nativescript-community/ui-mapbox 6.2.31 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/common.d.ts +56 -26
- package/common.js +44 -28
- package/expression/expression-parser.android.d.ts +2 -2
- package/expression/expression-parser.android.js +4 -3
- package/expression/expression-parser.ios.d.ts +2 -2
- package/expression/expression-parser.ios.js +28 -13
- package/index.android.d.ts +59 -66
- package/index.android.js +1388 -1244
- package/index.d.ts +36 -5
- package/index.ios.d.ts +72 -243
- package/index.ios.js +1161 -1999
- package/layers/layer-factory.android.d.ts +7 -5
- package/layers/layer-factory.android.js +71 -41
- package/layers/layer-factory.d.ts +2 -1
- package/layers/layer-factory.ios.d.ts +8 -8
- package/layers/layer-factory.ios.js +46 -100
- package/layers/parser/property-parser.android.d.ts +3 -1
- package/layers/parser/property-parser.android.js +25 -24
- package/layers/parser/property-parser.d.ts +1 -1
- package/layers/parser/property-parser.ios.d.ts +0 -2
- package/layers/parser/property-parser.ios.js +0 -149
- package/markers/Marker.android.d.ts +28 -0
- package/markers/Marker.android.js +54 -0
- package/markers/Marker.common.d.ts +2 -0
- package/markers/Marker.common.js +31 -0
- package/markers/MarkerManager.android.d.ts +35 -0
- package/markers/MarkerManager.android.js +220 -0
- package/package.json +7 -6
- package/platforms/android/include.gradle +31 -27
- package/platforms/android/ui_mapbox.aar +0 -0
- package/platforms/ios/Podfile +3 -1
- package/platforms/ios/Resources/default_pin.png +0 -0
- package/platforms/ios/src/MapboxBridge.swift +1479 -0
- package/platforms/ios/src/NativeExpressionParser.swift +33 -0
- package/platforms/ios/src/NativeLayerFactory.swift +108 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/typings/Mapbox.ios.d.ts +2 -3242
- package/typings/geojson.android.d.ts +689 -0
- package/typings/index.android.d.ts +46 -0
- package/typings/mapbox.android.d.ts +39968 -12560
- package/typings/mapbox.bridge.ios.d.ts +129 -0
package/index.android.d.ts
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
* @todo FIXME: The gcFix() implementation currently assumes only one map visible at a time.
|
|
5
5
|
*/
|
|
6
6
|
import { ImageSource } from '@nativescript/core';
|
|
7
|
-
import { AddExtrusionOptions, AddGeoJsonClusteredOptions, AddPolygonOptions, AddPolylineOptions, AddSourceOptions, AnimateCameraOptions, DeleteOfflineRegionOptions, DownloadOfflineRegionOptions, Feature, LatLng, LayerCommon, ListOfflineRegionsOptions, MapStyle, MapboxApi, MapboxCommon, MapboxMarker, MapboxViewBase, OfflineRegion, QueryRenderedFeaturesOptions, QuerySourceFeaturesOptions, SetCenterOptions, SetTiltOptions, SetViewportOptions, SetZoomLevelOptions, ShowOptions, TrackUserOptions, UpdateSourceOptions, UserLocation, UserLocationCameraMode, Viewport } from './common';
|
|
7
|
+
import { AddExtrusionOptions, AddGeoJsonClusteredOptions, AddPolygonOptions, AddPolylineOptions, AddSourceOptions, AnimateCameraOptions, DeleteOfflineRegionOptions, DownloadOfflineRegionOptions, Feature, LatLng, LayerCommon, ListOfflineRegionsOptions, MapStyle, MapboxApi, MapboxCommon, MapboxMarker, MapboxViewBase, OfflineRegion, QueryRenderedFeaturesOptions, QuerySourceFeaturesOptions, SetCenterOptions, SetTiltOptions, SetViewportOptions, SetZoomLevelOptions, ShowOptions, ShowResult, TrackUserOptions, UpdateSourceOptions, UserLocation, UserLocationCameraMode, Viewport, telemetryProperty } from './common';
|
|
8
|
+
import { AndroidMarker } from './markers/Marker.android';
|
|
8
9
|
export * from './common';
|
|
9
10
|
export declare function setLogLevel(level: 'none' | 'info' | 'debug' | 'error' | 'fault' | 'verbose'): void;
|
|
10
11
|
/**
|
|
@@ -23,7 +24,9 @@ export declare function setLogLevel(level: 'none' | 'info' | 'debug' | 'error' |
|
|
|
23
24
|
* @see MapboxViewBase
|
|
24
25
|
*/
|
|
25
26
|
export declare class MapboxView extends MapboxViewBase {
|
|
27
|
+
[telemetryProperty.setNative]: (value: boolean) => void;
|
|
26
28
|
private nativeMapView;
|
|
29
|
+
mapbox: Mapbox;
|
|
27
30
|
private settings;
|
|
28
31
|
private initialized;
|
|
29
32
|
constructor();
|
|
@@ -40,7 +43,7 @@ export declare class MapboxView extends MapboxViewBase {
|
|
|
40
43
|
*
|
|
41
44
|
* @see Mapbox
|
|
42
45
|
*/
|
|
43
|
-
getMapboxApi():
|
|
46
|
+
getMapboxApi(): Mapbox;
|
|
44
47
|
/**
|
|
45
48
|
* Creates the native view.
|
|
46
49
|
*
|
|
@@ -60,7 +63,7 @@ export declare class MapboxView extends MapboxViewBase {
|
|
|
60
63
|
*
|
|
61
64
|
* @todo check this.
|
|
62
65
|
*/
|
|
63
|
-
createNativeView():
|
|
66
|
+
createNativeView(): object;
|
|
64
67
|
onLoaded(): void;
|
|
65
68
|
initNativeView(): void;
|
|
66
69
|
/**
|
|
@@ -85,7 +88,7 @@ export declare class MapboxView extends MapboxViewBase {
|
|
|
85
88
|
*
|
|
86
89
|
* @todo FIXME: this.nativeMapView is unused and never actually set to anything.
|
|
87
90
|
*/
|
|
88
|
-
|
|
91
|
+
initMap(): Promise<void>;
|
|
89
92
|
}
|
|
90
93
|
/**
|
|
91
94
|
* A NativeScript shim for the Mapbox API.
|
|
@@ -100,35 +103,33 @@ export declare class MapboxView extends MapboxViewBase {
|
|
|
100
103
|
export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
101
104
|
private _mapboxMapInstance;
|
|
102
105
|
private _mapboxViewInstance;
|
|
103
|
-
private _locationComponent;
|
|
104
106
|
private _accessToken;
|
|
105
|
-
private circleManager;
|
|
106
107
|
private lineManager;
|
|
107
|
-
private
|
|
108
|
+
private polygonManager;
|
|
108
109
|
private _offlineManager;
|
|
109
|
-
private
|
|
110
|
-
private
|
|
111
|
-
private
|
|
112
|
-
private onDidFinishLoadingStyleListener;
|
|
110
|
+
private _tileStore;
|
|
111
|
+
private markerManager;
|
|
112
|
+
private customMarker;
|
|
113
113
|
private onAnnotationClickListener;
|
|
114
|
-
private onMarkerClickListener;
|
|
115
|
-
private onInfoWindowClickListener;
|
|
116
114
|
private onMapClickListener;
|
|
117
115
|
private onMapLongClickListener;
|
|
118
|
-
private
|
|
116
|
+
private onMoveEndListener;
|
|
117
|
+
private onMoveBeginListener;
|
|
119
118
|
private onScrollListener;
|
|
120
119
|
private onFlingListener;
|
|
121
120
|
private onCameraMoveListener;
|
|
122
121
|
private onCameraMoveCancelListener;
|
|
123
|
-
private
|
|
124
|
-
|
|
125
|
-
|
|
122
|
+
private onMapIdleListener;
|
|
123
|
+
onIndicatorPositionChangedListener: com.mapbox.maps.plugin.locationcomponent.OnIndicatorPositionChangedListener;
|
|
124
|
+
lastKnownLocation: com.mapbox.geojson.Point;
|
|
126
125
|
private _markers;
|
|
127
126
|
private _polylines;
|
|
128
127
|
private _polygons;
|
|
129
128
|
private lines;
|
|
130
129
|
private eventCallbacks;
|
|
131
|
-
_markerIconDownloadCache:
|
|
130
|
+
_markerIconDownloadCache: {
|
|
131
|
+
[k: string]: ImageSource;
|
|
132
|
+
};
|
|
132
133
|
constructor(view: any);
|
|
133
134
|
/**
|
|
134
135
|
* not used
|
|
@@ -153,7 +154,7 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
153
154
|
*
|
|
154
155
|
* @todo FIXME: the timeout delay before showing the map works around some race condition. The source error needs to be figured out.
|
|
155
156
|
*/
|
|
156
|
-
show(options: ShowOptions): Promise<
|
|
157
|
+
show(options: ShowOptions): Promise<ShowResult>;
|
|
157
158
|
/**
|
|
158
159
|
* hide the map
|
|
159
160
|
*/
|
|
@@ -164,6 +165,7 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
164
165
|
*
|
|
165
166
|
* Destroy the map instance.
|
|
166
167
|
*/
|
|
168
|
+
clear(nativeMap?: any): void;
|
|
167
169
|
destroy(nativeMap?: any): Promise<void>;
|
|
168
170
|
/**
|
|
169
171
|
* Clear Event Listeners
|
|
@@ -175,10 +177,7 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
175
177
|
*/
|
|
176
178
|
private clearEventListeners;
|
|
177
179
|
onStart(nativeMap?: any): Promise<void>;
|
|
178
|
-
onResume(nativeMapViewInstance?: any): Promise<void>;
|
|
179
|
-
onPause(nativeMapViewInstance?: any): Promise<void>;
|
|
180
180
|
onStop(nativeMap?: any): Promise<void>;
|
|
181
|
-
onLowMemory(nativeMap?: any): Promise<void>;
|
|
182
181
|
onDestroy(nativeMap?: any): Promise<void>;
|
|
183
182
|
/**
|
|
184
183
|
* event handler shim
|
|
@@ -224,13 +223,6 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
224
223
|
* an invoke any registered callbacks.
|
|
225
224
|
*/
|
|
226
225
|
private handleLineClickEvent;
|
|
227
|
-
hasFineLocationPermission(): Promise<boolean>;
|
|
228
|
-
/**
|
|
229
|
-
* Request fine locaion permission
|
|
230
|
-
*
|
|
231
|
-
* @link https://docs.mapbox.com/android/core/overview/#permissionsmanager
|
|
232
|
-
*/
|
|
233
|
-
requestFineLocationPermission(): Promise<import("@nativescript-community/perms").Result>;
|
|
234
226
|
/**
|
|
235
227
|
* set the map style
|
|
236
228
|
*
|
|
@@ -240,28 +232,33 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
240
232
|
* NOTE: The style must be explicitly set using this method in the onMapReady() handler.
|
|
241
233
|
*
|
|
242
234
|
* @param {string | MapStyle } style - a style following the Mapbox style specification or a URL to a style.
|
|
243
|
-
* @param {any} nativeMapViewInstance - native map view (com.mapbox.
|
|
235
|
+
* @param {any} nativeMapViewInstance - native map view (com.mapbox.maps.MapView)
|
|
244
236
|
*
|
|
245
237
|
* @see MapboxViewCommonBase:setMapStyle()
|
|
246
238
|
*
|
|
247
239
|
* @link https://docs.mapbox.com/android/api/map-sdk/7.1.2/com/mapbox/mapboxsdk/maps/Style.Builder.html
|
|
248
|
-
* @link https://docs.mapbox.com/android/api/map-sdk/7.1.2/com/mapbox/mapboxsdk/maps/MapboxMap.html#setStyle-java.lang.String-com.mapbox.
|
|
240
|
+
* @link https://docs.mapbox.com/android/api/map-sdk/7.1.2/com/mapbox/mapboxsdk/maps/MapboxMap.html#setStyle-java.lang.String-com.mapbox.maps.Style.OnStyleLoaded-
|
|
249
241
|
*/
|
|
250
242
|
setMapStyle(style: string | MapStyle, nativeMapViewInstance?: any): Promise<void>;
|
|
251
243
|
getImage(imageId: string, nativeMap?: any): Promise<ImageSource>;
|
|
252
244
|
addImage(imageId: string, imagePath: string, nativeMap?: any): Promise<void>;
|
|
253
245
|
removeImage(imageId: string, nativeMap?: any): Promise<void>;
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @deprecated
|
|
249
|
+
* @link https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-annotation
|
|
250
|
+
*/
|
|
254
251
|
addMarkers(markers: MapboxMarker[], nativeMap?: any): Promise<void>;
|
|
255
|
-
removeMarkers(ids?: any, nativeMap?: any): Promise<void>;
|
|
256
|
-
iconCache: {
|
|
257
|
-
[k: string]: com.mapbox.mapboxsdk.annotations.Icon;
|
|
258
|
-
};
|
|
259
252
|
/**
|
|
260
253
|
*
|
|
261
254
|
* @deprecated
|
|
262
255
|
* @link https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-annotation
|
|
263
256
|
*/
|
|
264
|
-
|
|
257
|
+
removeMarkers(ids?: any, nativeMap?: any): Promise<void>;
|
|
258
|
+
iconCache: {
|
|
259
|
+
[k: string]: ImageSource;
|
|
260
|
+
};
|
|
261
|
+
_addMarkers(markers: MapboxMarker[], nativeMap?: any): Promise<void>;
|
|
265
262
|
/**
|
|
266
263
|
*
|
|
267
264
|
* @deprecated
|
|
@@ -297,29 +294,22 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
297
294
|
removePolygons(ids?: any[], nativeMap?: any): Promise<void>;
|
|
298
295
|
removePolylines(ids?: any[], nativeMap?: any): Promise<void>;
|
|
299
296
|
animateCamera(options: AnimateCameraOptions, nativeMap?: any): Promise<void>;
|
|
300
|
-
|
|
301
|
-
* set an on map click listener.
|
|
302
|
-
*
|
|
303
|
-
* The new Mapbox Native SDK allows for multiple listeners on an event and follows the standard
|
|
304
|
-
* pattern of returning 'true' when a handler has handled the event and others shouldn't.
|
|
305
|
-
*
|
|
306
|
-
* Not returning a boolean from the listener function will cause a crash.
|
|
307
|
-
*/
|
|
308
|
-
setOnMapClickListener(listener: (data: LatLng) => boolean, nativeMap?: MapboxView): Promise<void>;
|
|
297
|
+
setOnMapClickListener(listener: (data: LatLng) => boolean, nativeMap?: any): Promise<void>;
|
|
309
298
|
setOnMapLongClickListener(listener: (data: LatLng) => boolean, nativeMap?: any): Promise<void>;
|
|
310
299
|
setOnMoveBeginListener(listener: (data?: LatLng) => void, nativeMap?: any): Promise<void>;
|
|
311
300
|
setOnMoveEndListener(listener: (data?: LatLng) => void, nativeMap?: any): Promise<void>;
|
|
312
301
|
setOnScrollListener(listener: (data?: LatLng) => void, nativeMap?: any): Promise<void>;
|
|
313
302
|
setOnFlingListener(listener: () => void, nativeMap?: any): Promise<void>;
|
|
314
|
-
|
|
303
|
+
setOnCameraChangeListener(listener: (reason: any, animated?: any) => void, nativeMap?: any): Promise<void>;
|
|
315
304
|
setOnCameraMoveCancelListener(listener: () => void, nativeMap?: any): Promise<void>;
|
|
316
|
-
|
|
305
|
+
setOnMapIdleListener(listener: () => void, nativeMap?: any): Promise<void>;
|
|
317
306
|
getViewport(nativeMap?: any): Promise<Viewport>;
|
|
318
307
|
setViewport(options: SetViewportOptions, nativeMap?: any): Promise<void>;
|
|
319
308
|
downloadOfflineRegion(options: DownloadOfflineRegionOptions): Promise<any>;
|
|
320
309
|
listOfflineRegions(options?: ListOfflineRegionsOptions): Promise<OfflineRegion[]>;
|
|
321
310
|
deleteOfflineRegion(options: DeleteOfflineRegionOptions): Promise<void>;
|
|
322
|
-
_getOfflineManager():
|
|
311
|
+
_getOfflineManager(): com.mapbox.maps.OfflineManager;
|
|
312
|
+
_getTileStore(): com.mapbox.common.TileStore;
|
|
323
313
|
addExtrusion(options: AddExtrusionOptions, nativeMap?: any): Promise<void>;
|
|
324
314
|
/**
|
|
325
315
|
* update a geojson source
|
|
@@ -334,7 +324,7 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
334
324
|
*
|
|
335
325
|
* @link https://docs.mapbox.com/mapbox-gl-js/api/#map#addsource
|
|
336
326
|
*/
|
|
337
|
-
addSource(id: string, options: AddSourceOptions, nativeMap?:
|
|
327
|
+
addSource(id: string, options: AddSourceOptions, nativeMap?: com.mapbox.maps.MapboxMap): Promise<void>;
|
|
338
328
|
/**
|
|
339
329
|
* remove source by id
|
|
340
330
|
*/
|
|
@@ -353,11 +343,11 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
353
343
|
* - only a subset of paint properties are available.
|
|
354
344
|
*
|
|
355
345
|
* @param {object} style - a style following the Mapbox style specification.
|
|
356
|
-
* @param {any} nativeMapView - native map view (com.mapbox.
|
|
346
|
+
* @param {any} nativeMapView - native map view (com.mapbox.maps.MapView)
|
|
357
347
|
*
|
|
358
348
|
* @link https://docs.mapbox.com/mapbox-gl-js/style-spec/#layers
|
|
359
349
|
*/
|
|
360
|
-
addLayer(style: any, belowLayerId?: string, nativeMap?:
|
|
350
|
+
addLayer(style: any, belowLayerId?: string, nativeMap?: com.mapbox.maps.MapboxMap): Promise<void>;
|
|
361
351
|
/**
|
|
362
352
|
* remove layer by ID
|
|
363
353
|
*
|
|
@@ -366,6 +356,7 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
366
356
|
* @param {string} id
|
|
367
357
|
*/
|
|
368
358
|
removeLayer(id: string, nativeMap?: any): Promise<void>;
|
|
359
|
+
private getSource;
|
|
369
360
|
/**
|
|
370
361
|
* @deprecated
|
|
371
362
|
* Add a point to a line
|
|
@@ -394,22 +385,21 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
394
385
|
* @link https://github.com/mapbox/mapbox-gl-native/blob/master/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java
|
|
395
386
|
* @link https://docs.mapbox.com/android/api/map-sdk/7.1.2/com/mapbox/mapboxsdk/maps/MapboxMapOptions.html
|
|
396
387
|
*/
|
|
397
|
-
_getMapboxMapOptions(settings: ShowOptions): com.mapbox.
|
|
388
|
+
_getMapboxMapOptions(context: android.content.Context, settings: ShowOptions): com.mapbox.maps.MapInitOptions;
|
|
398
389
|
private static mapPositionToGravity;
|
|
399
390
|
/**
|
|
400
391
|
* convert string to camera mode constant.
|
|
401
392
|
*
|
|
402
393
|
* @link https://docs.mapbox.com/android/api/map-sdk/8.1.0/com/mapbox/mapboxsdk/location/modes/CameraMode.html
|
|
403
394
|
*/
|
|
404
|
-
_stringToCameraMode(mode: UserLocationCameraMode): any;
|
|
405
|
-
/**
|
|
406
|
-
* convert string to render mode
|
|
407
|
-
*/
|
|
408
|
-
_stringToRenderMode(mode: any): any;
|
|
409
|
-
_convertCameraMode(mode: any): UserLocationCameraMode;
|
|
410
395
|
_fineLocationPermissionGranted(): boolean;
|
|
411
|
-
_getRegionName(offlineRegion: com.mapbox.
|
|
412
|
-
_getRegionMetadata(offlineRegion: com.mapbox.
|
|
396
|
+
_getRegionName(offlineRegion: com.mapbox.common.TileRegion): Promise<any>;
|
|
397
|
+
_getRegionMetadata(offlineRegion: com.mapbox.common.TileRegion): Promise<Record<string, any>>;
|
|
398
|
+
_plugins: {
|
|
399
|
+
[k: string]: com.mapbox.maps.plugin.MapPlugin;
|
|
400
|
+
};
|
|
401
|
+
_getPlugin<T extends com.mapbox.maps.plugin.MapPlugin>(pluginId: string): T;
|
|
402
|
+
_getGesturesPlugin(): com.mapbox.maps.plugin.gestures.GesturesPlugin;
|
|
413
403
|
/**
|
|
414
404
|
* show a user location marker
|
|
415
405
|
*
|
|
@@ -437,7 +427,11 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
437
427
|
*
|
|
438
428
|
* @todo at least with simulated data, the location is only updated once hence adding support for forceLocation method.
|
|
439
429
|
*/
|
|
440
|
-
showUserLocationMarker(options:
|
|
430
|
+
showUserLocationMarker(options: TrackUserOptions & {
|
|
431
|
+
accuracyColor: any;
|
|
432
|
+
accuracyRingColor: any;
|
|
433
|
+
pulsingColor: any;
|
|
434
|
+
}, nativeMap?: any): Promise<void>;
|
|
441
435
|
/**
|
|
442
436
|
* hide (destroy) the user location marker
|
|
443
437
|
*
|
|
@@ -453,7 +447,7 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
453
447
|
* The marker must be configured using showUserLocationMarker before this method
|
|
454
448
|
* can called.
|
|
455
449
|
*/
|
|
456
|
-
changeUserLocationMarkerMode(
|
|
450
|
+
changeUserLocationMarkerMode(renderMode: any, cameraMode: UserLocationCameraMode, nativeMap?: any): Promise<void>;
|
|
457
451
|
/**
|
|
458
452
|
* force updating of user location
|
|
459
453
|
*
|
|
@@ -464,9 +458,9 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
464
458
|
forceUserLocationUpdate(location: any, nativeMap?: any): Promise<void>;
|
|
465
459
|
getLayer(name: string, nativeMap?: any): Promise<LayerCommon>;
|
|
466
460
|
getLayers(nativeMap?: any): Promise<LayerCommon[]>;
|
|
467
|
-
_getClickedMarkerDetails(clicked:
|
|
468
|
-
_downloadImage(marker:
|
|
469
|
-
_downloadMarkerImages(markers:
|
|
461
|
+
_getClickedMarkerDetails(clicked: AndroidMarker): MapboxMarker;
|
|
462
|
+
_downloadImage(marker: MapboxMarker): Promise<MapboxMarker>;
|
|
463
|
+
_downloadMarkerImages(markers: MapboxMarker[]): Promise<MapboxMarker[]>;
|
|
470
464
|
project(data: LatLng): {
|
|
471
465
|
x: number;
|
|
472
466
|
y: number;
|
|
@@ -475,5 +469,4 @@ export declare class Mapbox extends MapboxCommon implements MapboxApi {
|
|
|
475
469
|
x: number;
|
|
476
470
|
y: number;
|
|
477
471
|
}): LatLng;
|
|
478
|
-
getUserLocationCameraMode(nativeMap?: any): UserLocationCameraMode;
|
|
479
472
|
}
|