@mapvina-com/mapvina-react-native 1.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/LICENSE.md +9 -0
- package/MapVinaReactNative.podspec +96 -0
- package/README.md +47 -0
- package/android/build.gradle +139 -0
- package/android/gradle.properties +16 -0
- package/android/src/main/AndroidManifest.xml +5 -0
- package/android/src/main/java/io/github/mapvina/reactnative/MLRNPackage.kt +163 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/AbstractEvent.kt +20 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/AbstractEventEmitter.kt +80 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/AbstractMapFeature.kt +13 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/callout/MLRNCallout.kt +8 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/callout/MLRNCalloutManager.kt +26 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/markerview/MLRNMarkerView.kt +245 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/markerview/MLRNMarkerViewContent.kt +46 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/markerview/MLRNMarkerViewManager.kt +104 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/markerview/MarkerViewManager.kt +143 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/pointannotation/MLRNPointAnnotation.kt +449 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/annotations/pointannotation/MLRNPointAnnotationManager.kt +133 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/camera/CameraStop.kt +223 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/camera/CameraUpdateItem.kt +100 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/camera/CameraUpdateQueue.kt +58 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/camera/MLRNCamera.kt +411 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/camera/MLRNCameraManager.kt +84 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/camera/MLRNCameraModule.kt +36 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/camera/constants/CameraEasing.kt +23 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/images/MLRNImages.kt +172 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/images/MLRNImagesManager.kt +73 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/layer/MLRNLayer.kt +370 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/layer/MLRNLayerManager.kt +105 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/layer/style/MLRNStyle.kt +60 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/layer/style/MLRNStyleFactory.kt +3057 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/layer/style/MLRNStyleValue.kt +159 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/location/LocationComponentManager.kt +174 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/location/MLRNNativeUserLocation.kt +75 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/location/MLRNNativeUserLocationManager.kt +50 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/mapview/MLRNAndroidTextureMapView.kt +25 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.kt +25 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/mapview/MLRNMapView.kt +1514 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/mapview/MLRNMapViewManager.kt +280 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/mapview/MLRNMapViewModule.kt +202 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/mapview/helpers/CameraChangeTracker.kt +26 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/mapview/helpers/LayerSourceInfo.kt +76 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/MLRNPressableSource.kt +61 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/MLRNSource.kt +198 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/MLRNSourceManager.kt +69 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/geojsonsource/ClusterPropertyEntry.kt +8 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/geojsonsource/MLRNGeoJSONSource.kt +212 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/geojsonsource/MLRNGeoJSONSourceManager.kt +159 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/geojsonsource/MLRNGeoJSONSourceModule.kt +74 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/imagesource/MLRNImageSource.kt +58 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/imagesource/MLRNImageSourceManager.kt +38 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/MLRNPressableTileSource.kt +20 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/MLRNTileSource.kt +20 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/MLRNTileSourceManager.kt +66 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/TileSourceInterface.kt +50 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/rasterdemsource/MLRNRasterDEMSource.kt +28 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/rasterdemsource/MLRNRasterDEMSourceManager.kt +34 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/rastersource/MLRNRasterSource.kt +23 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/rastersource/MLRNRasterSourceManager.kt +26 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/vectorsource/MLRNVectorSource.kt +37 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/vectorsource/MLRNVectorSourceManager.kt +17 -0
- package/android/src/main/java/io/github/mapvina/reactnative/components/sources/tilesources/vectorsource/MLRNVectorSourceModule.kt +44 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/AbstractEvent.java +59 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/EventEmitter.java +45 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/IEvent.java +14 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/MapChangeEvent.kt +16 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/MapClickEvent.java +51 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/MapPressEvent.kt +30 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/MapPressEventWithFeatures.kt +21 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/OfflineEvent.java +25 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/PointAnnotationClickEvent.java +40 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/PointAnnotationDragEvent.java +49 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/PointAnnotationEvent.kt +32 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/constants/EventKeys.java +22 -0
- package/android/src/main/java/io/github/mapvina/reactnative/events/constants/EventTypes.java +27 -0
- package/android/src/main/java/io/github/mapvina/reactnative/location/LocationManager.kt +167 -0
- package/android/src/main/java/io/github/mapvina/reactnative/location/TrackUserLocationMode.kt +39 -0
- package/android/src/main/java/io/github/mapvina/reactnative/location/TrackUserLocationState.kt +15 -0
- package/android/src/main/java/io/github/mapvina/reactnative/location/UserLocation.kt +42 -0
- package/android/src/main/java/io/github/mapvina/reactnative/location/engine/DefaultLocationEngineProvider.kt +18 -0
- package/android/src/main/java/io/github/mapvina/reactnative/location/engine/LocationEngineProvidable.kt +8 -0
- package/android/src/main/java/io/github/mapvina/reactnative/modules/MLRNLocationModule.kt +179 -0
- package/android/src/main/java/io/github/mapvina/reactnative/modules/MLRNLogModule.kt +141 -0
- package/android/src/main/java/io/github/mapvina/reactnative/modules/MLRNNetworkModule.kt +25 -0
- package/android/src/main/java/io/github/mapvina/reactnative/modules/MLRNOfflineModule.kt +661 -0
- package/android/src/main/java/io/github/mapvina/reactnative/modules/MLRNStaticMapModule.kt +121 -0
- package/android/src/main/java/io/github/mapvina/reactnative/modules/MLRNTransformRequestModule.kt +144 -0
- package/android/src/main/java/io/github/mapvina/reactnative/modules/TransformRequestInterceptor.kt +184 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/BitmapUtils.java +125 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/ConvertUtils.kt +225 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/DownloadMapImageTask.java +155 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/DownloadedImage.java +6 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/ExpressionParser.kt +67 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/GeoJSONUtils.kt +368 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/GeoViewport.java +37 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/ImageEntry.kt +14 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/ReactTagResolver.kt +91 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/ResourceUtils.java +26 -0
- package/android/src/main/java/io/github/mapvina/reactnative/utils/SphericalMercator.java +68 -0
- package/android/src/main/location-engine-default/io/github/mapvina/reactnative/location/engine/LocationEngineProvider.kt +8 -0
- package/android/src/main/location-engine-google/io/github/mapvina/reactnative/location/engine/GoogleLocationEngineImpl.kt +142 -0
- package/android/src/main/location-engine-google/io/github/mapvina/reactnative/location/engine/GoogleLocationEngineProvider.kt +29 -0
- package/android/src/main/location-engine-google/io/github/mapvina/reactnative/location/engine/LocationEngineProvider.kt +8 -0
- package/android/src/main/res/drawable/empty.xml +5 -0
- package/android/src/main/res/drawable/empty_drawable.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/default_marker.png +0 -0
- package/app.plugin.js +1 -0
- package/ios/components/ViewManager.h +8 -0
- package/ios/components/ViewManager.m +49 -0
- package/ios/components/annotations/callout/MLRNCallout.h +7 -0
- package/ios/components/annotations/callout/MLRNCallout.m +67 -0
- package/ios/components/annotations/callout/MLRNCalloutComponentView.h +10 -0
- package/ios/components/annotations/callout/MLRNCalloutComponentView.mm +85 -0
- package/ios/components/annotations/point-annotation/MLRNPointAnnotation.h +45 -0
- package/ios/components/annotations/point-annotation/MLRNPointAnnotation.m +319 -0
- package/ios/components/annotations/point-annotation/MLRNPointAnnotationComponentView.h +10 -0
- package/ios/components/annotations/point-annotation/MLRNPointAnnotationComponentView.mm +327 -0
- package/ios/components/camera/CameraEasing.h +8 -0
- package/ios/components/camera/CameraStop.h +22 -0
- package/ios/components/camera/CameraStop.m +75 -0
- package/ios/components/camera/CameraUpdateItem.h +11 -0
- package/ios/components/camera/CameraUpdateItem.m +167 -0
- package/ios/components/camera/CameraUpdateQueue.h +13 -0
- package/ios/components/camera/CameraUpdateQueue.m +62 -0
- package/ios/components/camera/MLRNCamera.h +26 -0
- package/ios/components/camera/MLRNCamera.m +195 -0
- package/ios/components/camera/MLRNCameraComponentView.h +10 -0
- package/ios/components/camera/MLRNCameraComponentView.mm +201 -0
- package/ios/components/camera/MLRNCameraManager.h +11 -0
- package/ios/components/camera/MLRNCameraManager.m +20 -0
- package/ios/components/camera/MLRNCameraModule.h +4 -0
- package/ios/components/camera/MLRNCameraModule.mm +101 -0
- package/ios/components/images/MLRNImageLoader.h +27 -0
- package/ios/components/images/MLRNImageLoader.m +85 -0
- package/ios/components/images/MLRNImageQueue.h +15 -0
- package/ios/components/images/MLRNImageQueue.m +48 -0
- package/ios/components/images/MLRNImageQueueOperation.h +11 -0
- package/ios/components/images/MLRNImageQueueOperation.m +138 -0
- package/ios/components/images/MLRNImages.h +26 -0
- package/ios/components/images/MLRNImages.m +189 -0
- package/ios/components/images/MLRNImagesComponentView.h +9 -0
- package/ios/components/images/MLRNImagesComponentView.mm +104 -0
- package/ios/components/images/MLRNImagesModule.h +6 -0
- package/ios/components/images/MLRNImagesModule.mm +23 -0
- package/ios/components/layer/MLRNLayer.h +54 -0
- package/ios/components/layer/MLRNLayer.m +348 -0
- package/ios/components/layer/MLRNLayerComponentView.h +9 -0
- package/ios/components/layer/MLRNLayerComponentView.mm +136 -0
- package/ios/components/layer/style/MLRNStyle.h +224 -0
- package/ios/components/layer/style/MLRNStyle.m +1627 -0
- package/ios/components/layer/style/MLRNStyleValue.h +20 -0
- package/ios/components/layer/style/MLRNStyleValue.m +172 -0
- package/ios/components/map-view/MLRNMapTouchEvent.h +18 -0
- package/ios/components/map-view/MLRNMapTouchEvent.m +78 -0
- package/ios/components/map-view/MLRNMapView.h +119 -0
- package/ios/components/map-view/MLRNMapView.m +905 -0
- package/ios/components/map-view/MLRNMapViewComponentView.h +13 -0
- package/ios/components/map-view/MLRNMapViewComponentView.mm +430 -0
- package/ios/components/map-view/MLRNMapViewManager.h +70 -0
- package/ios/components/map-view/MLRNMapViewManager.m +152 -0
- package/ios/components/map-view/MLRNMapViewModule.h +4 -0
- package/ios/components/map-view/MLRNMapViewModule.mm +248 -0
- package/ios/components/sources/MLRNSource.h +28 -0
- package/ios/components/sources/MLRNSource.m +129 -0
- package/ios/components/sources/geojson-source/MLRNGeoJSONSource.h +32 -0
- package/ios/components/sources/geojson-source/MLRNGeoJSONSource.m +146 -0
- package/ios/components/sources/geojson-source/MLRNGeoJSONSourceComponentView.h +9 -0
- package/ios/components/sources/geojson-source/MLRNGeoJSONSourceComponentView.mm +168 -0
- package/ios/components/sources/geojson-source/MLRNGeoJSONSourceModule.h +4 -0
- package/ios/components/sources/geojson-source/MLRNGeoJSONSourceModule.mm +136 -0
- package/ios/components/sources/image-source/MLRNImageSource.h +8 -0
- package/ios/components/sources/image-source/MLRNImageSource.m +41 -0
- package/ios/components/sources/image-source/MLRNImageSourceComponentView.h +9 -0
- package/ios/components/sources/image-source/MLRNImageSourceComponentView.mm +95 -0
- package/ios/components/sources/tile-sources/MLRNTileSource.h +18 -0
- package/ios/components/sources/tile-sources/MLRNTileSource.m +26 -0
- package/ios/components/sources/tile-sources/raster-dem-source/MLRNRasterDEMSource.h +10 -0
- package/ios/components/sources/tile-sources/raster-dem-source/MLRNRasterDEMSource.m +39 -0
- package/ios/components/sources/tile-sources/raster-dem-source/MLRNRasterDEMSourceComponentView.h +9 -0
- package/ios/components/sources/tile-sources/raster-dem-source/MLRNRasterDEMSourceComponentView.mm +131 -0
- package/ios/components/sources/tile-sources/raster-source/MLRNRasterSource.h +9 -0
- package/ios/components/sources/tile-sources/raster-source/MLRNRasterSource.m +31 -0
- package/ios/components/sources/tile-sources/raster-source/MLRNRasterSourceComponentView.h +9 -0
- package/ios/components/sources/tile-sources/raster-source/MLRNRasterSourceComponentView.mm +129 -0
- package/ios/components/sources/tile-sources/vector-source/MLRNVectorSource.h +11 -0
- package/ios/components/sources/tile-sources/vector-source/MLRNVectorSource.m +23 -0
- package/ios/components/sources/tile-sources/vector-source/MLRNVectorSourceComponentView.h +9 -0
- package/ios/components/sources/tile-sources/vector-source/MLRNVectorSourceComponentView.mm +162 -0
- package/ios/components/sources/tile-sources/vector-source/MLRNVectorSourceModule.h +4 -0
- package/ios/components/sources/tile-sources/vector-source/MLRNVectorSourceModule.mm +65 -0
- package/ios/components/user-location/MLRNNativeUserLocation.h +11 -0
- package/ios/components/user-location/MLRNNativeUserLocation.m +38 -0
- package/ios/components/user-location/MLRNNativeUserLocationComponentView.h +10 -0
- package/ios/components/user-location/MLRNNativeUserLocationComponentView.mm +51 -0
- package/ios/components/user-location/MLRNUserLocation.h +15 -0
- package/ios/components/user-location/MLRNUserLocation.m +36 -0
- package/ios/modules/location/MLRNLocation.h +10 -0
- package/ios/modules/location/MLRNLocation.m +26 -0
- package/ios/modules/location/MLRNLocationManager.h +20 -0
- package/ios/modules/location/MLRNLocationManager.m +167 -0
- package/ios/modules/location/MLRNLocationManagerDelegate.h +10 -0
- package/ios/modules/location/MLRNLocationModule.h +7 -0
- package/ios/modules/location/MLRNLocationModule.mm +67 -0
- package/ios/modules/logging/MLRNLogModule.h +10 -0
- package/ios/modules/logging/MLRNLogModule.mm +39 -0
- package/ios/modules/logging/MLRNLogging.h +27 -0
- package/ios/modules/logging/MLRNLogging.m +102 -0
- package/ios/modules/network/MLRNNetworkModule.h +8 -0
- package/ios/modules/network/MLRNNetworkModule.mm +18 -0
- package/ios/modules/offline/MLRNOfflineModule.h +7 -0
- package/ios/modules/offline/MLRNOfflineModule.mm +692 -0
- package/ios/modules/static-map/MLRNStaticMapModule.h +4 -0
- package/ios/modules/static-map/MLRNStaticMapModule.mm +84 -0
- package/ios/modules/transform-request/MLRNTransformRequest.h +38 -0
- package/ios/modules/transform-request/MLRNTransformRequest.m +413 -0
- package/ios/modules/transform-request/MLRNTransformRequestModule.h +9 -0
- package/ios/modules/transform-request/MLRNTransformRequestModule.mm +72 -0
- package/ios/utils/FilterParser.h +7 -0
- package/ios/utils/FilterParser.m +13 -0
- package/ios/utils/MLRNEvent.h +13 -0
- package/ios/utils/MLRNEvent.m +36 -0
- package/ios/utils/MLRNEventProtocol.h +8 -0
- package/ios/utils/MLRNEventTypes.h +12 -0
- package/ios/utils/MLRNEventTypes.m +12 -0
- package/ios/utils/MLRNFollyConvert.h +5 -0
- package/ios/utils/MLRNImageUtils.h +9 -0
- package/ios/utils/MLRNImageUtils.m +24 -0
- package/ios/utils/MLRNPropConvert.h +17 -0
- package/ios/utils/MLRNUtils.h +32 -0
- package/ios/utils/MLRNUtils.m +193 -0
- package/ios/utils/MLRNViewModuleUtils.h +35 -0
- package/ios/utils/MLRNViewModuleUtils.m +39 -0
- package/lib/commonjs/assets/heading.png +0 -0
- package/lib/commonjs/assets/heading@2x.png +0 -0
- package/lib/commonjs/assets/heading@3x.png +0 -0
- package/lib/commonjs/assets/png.d.js +2 -0
- package/lib/commonjs/assets/png.d.js.map +1 -0
- package/lib/commonjs/components/annotations/LayerAnnotation.js +59 -0
- package/lib/commonjs/components/annotations/LayerAnnotation.js.map +1 -0
- package/lib/commonjs/components/annotations/callout/Callout.js +95 -0
- package/lib/commonjs/components/annotations/callout/Callout.js.map +1 -0
- package/lib/commonjs/components/annotations/callout/CalloutNativeComponent.ts +11 -0
- package/lib/commonjs/components/annotations/marker/Marker.js +88 -0
- package/lib/commonjs/components/annotations/marker/Marker.js.map +1 -0
- package/lib/commonjs/components/annotations/marker/MarkerViewNativeComponent.ts +40 -0
- package/lib/commonjs/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +59 -0
- package/lib/commonjs/components/annotations/view-annotation/ViewAnnotation.js +93 -0
- package/lib/commonjs/components/annotations/view-annotation/ViewAnnotation.js.map +1 -0
- package/lib/commonjs/components/camera/Camera.js +146 -0
- package/lib/commonjs/components/camera/Camera.js.map +1 -0
- package/lib/commonjs/components/camera/CameraNativeComponent.ts +65 -0
- package/lib/commonjs/components/camera/NativeCameraModule.js +11 -0
- package/lib/commonjs/components/camera/NativeCameraModule.js.map +1 -0
- package/lib/commonjs/components/images/Images.js +58 -0
- package/lib/commonjs/components/images/Images.js.map +1 -0
- package/lib/commonjs/components/images/ImagesNativeComponent.ts +27 -0
- package/lib/commonjs/components/images/NativeImagesModule.js +10 -0
- package/lib/commonjs/components/images/NativeImagesModule.js.map +1 -0
- package/lib/commonjs/components/layer/Layer.js +157 -0
- package/lib/commonjs/components/layer/Layer.js.map +1 -0
- package/lib/commonjs/components/layer/LayerNativeComponent.ts +43 -0
- package/lib/commonjs/components/map/AndroidTextureMapViewNativeComponent.ts +109 -0
- package/lib/commonjs/components/map/Map.js +117 -0
- package/lib/commonjs/components/map/Map.js.map +1 -0
- package/lib/commonjs/components/map/MapViewNativeComponent.ts +105 -0
- package/lib/commonjs/components/map/NativeMapViewModule.js +9 -0
- package/lib/commonjs/components/map/NativeMapViewModule.js.map +1 -0
- package/lib/commonjs/components/sources/geojson-source/GeoJSONSource.js +56 -0
- package/lib/commonjs/components/sources/geojson-source/GeoJSONSource.js.map +1 -0
- package/lib/commonjs/components/sources/geojson-source/GeoJSONSourceNativeComponent.ts +48 -0
- package/lib/commonjs/components/sources/geojson-source/NativeGeoJSONSourceModule.js +9 -0
- package/lib/commonjs/components/sources/geojson-source/NativeGeoJSONSourceModule.js.map +1 -0
- package/lib/commonjs/components/sources/image-source/ImageSource.js +33 -0
- package/lib/commonjs/components/sources/image-source/ImageSource.js.map +1 -0
- package/lib/commonjs/components/sources/image-source/ImageSourceNativeComponent.ts +31 -0
- package/lib/commonjs/components/sources/raster-dem-source/RasterDEMSource.js +31 -0
- package/lib/commonjs/components/sources/raster-dem-source/RasterDEMSource.js.map +1 -0
- package/lib/commonjs/components/sources/raster-dem-source/RasterDEMSourceNativeComponent.ts +25 -0
- package/lib/commonjs/components/sources/raster-source/RasterSource.js +32 -0
- package/lib/commonjs/components/sources/raster-source/RasterSource.js.map +1 -0
- package/lib/commonjs/components/sources/raster-source/RasterSourceNativeComponent.ts +25 -0
- package/lib/commonjs/components/sources/vector-source/NativeVectorSourceModule.js +9 -0
- package/lib/commonjs/components/sources/vector-source/NativeVectorSourceModule.js.map +1 -0
- package/lib/commonjs/components/sources/vector-source/VectorSource.js +47 -0
- package/lib/commonjs/components/sources/vector-source/VectorSource.js.map +1 -0
- package/lib/commonjs/components/sources/vector-source/VectorSourceNativeComponent.ts +45 -0
- package/lib/commonjs/components/user-location/NativeUserLocation.js +16 -0
- package/lib/commonjs/components/user-location/NativeUserLocation.js.map +1 -0
- package/lib/commonjs/components/user-location/UserLocation.js +52 -0
- package/lib/commonjs/components/user-location/UserLocation.js.map +1 -0
- package/lib/commonjs/components/user-location/UserLocationNativeComponent.ts +19 -0
- package/lib/commonjs/components/user-location/UserLocationPuck.js +63 -0
- package/lib/commonjs/components/user-location/UserLocationPuck.js.map +1 -0
- package/lib/commonjs/components/user-location/UserLocationPuckHeading.js +31 -0
- package/lib/commonjs/components/user-location/UserLocationPuckHeading.js.map +1 -0
- package/lib/commonjs/hooks/useCurrentPosition.js +34 -0
- package/lib/commonjs/hooks/useCurrentPosition.js.map +1 -0
- package/lib/commonjs/hooks/useFrozenId.js +16 -0
- package/lib/commonjs/hooks/useFrozenId.js.map +1 -0
- package/lib/commonjs/hooks/useNativeBridge.js +84 -0
- package/lib/commonjs/hooks/useNativeBridge.js.map +1 -0
- package/lib/commonjs/index.js +174 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/modules/location/LocationManager.js +98 -0
- package/lib/commonjs/modules/location/LocationManager.js.map +1 -0
- package/lib/commonjs/modules/location/NativeLocationModule.js +9 -0
- package/lib/commonjs/modules/location/NativeLocationModule.js.map +1 -0
- package/lib/commonjs/modules/log/LogManager.js +100 -0
- package/lib/commonjs/modules/log/LogManager.js.map +1 -0
- package/lib/commonjs/modules/log/NativeLogModule.js +9 -0
- package/lib/commonjs/modules/log/NativeLogModule.js.map +1 -0
- package/lib/commonjs/modules/network/NativeNetworkModule.js +9 -0
- package/lib/commonjs/modules/network/NativeNetworkModule.js.map +1 -0
- package/lib/commonjs/modules/network/NetworkManager.js +34 -0
- package/lib/commonjs/modules/network/NetworkManager.js.map +1 -0
- package/lib/commonjs/modules/offline/NativeOfflineModule.js +9 -0
- package/lib/commonjs/modules/offline/NativeOfflineModule.js.map +1 -0
- package/lib/commonjs/modules/offline/OfflineManager.js +351 -0
- package/lib/commonjs/modules/offline/OfflineManager.js.map +1 -0
- package/lib/commonjs/modules/offline/OfflinePack.js +30 -0
- package/lib/commonjs/modules/offline/OfflinePack.js.map +1 -0
- package/lib/commonjs/modules/static-map/NativeStaticMapModule.js +9 -0
- package/lib/commonjs/modules/static-map/NativeStaticMapModule.js.map +1 -0
- package/lib/commonjs/modules/static-map/StaticMapManager.js +57 -0
- package/lib/commonjs/modules/static-map/StaticMapManager.js.map +1 -0
- package/lib/commonjs/modules/transform-request/NativeTransformRequestModule.js +9 -0
- package/lib/commonjs/modules/transform-request/NativeTransformRequestModule.js.map +1 -0
- package/lib/commonjs/modules/transform-request/TransformRequestManager.js +233 -0
- package/lib/commonjs/modules/transform-request/TransformRequestManager.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/plugin/MapVinaPluginProps.js +2 -0
- package/lib/commonjs/plugin/MapVinaPluginProps.js.map +1 -0
- package/lib/commonjs/plugin/android.js +39 -0
- package/lib/commonjs/plugin/android.js.map +1 -0
- package/lib/commonjs/plugin/ios.js +91 -0
- package/lib/commonjs/plugin/ios.js.map +1 -0
- package/lib/commonjs/types/Anchor.js +67 -0
- package/lib/commonjs/types/Anchor.js.map +1 -0
- package/lib/commonjs/types/BaseProps.js +2 -0
- package/lib/commonjs/types/BaseProps.js.map +1 -0
- package/lib/commonjs/types/LngLat.js +2 -0
- package/lib/commonjs/types/LngLat.js.map +1 -0
- package/lib/commonjs/types/LngLatBounds.js +2 -0
- package/lib/commonjs/types/LngLatBounds.js.map +1 -0
- package/lib/commonjs/types/MapVinaRNStyles.js +6 -0
- package/lib/commonjs/types/MapVinaRNStyles.js.map +1 -0
- package/lib/commonjs/types/PixelPoint.js +2 -0
- package/lib/commonjs/types/PixelPoint.js.map +1 -0
- package/lib/commonjs/types/PixelPointBounds.js +2 -0
- package/lib/commonjs/types/PixelPointBounds.js.map +1 -0
- package/lib/commonjs/types/PressEvent.js +6 -0
- package/lib/commonjs/types/PressEvent.js.map +1 -0
- package/lib/commonjs/types/PressEventWithFeatures.js +6 -0
- package/lib/commonjs/types/PressEventWithFeatures.js.map +1 -0
- package/lib/commonjs/types/PressableSourceProps.js +6 -0
- package/lib/commonjs/types/PressableSourceProps.js.map +1 -0
- package/lib/commonjs/types/ViewPadding.js +2 -0
- package/lib/commonjs/types/ViewPadding.js.map +1 -0
- package/lib/commonjs/types/codegen/UnsafeMixed.js +2 -0
- package/lib/commonjs/types/codegen/UnsafeMixed.js.map +1 -0
- package/lib/commonjs/utils/BridgeValue.js +59 -0
- package/lib/commonjs/utils/BridgeValue.js.map +1 -0
- package/lib/commonjs/utils/StyleValue.js +38 -0
- package/lib/commonjs/utils/StyleValue.js.map +1 -0
- package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js +96 -0
- package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
- package/lib/commonjs/utils/animated/Animated.js +30 -0
- package/lib/commonjs/utils/animated/Animated.js.map +1 -0
- package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js +91 -0
- package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
- package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js +32 -0
- package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
- package/lib/commonjs/utils/animated/AnimatedGeoJSON.js +67 -0
- package/lib/commonjs/utils/animated/AnimatedGeoJSON.js.map +1 -0
- package/lib/commonjs/utils/animated/AnimatedPoint.js +114 -0
- package/lib/commonjs/utils/animated/AnimatedPoint.js.map +1 -0
- package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +120 -0
- package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
- package/lib/commonjs/utils/convertStyleSpec.js +58 -0
- package/lib/commonjs/utils/convertStyleSpec.js.map +1 -0
- package/lib/commonjs/utils/findNodeHandle.js +16 -0
- package/lib/commonjs/utils/findNodeHandle.js.map +1 -0
- package/lib/commonjs/utils/getNativeFilter.js +16 -0
- package/lib/commonjs/utils/getNativeFilter.js.map +1 -0
- package/lib/commonjs/utils/getStylePropertyType.js +255 -0
- package/lib/commonjs/utils/getStylePropertyType.js.map +1 -0
- package/lib/commonjs/utils/index.js +68 -0
- package/lib/commonjs/utils/index.js.map +1 -0
- package/lib/module/assets/heading.png +0 -0
- package/lib/module/assets/heading@2x.png +0 -0
- package/lib/module/assets/heading@3x.png +0 -0
- package/lib/module/assets/png.d.js +2 -0
- package/lib/module/assets/png.d.js.map +1 -0
- package/lib/module/components/annotations/LayerAnnotation.js +54 -0
- package/lib/module/components/annotations/LayerAnnotation.js.map +1 -0
- package/lib/module/components/annotations/callout/Callout.js +89 -0
- package/lib/module/components/annotations/callout/Callout.js.map +1 -0
- package/lib/module/components/annotations/callout/CalloutNativeComponent.ts +11 -0
- package/lib/module/components/annotations/marker/Marker.js +82 -0
- package/lib/module/components/annotations/marker/Marker.js.map +1 -0
- package/lib/module/components/annotations/marker/MarkerViewNativeComponent.ts +40 -0
- package/lib/module/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +59 -0
- package/lib/module/components/annotations/view-annotation/ViewAnnotation.js +87 -0
- package/lib/module/components/annotations/view-annotation/ViewAnnotation.js.map +1 -0
- package/lib/module/components/camera/Camera.js +141 -0
- package/lib/module/components/camera/Camera.js.map +1 -0
- package/lib/module/components/camera/CameraNativeComponent.ts +65 -0
- package/lib/module/components/camera/NativeCameraModule.js +10 -0
- package/lib/module/components/camera/NativeCameraModule.js.map +1 -0
- package/lib/module/components/images/Images.js +52 -0
- package/lib/module/components/images/Images.js.map +1 -0
- package/lib/module/components/images/ImagesNativeComponent.ts +27 -0
- package/lib/module/components/images/NativeImagesModule.js +7 -0
- package/lib/module/components/images/NativeImagesModule.js.map +1 -0
- package/lib/module/components/layer/Layer.js +151 -0
- package/lib/module/components/layer/Layer.js.map +1 -0
- package/lib/module/components/layer/LayerNativeComponent.ts +43 -0
- package/lib/module/components/map/AndroidTextureMapViewNativeComponent.ts +109 -0
- package/lib/module/components/map/Map.js +112 -0
- package/lib/module/components/map/Map.js.map +1 -0
- package/lib/module/components/map/MapViewNativeComponent.ts +105 -0
- package/lib/module/components/map/NativeMapViewModule.js +5 -0
- package/lib/module/components/map/NativeMapViewModule.js.map +1 -0
- package/lib/module/components/sources/geojson-source/GeoJSONSource.js +51 -0
- package/lib/module/components/sources/geojson-source/GeoJSONSource.js.map +1 -0
- package/lib/module/components/sources/geojson-source/GeoJSONSourceNativeComponent.ts +48 -0
- package/lib/module/components/sources/geojson-source/NativeGeoJSONSourceModule.js +5 -0
- package/lib/module/components/sources/geojson-source/NativeGeoJSONSourceModule.js.map +1 -0
- package/lib/module/components/sources/image-source/ImageSource.js +28 -0
- package/lib/module/components/sources/image-source/ImageSource.js.map +1 -0
- package/lib/module/components/sources/image-source/ImageSourceNativeComponent.ts +31 -0
- package/lib/module/components/sources/raster-dem-source/RasterDEMSource.js +26 -0
- package/lib/module/components/sources/raster-dem-source/RasterDEMSource.js.map +1 -0
- package/lib/module/components/sources/raster-dem-source/RasterDEMSourceNativeComponent.ts +25 -0
- package/lib/module/components/sources/raster-source/RasterSource.js +27 -0
- package/lib/module/components/sources/raster-source/RasterSource.js.map +1 -0
- package/lib/module/components/sources/raster-source/RasterSourceNativeComponent.ts +25 -0
- package/lib/module/components/sources/vector-source/NativeVectorSourceModule.js +5 -0
- package/lib/module/components/sources/vector-source/NativeVectorSourceModule.js.map +1 -0
- package/lib/module/components/sources/vector-source/VectorSource.js +42 -0
- package/lib/module/components/sources/vector-source/VectorSource.js.map +1 -0
- package/lib/module/components/sources/vector-source/VectorSourceNativeComponent.ts +45 -0
- package/lib/module/components/user-location/NativeUserLocation.js +10 -0
- package/lib/module/components/user-location/NativeUserLocation.js.map +1 -0
- package/lib/module/components/user-location/UserLocation.js +47 -0
- package/lib/module/components/user-location/UserLocation.js.map +1 -0
- package/lib/module/components/user-location/UserLocationNativeComponent.ts +19 -0
- package/lib/module/components/user-location/UserLocationPuck.js +59 -0
- package/lib/module/components/user-location/UserLocationPuck.js.map +1 -0
- package/lib/module/components/user-location/UserLocationPuckHeading.js +27 -0
- package/lib/module/components/user-location/UserLocationPuckHeading.js.map +1 -0
- package/lib/module/hooks/useCurrentPosition.js +30 -0
- package/lib/module/hooks/useCurrentPosition.js.map +1 -0
- package/lib/module/hooks/useFrozenId.js +12 -0
- package/lib/module/hooks/useFrozenId.js.map +1 -0
- package/lib/module/hooks/useNativeBridge.js +79 -0
- package/lib/module/hooks/useNativeBridge.js.map +1 -0
- package/lib/module/index.js +27 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/modules/location/LocationManager.js +94 -0
- package/lib/module/modules/location/LocationManager.js.map +1 -0
- package/lib/module/modules/location/NativeLocationModule.js +5 -0
- package/lib/module/modules/location/NativeLocationModule.js.map +1 -0
- package/lib/module/modules/log/LogManager.js +97 -0
- package/lib/module/modules/log/LogManager.js.map +1 -0
- package/lib/module/modules/log/NativeLogModule.js +5 -0
- package/lib/module/modules/log/NativeLogModule.js.map +1 -0
- package/lib/module/modules/network/NativeNetworkModule.js +5 -0
- package/lib/module/modules/network/NativeNetworkModule.js.map +1 -0
- package/lib/module/modules/network/NetworkManager.js +30 -0
- package/lib/module/modules/network/NetworkManager.js.map +1 -0
- package/lib/module/modules/offline/NativeOfflineModule.js +5 -0
- package/lib/module/modules/offline/NativeOfflineModule.js.map +1 -0
- package/lib/module/modules/offline/OfflineManager.js +348 -0
- package/lib/module/modules/offline/OfflineManager.js.map +1 -0
- package/lib/module/modules/offline/OfflinePack.js +24 -0
- package/lib/module/modules/offline/OfflinePack.js.map +1 -0
- package/lib/module/modules/static-map/NativeStaticMapModule.js +5 -0
- package/lib/module/modules/static-map/NativeStaticMapModule.js.map +1 -0
- package/lib/module/modules/static-map/StaticMapManager.js +53 -0
- package/lib/module/modules/static-map/StaticMapManager.js.map +1 -0
- package/lib/module/modules/transform-request/NativeTransformRequestModule.js +5 -0
- package/lib/module/modules/transform-request/NativeTransformRequestModule.js.map +1 -0
- package/lib/module/modules/transform-request/TransformRequestManager.js +230 -0
- package/lib/module/modules/transform-request/TransformRequestManager.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/plugin/MapVinaPluginProps.js +2 -0
- package/lib/module/plugin/MapVinaPluginProps.js.map +1 -0
- package/lib/module/plugin/android.js +32 -0
- package/lib/module/plugin/android.js.map +1 -0
- package/lib/module/plugin/ios.js +83 -0
- package/lib/module/plugin/ios.js.map +1 -0
- package/lib/module/types/Anchor.js +63 -0
- package/lib/module/types/Anchor.js.map +1 -0
- package/lib/module/types/BaseProps.js +2 -0
- package/lib/module/types/BaseProps.js.map +1 -0
- package/lib/module/types/LngLat.js +2 -0
- package/lib/module/types/LngLat.js.map +1 -0
- package/lib/module/types/LngLatBounds.js +2 -0
- package/lib/module/types/LngLatBounds.js.map +1 -0
- package/lib/module/types/MapVinaRNStyles.js +4 -0
- package/lib/module/types/MapVinaRNStyles.js.map +1 -0
- package/lib/module/types/PixelPoint.js +2 -0
- package/lib/module/types/PixelPoint.js.map +1 -0
- package/lib/module/types/PixelPointBounds.js +2 -0
- package/lib/module/types/PixelPointBounds.js.map +1 -0
- package/lib/module/types/PressEvent.js +4 -0
- package/lib/module/types/PressEvent.js.map +1 -0
- package/lib/module/types/PressEventWithFeatures.js +4 -0
- package/lib/module/types/PressEventWithFeatures.js.map +1 -0
- package/lib/module/types/PressableSourceProps.js +4 -0
- package/lib/module/types/PressableSourceProps.js.map +1 -0
- package/lib/module/types/ViewPadding.js +2 -0
- package/lib/module/types/ViewPadding.js.map +1 -0
- package/lib/module/types/codegen/UnsafeMixed.js +2 -0
- package/lib/module/types/codegen/UnsafeMixed.js.map +1 -0
- package/lib/module/utils/BridgeValue.js +54 -0
- package/lib/module/utils/BridgeValue.js.map +1 -0
- package/lib/module/utils/StyleValue.js +34 -0
- package/lib/module/utils/StyleValue.js.map +1 -0
- package/lib/module/utils/animated/AbstractAnimatedCoordinates.js +91 -0
- package/lib/module/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
- package/lib/module/utils/animated/Animated.js +26 -0
- package/lib/module/utils/animated/Animated.js.map +1 -0
- package/lib/module/utils/animated/AnimatedCoordinatesArray.js +86 -0
- package/lib/module/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
- package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js +27 -0
- package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
- package/lib/module/utils/animated/AnimatedGeoJSON.js +62 -0
- package/lib/module/utils/animated/AnimatedGeoJSON.js.map +1 -0
- package/lib/module/utils/animated/AnimatedPoint.js +109 -0
- package/lib/module/utils/animated/AnimatedPoint.js.map +1 -0
- package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +115 -0
- package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
- package/lib/module/utils/convertStyleSpec.js +53 -0
- package/lib/module/utils/convertStyleSpec.js.map +1 -0
- package/lib/module/utils/findNodeHandle.js +11 -0
- package/lib/module/utils/findNodeHandle.js.map +1 -0
- package/lib/module/utils/getNativeFilter.js +12 -0
- package/lib/module/utils/getNativeFilter.js.map +1 -0
- package/lib/module/utils/getStylePropertyType.js +251 -0
- package/lib/module/utils/getStylePropertyType.js.map +1 -0
- package/lib/module/utils/index.js +55 -0
- package/lib/module/utils/index.js.map +1 -0
- package/lib/typescript/commonjs/components/annotations/LayerAnnotation.d.ts +20 -0
- package/lib/typescript/commonjs/components/annotations/LayerAnnotation.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/annotations/callout/Callout.d.ts +35 -0
- package/lib/typescript/commonjs/components/annotations/callout/Callout.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/annotations/callout/CalloutNativeComponent.d.ts +6 -0
- package/lib/typescript/commonjs/components/annotations/callout/CalloutNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/annotations/marker/Marker.d.ts +79 -0
- package/lib/typescript/commonjs/components/annotations/marker/Marker.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/annotations/marker/MarkerViewNativeComponent.d.ts +31 -0
- package/lib/typescript/commonjs/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts +44 -0
- package/lib/typescript/commonjs/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/annotations/view-annotation/ViewAnnotation.d.ts +119 -0
- package/lib/typescript/commonjs/components/annotations/view-annotation/ViewAnnotation.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/camera/Camera.d.ts +217 -0
- package/lib/typescript/commonjs/components/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/camera/CameraNativeComponent.d.ts +37 -0
- package/lib/typescript/commonjs/components/camera/CameraNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/camera/NativeCameraModule.d.ts +26 -0
- package/lib/typescript/commonjs/components/camera/NativeCameraModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/images/Images.d.ts +69 -0
- package/lib/typescript/commonjs/components/images/Images.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/images/ImagesNativeComponent.d.ts +17 -0
- package/lib/typescript/commonjs/components/images/ImagesNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/images/NativeImagesModule.d.ts +6 -0
- package/lib/typescript/commonjs/components/images/NativeImagesModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/Layer.d.ts +172 -0
- package/lib/typescript/commonjs/components/layer/Layer.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/LayerNativeComponent.d.ts +19 -0
- package/lib/typescript/commonjs/components/layer/LayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/map/AndroidTextureMapViewNativeComponent.d.ts +79 -0
- package/lib/typescript/commonjs/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/map/Map.d.ts +448 -0
- package/lib/typescript/commonjs/components/map/Map.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/map/MapViewNativeComponent.d.ts +79 -0
- package/lib/typescript/commonjs/components/map/MapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/map/NativeMapViewModule.d.ts +31 -0
- package/lib/typescript/commonjs/components/map/NativeMapViewModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSource.d.ts +135 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts +35 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts +10 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/image-source/ImageSource.d.ts +32 -0
- package/lib/typescript/commonjs/components/sources/image-source/ImageSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/image-source/ImageSourceNativeComponent.d.ts +21 -0
- package/lib/typescript/commonjs/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/raster-dem-source/RasterDEMSource.d.ts +58 -0
- package/lib/typescript/commonjs/components/sources/raster-dem-source/RasterDEMSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/raster-dem-source/RasterDEMSourceNativeComponent.d.ts +15 -0
- package/lib/typescript/commonjs/components/sources/raster-dem-source/RasterDEMSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/raster-source/RasterSource.d.ts +59 -0
- package/lib/typescript/commonjs/components/sources/raster-source/RasterSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/raster-source/RasterSourceNativeComponent.d.ts +15 -0
- package/lib/typescript/commonjs/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/vector-source/NativeVectorSourceModule.d.ts +7 -0
- package/lib/typescript/commonjs/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/vector-source/VectorSource.d.ts +75 -0
- package/lib/typescript/commonjs/components/sources/vector-source/VectorSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/vector-source/VectorSourceNativeComponent.d.ts +32 -0
- package/lib/typescript/commonjs/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/NativeUserLocation.d.ts +27 -0
- package/lib/typescript/commonjs/components/user-location/NativeUserLocation.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/UserLocation.d.ts +31 -0
- package/lib/typescript/commonjs/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationNativeComponent.d.ts +8 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationPuck.d.ts +10 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationPuck.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationPuckHeading.d.ts +9 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/useCurrentPosition.d.ts +18 -0
- package/lib/typescript/commonjs/hooks/useCurrentPosition.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/useFrozenId.d.ts +2 -0
- package/lib/typescript/commonjs/hooks/useFrozenId.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/useNativeBridge.d.ts +21 -0
- package/lib/typescript/commonjs/hooks/useNativeBridge.d.ts.map +1 -0
- package/lib/typescript/commonjs/index.d.ts +36 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/location/LocationManager.d.ts +62 -0
- package/lib/typescript/commonjs/modules/location/LocationManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/location/NativeLocationModule.d.ts +25 -0
- package/lib/typescript/commonjs/modules/location/NativeLocationModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/log/LogManager.d.ts +46 -0
- package/lib/typescript/commonjs/modules/log/LogManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/log/NativeLogModule.d.ts +13 -0
- package/lib/typescript/commonjs/modules/log/NativeLogModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/network/NativeNetworkModule.d.ts +7 -0
- package/lib/typescript/commonjs/modules/network/NativeNetworkModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/network/NetworkManager.d.ts +24 -0
- package/lib/typescript/commonjs/modules/network/NetworkManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/offline/NativeOfflineModule.d.ts +50 -0
- package/lib/typescript/commonjs/modules/offline/NativeOfflineModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/offline/OfflineManager.d.ts +238 -0
- package/lib/typescript/commonjs/modules/offline/OfflineManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/offline/OfflinePack.d.ts +25 -0
- package/lib/typescript/commonjs/modules/offline/OfflinePack.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/static-map/NativeStaticMapModule.d.ts +19 -0
- package/lib/typescript/commonjs/modules/static-map/NativeStaticMapModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/static-map/StaticMapManager.d.ts +105 -0
- package/lib/typescript/commonjs/modules/static-map/StaticMapManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/transform-request/NativeTransformRequestModule.d.ts +15 -0
- package/lib/typescript/commonjs/modules/transform-request/NativeTransformRequestModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/transform-request/TransformRequestManager.d.ts +213 -0
- package/lib/typescript/commonjs/modules/transform-request/TransformRequestManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/plugin/MapVinaPluginProps.d.ts +78 -0
- package/lib/typescript/commonjs/plugin/MapVinaPluginProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/plugin/android.d.ts +17 -0
- package/lib/typescript/commonjs/plugin/android.d.ts.map +1 -0
- package/lib/typescript/commonjs/plugin/ios.d.ts +15 -0
- package/lib/typescript/commonjs/plugin/ios.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/Anchor.d.ts +16 -0
- package/lib/typescript/commonjs/types/Anchor.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/BaseProps.d.ts +7 -0
- package/lib/typescript/commonjs/types/BaseProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/LngLat.d.ts +5 -0
- package/lib/typescript/commonjs/types/LngLat.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/LngLatBounds.d.ts +13 -0
- package/lib/typescript/commonjs/types/LngLatBounds.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/MapVinaRNStyles.d.ts +1169 -0
- package/lib/typescript/commonjs/types/MapVinaRNStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/PixelPoint.d.ts +5 -0
- package/lib/typescript/commonjs/types/PixelPoint.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/PixelPointBounds.d.ts +10 -0
- package/lib/typescript/commonjs/types/PixelPointBounds.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/PressEvent.d.ts +16 -0
- package/lib/typescript/commonjs/types/PressEvent.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/PressEventWithFeatures.d.ts +8 -0
- package/lib/typescript/commonjs/types/PressEventWithFeatures.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/PressableSourceProps.d.ts +19 -0
- package/lib/typescript/commonjs/types/PressableSourceProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/ViewPadding.d.ts +10 -0
- package/lib/typescript/commonjs/types/ViewPadding.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/codegen/UnsafeMixed.d.ts +10 -0
- package/lib/typescript/commonjs/types/codegen/UnsafeMixed.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/BridgeValue.d.ts +29 -0
- package/lib/typescript/commonjs/utils/BridgeValue.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/StyleValue.d.ts +10 -0
- package/lib/typescript/commonjs/utils/StyleValue.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AbstractAnimatedCoordinates.d.ts +42 -0
- package/lib/typescript/commonjs/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/Animated.d.ts +21 -0
- package/lib/typescript/commonjs/utils/animated/Animated.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +13 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedGeoJSON.d.ts +31 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedGeoJSON.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedPoint.d.ts +32 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedPoint.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedRouteCoordinatesArray.d.ts +62 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/convertStyleSpec.d.ts +16 -0
- package/lib/typescript/commonjs/utils/convertStyleSpec.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/findNodeHandle.d.ts +3 -0
- package/lib/typescript/commonjs/utils/findNodeHandle.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/getNativeFilter.d.ts +3 -0
- package/lib/typescript/commonjs/utils/getNativeFilter.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/getStylePropertyType.d.ts +35 -0
- package/lib/typescript/commonjs/utils/getStylePropertyType.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/index.d.ts +18 -0
- package/lib/typescript/commonjs/utils/index.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/LayerAnnotation.d.ts +20 -0
- package/lib/typescript/module/components/annotations/LayerAnnotation.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/callout/Callout.d.ts +35 -0
- package/lib/typescript/module/components/annotations/callout/Callout.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/callout/CalloutNativeComponent.d.ts +6 -0
- package/lib/typescript/module/components/annotations/callout/CalloutNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/marker/Marker.d.ts +79 -0
- package/lib/typescript/module/components/annotations/marker/Marker.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/marker/MarkerViewNativeComponent.d.ts +31 -0
- package/lib/typescript/module/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts +44 -0
- package/lib/typescript/module/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/view-annotation/ViewAnnotation.d.ts +119 -0
- package/lib/typescript/module/components/annotations/view-annotation/ViewAnnotation.d.ts.map +1 -0
- package/lib/typescript/module/components/camera/Camera.d.ts +217 -0
- package/lib/typescript/module/components/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/module/components/camera/CameraNativeComponent.d.ts +37 -0
- package/lib/typescript/module/components/camera/CameraNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/camera/NativeCameraModule.d.ts +26 -0
- package/lib/typescript/module/components/camera/NativeCameraModule.d.ts.map +1 -0
- package/lib/typescript/module/components/images/Images.d.ts +69 -0
- package/lib/typescript/module/components/images/Images.d.ts.map +1 -0
- package/lib/typescript/module/components/images/ImagesNativeComponent.d.ts +17 -0
- package/lib/typescript/module/components/images/ImagesNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/images/NativeImagesModule.d.ts +6 -0
- package/lib/typescript/module/components/images/NativeImagesModule.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/Layer.d.ts +172 -0
- package/lib/typescript/module/components/layer/Layer.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/LayerNativeComponent.d.ts +19 -0
- package/lib/typescript/module/components/layer/LayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/map/AndroidTextureMapViewNativeComponent.d.ts +79 -0
- package/lib/typescript/module/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/map/Map.d.ts +448 -0
- package/lib/typescript/module/components/map/Map.d.ts.map +1 -0
- package/lib/typescript/module/components/map/MapViewNativeComponent.d.ts +79 -0
- package/lib/typescript/module/components/map/MapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/map/NativeMapViewModule.d.ts +31 -0
- package/lib/typescript/module/components/map/NativeMapViewModule.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/geojson-source/GeoJSONSource.d.ts +135 -0
- package/lib/typescript/module/components/sources/geojson-source/GeoJSONSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts +35 -0
- package/lib/typescript/module/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts +10 -0
- package/lib/typescript/module/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/image-source/ImageSource.d.ts +32 -0
- package/lib/typescript/module/components/sources/image-source/ImageSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/image-source/ImageSourceNativeComponent.d.ts +21 -0
- package/lib/typescript/module/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/raster-dem-source/RasterDEMSource.d.ts +58 -0
- package/lib/typescript/module/components/sources/raster-dem-source/RasterDEMSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/raster-dem-source/RasterDEMSourceNativeComponent.d.ts +15 -0
- package/lib/typescript/module/components/sources/raster-dem-source/RasterDEMSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/raster-source/RasterSource.d.ts +59 -0
- package/lib/typescript/module/components/sources/raster-source/RasterSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/raster-source/RasterSourceNativeComponent.d.ts +15 -0
- package/lib/typescript/module/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/vector-source/NativeVectorSourceModule.d.ts +7 -0
- package/lib/typescript/module/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/vector-source/VectorSource.d.ts +75 -0
- package/lib/typescript/module/components/sources/vector-source/VectorSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/vector-source/VectorSourceNativeComponent.d.ts +32 -0
- package/lib/typescript/module/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/NativeUserLocation.d.ts +27 -0
- package/lib/typescript/module/components/user-location/NativeUserLocation.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/UserLocation.d.ts +31 -0
- package/lib/typescript/module/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/UserLocationNativeComponent.d.ts +8 -0
- package/lib/typescript/module/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/UserLocationPuck.d.ts +10 -0
- package/lib/typescript/module/components/user-location/UserLocationPuck.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/UserLocationPuckHeading.d.ts +9 -0
- package/lib/typescript/module/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
- package/lib/typescript/module/hooks/useCurrentPosition.d.ts +18 -0
- package/lib/typescript/module/hooks/useCurrentPosition.d.ts.map +1 -0
- package/lib/typescript/module/hooks/useFrozenId.d.ts +2 -0
- package/lib/typescript/module/hooks/useFrozenId.d.ts.map +1 -0
- package/lib/typescript/module/hooks/useNativeBridge.d.ts +21 -0
- package/lib/typescript/module/hooks/useNativeBridge.d.ts.map +1 -0
- package/lib/typescript/module/index.d.ts +36 -0
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/modules/location/LocationManager.d.ts +62 -0
- package/lib/typescript/module/modules/location/LocationManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/location/NativeLocationModule.d.ts +25 -0
- package/lib/typescript/module/modules/location/NativeLocationModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/log/LogManager.d.ts +46 -0
- package/lib/typescript/module/modules/log/LogManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/log/NativeLogModule.d.ts +13 -0
- package/lib/typescript/module/modules/log/NativeLogModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/network/NativeNetworkModule.d.ts +7 -0
- package/lib/typescript/module/modules/network/NativeNetworkModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/network/NetworkManager.d.ts +24 -0
- package/lib/typescript/module/modules/network/NetworkManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/offline/NativeOfflineModule.d.ts +50 -0
- package/lib/typescript/module/modules/offline/NativeOfflineModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/offline/OfflineManager.d.ts +238 -0
- package/lib/typescript/module/modules/offline/OfflineManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/offline/OfflinePack.d.ts +25 -0
- package/lib/typescript/module/modules/offline/OfflinePack.d.ts.map +1 -0
- package/lib/typescript/module/modules/static-map/NativeStaticMapModule.d.ts +19 -0
- package/lib/typescript/module/modules/static-map/NativeStaticMapModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/static-map/StaticMapManager.d.ts +105 -0
- package/lib/typescript/module/modules/static-map/StaticMapManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/transform-request/NativeTransformRequestModule.d.ts +15 -0
- package/lib/typescript/module/modules/transform-request/NativeTransformRequestModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/transform-request/TransformRequestManager.d.ts +213 -0
- package/lib/typescript/module/modules/transform-request/TransformRequestManager.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/plugin/MapVinaPluginProps.d.ts +78 -0
- package/lib/typescript/module/plugin/MapVinaPluginProps.d.ts.map +1 -0
- package/lib/typescript/module/plugin/android.d.ts +17 -0
- package/lib/typescript/module/plugin/android.d.ts.map +1 -0
- package/lib/typescript/module/plugin/ios.d.ts +15 -0
- package/lib/typescript/module/plugin/ios.d.ts.map +1 -0
- package/lib/typescript/module/types/Anchor.d.ts +16 -0
- package/lib/typescript/module/types/Anchor.d.ts.map +1 -0
- package/lib/typescript/module/types/BaseProps.d.ts +7 -0
- package/lib/typescript/module/types/BaseProps.d.ts.map +1 -0
- package/lib/typescript/module/types/LngLat.d.ts +5 -0
- package/lib/typescript/module/types/LngLat.d.ts.map +1 -0
- package/lib/typescript/module/types/LngLatBounds.d.ts +13 -0
- package/lib/typescript/module/types/LngLatBounds.d.ts.map +1 -0
- package/lib/typescript/module/types/MapVinaRNStyles.d.ts +1169 -0
- package/lib/typescript/module/types/MapVinaRNStyles.d.ts.map +1 -0
- package/lib/typescript/module/types/PixelPoint.d.ts +5 -0
- package/lib/typescript/module/types/PixelPoint.d.ts.map +1 -0
- package/lib/typescript/module/types/PixelPointBounds.d.ts +10 -0
- package/lib/typescript/module/types/PixelPointBounds.d.ts.map +1 -0
- package/lib/typescript/module/types/PressEvent.d.ts +16 -0
- package/lib/typescript/module/types/PressEvent.d.ts.map +1 -0
- package/lib/typescript/module/types/PressEventWithFeatures.d.ts +8 -0
- package/lib/typescript/module/types/PressEventWithFeatures.d.ts.map +1 -0
- package/lib/typescript/module/types/PressableSourceProps.d.ts +19 -0
- package/lib/typescript/module/types/PressableSourceProps.d.ts.map +1 -0
- package/lib/typescript/module/types/ViewPadding.d.ts +10 -0
- package/lib/typescript/module/types/ViewPadding.d.ts.map +1 -0
- package/lib/typescript/module/types/codegen/UnsafeMixed.d.ts +10 -0
- package/lib/typescript/module/types/codegen/UnsafeMixed.d.ts.map +1 -0
- package/lib/typescript/module/utils/BridgeValue.d.ts +29 -0
- package/lib/typescript/module/utils/BridgeValue.d.ts.map +1 -0
- package/lib/typescript/module/utils/StyleValue.d.ts +10 -0
- package/lib/typescript/module/utils/StyleValue.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AbstractAnimatedCoordinates.d.ts +42 -0
- package/lib/typescript/module/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/Animated.d.ts +21 -0
- package/lib/typescript/module/utils/animated/Animated.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
- package/lib/typescript/module/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +13 -0
- package/lib/typescript/module/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AnimatedGeoJSON.d.ts +31 -0
- package/lib/typescript/module/utils/animated/AnimatedGeoJSON.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AnimatedPoint.d.ts +32 -0
- package/lib/typescript/module/utils/animated/AnimatedPoint.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AnimatedRouteCoordinatesArray.d.ts +62 -0
- package/lib/typescript/module/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/module/utils/convertStyleSpec.d.ts +16 -0
- package/lib/typescript/module/utils/convertStyleSpec.d.ts.map +1 -0
- package/lib/typescript/module/utils/findNodeHandle.d.ts +3 -0
- package/lib/typescript/module/utils/findNodeHandle.d.ts.map +1 -0
- package/lib/typescript/module/utils/getNativeFilter.d.ts +3 -0
- package/lib/typescript/module/utils/getNativeFilter.d.ts.map +1 -0
- package/lib/typescript/module/utils/getStylePropertyType.d.ts +35 -0
- package/lib/typescript/module/utils/getStylePropertyType.d.ts.map +1 -0
- package/lib/typescript/module/utils/index.d.ts +18 -0
- package/lib/typescript/module/utils/index.d.ts.map +1 -0
- package/package.json +191 -0
- package/src/assets/heading.png +0 -0
- package/src/assets/heading@2x.png +0 -0
- package/src/assets/heading@3x.png +0 -0
- package/src/assets/png.d.ts +4 -0
- package/src/components/annotations/LayerAnnotation.tsx +74 -0
- package/src/components/annotations/callout/Callout.tsx +146 -0
- package/src/components/annotations/callout/CalloutNativeComponent.ts +11 -0
- package/src/components/annotations/marker/Marker.tsx +176 -0
- package/src/components/annotations/marker/MarkerViewNativeComponent.ts +40 -0
- package/src/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +59 -0
- package/src/components/annotations/view-annotation/ViewAnnotation.tsx +239 -0
- package/src/components/camera/Camera.tsx +344 -0
- package/src/components/camera/CameraNativeComponent.ts +65 -0
- package/src/components/camera/NativeCameraModule.ts +38 -0
- package/src/components/images/Images.tsx +111 -0
- package/src/components/images/ImagesNativeComponent.ts +27 -0
- package/src/components/images/NativeImagesModule.ts +11 -0
- package/src/components/layer/Layer.tsx +278 -0
- package/src/components/layer/LayerNativeComponent.ts +43 -0
- package/src/components/map/AndroidTextureMapViewNativeComponent.ts +109 -0
- package/src/components/map/Map.tsx +697 -0
- package/src/components/map/MapViewNativeComponent.ts +105 -0
- package/src/components/map/NativeMapViewModule.ts +78 -0
- package/src/components/sources/geojson-source/GeoJSONSource.tsx +245 -0
- package/src/components/sources/geojson-source/GeoJSONSourceNativeComponent.ts +48 -0
- package/src/components/sources/geojson-source/NativeGeoJSONSourceModule.ts +33 -0
- package/src/components/sources/image-source/ImageSource.tsx +58 -0
- package/src/components/sources/image-source/ImageSourceNativeComponent.ts +31 -0
- package/src/components/sources/raster-dem-source/RasterDEMSource.tsx +83 -0
- package/src/components/sources/raster-dem-source/RasterDEMSourceNativeComponent.ts +25 -0
- package/src/components/sources/raster-source/RasterSource.tsx +82 -0
- package/src/components/sources/raster-source/RasterSourceNativeComponent.ts +25 -0
- package/src/components/sources/vector-source/NativeVectorSourceModule.ts +15 -0
- package/src/components/sources/vector-source/VectorSource.tsx +137 -0
- package/src/components/sources/vector-source/VectorSourceNativeComponent.ts +45 -0
- package/src/components/user-location/NativeUserLocation.tsx +31 -0
- package/src/components/user-location/UserLocation.tsx +98 -0
- package/src/components/user-location/UserLocationNativeComponent.ts +19 -0
- package/src/components/user-location/UserLocationPuck.tsx +83 -0
- package/src/components/user-location/UserLocationPuckHeading.tsx +34 -0
- package/src/hooks/useCurrentPosition.ts +53 -0
- package/src/hooks/useFrozenId.ts +13 -0
- package/src/hooks/useNativeBridge.ts +128 -0
- package/src/index.ts +119 -0
- package/src/modules/location/LocationManager.ts +174 -0
- package/src/modules/location/NativeLocationModule.ts +33 -0
- package/src/modules/log/LogManager.ts +115 -0
- package/src/modules/log/NativeLogModule.ts +16 -0
- package/src/modules/network/NativeNetworkModule.ts +8 -0
- package/src/modules/network/NetworkManager.ts +28 -0
- package/src/modules/offline/NativeOfflineModule.ts +63 -0
- package/src/modules/offline/OfflineManager.ts +428 -0
- package/src/modules/offline/OfflinePack.ts +44 -0
- package/src/modules/static-map/NativeStaticMapModule.ts +26 -0
- package/src/modules/static-map/StaticMapManager.ts +127 -0
- package/src/modules/transform-request/NativeTransformRequestModule.ts +41 -0
- package/src/modules/transform-request/TransformRequestManager.ts +304 -0
- package/src/plugin/MapVinaPluginProps.ts +84 -0
- package/src/plugin/android.ts +68 -0
- package/src/plugin/ios.ts +114 -0
- package/src/types/Anchor.ts +43 -0
- package/src/types/BaseProps.ts +6 -0
- package/src/types/LngLat.ts +4 -0
- package/src/types/LngLatBounds.ts +12 -0
- package/src/types/MapVinaRNStyles.ts +1335 -0
- package/src/types/PixelPoint.ts +4 -0
- package/src/types/PixelPointBounds.ts +9 -0
- package/src/types/PressEvent.ts +17 -0
- package/src/types/PressEventWithFeatures.ts +8 -0
- package/src/types/PressableSourceProps.ts +21 -0
- package/src/types/ViewPadding.ts +9 -0
- package/src/types/codegen/UnsafeMixed.ts +9 -0
- package/src/utils/BridgeValue.ts +90 -0
- package/src/utils/StyleValue.ts +52 -0
- package/src/utils/animated/AbstractAnimatedCoordinates.ts +145 -0
- package/src/utils/animated/Animated.ts +33 -0
- package/src/utils/animated/AnimatedCoordinatesArray.ts +114 -0
- package/src/utils/animated/AnimatedExtractCoordinateFromArray.ts +37 -0
- package/src/utils/animated/AnimatedGeoJSON.ts +90 -0
- package/src/utils/animated/AnimatedPoint.ts +153 -0
- package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +155 -0
- package/src/utils/convertStyleSpec.ts +61 -0
- package/src/utils/findNodeHandle.ts +14 -0
- package/src/utils/getNativeFilter.ts +15 -0
- package/src/utils/getStylePropertyType.ts +268 -0
- package/src/utils/index.ts +105 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["distance","convertLength","lineString","point","length","nearestPointOnLine","AbstractAnimatedCoordinates","AnimatedRouteCoordinatesArray","onInitialState","coordinatesArray","fullRoute","map","coordinates","end","from","to","onGetValue","state","actRoute","onCalculate","progress","currentEnd","prevSum","actSum","i","start","distconf","slice","current","r","or","onStart","toValue","fullRouteLineString","undefined","along","units","nearest","properties","location","originalRoute"],"sourceRoot":"../../../../src","sources":["utils/animated/AnimatedRouteCoordinatesArray.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Converts a kebab-case string to camelCase.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* kebabToCamel('fill-color') // Returns: 'fillColor'
|
|
8
|
+
* kebabToCamel('line-gap-width') // Returns: 'lineGapWidth'
|
|
9
|
+
*/
|
|
10
|
+
function kebabToCamel(str) {
|
|
11
|
+
return str.replace(/-([a-z])/g, (_, char) => char.toUpperCase());
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Converts style spec compliant paint/layout objects (kebab-case) to internal
|
|
16
|
+
* style format (camelCase).
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* convertToInternalStyle({ 'fill-color': 'red' })
|
|
20
|
+
* // Returns: { fillColor: 'red' }
|
|
21
|
+
*/
|
|
22
|
+
export function convertToInternalStyle(specStyle) {
|
|
23
|
+
if (!specStyle) {
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
26
|
+
const result = {};
|
|
27
|
+
for (const key of Object.keys(specStyle)) {
|
|
28
|
+
result[kebabToCamel(key)] = specStyle[key];
|
|
29
|
+
}
|
|
30
|
+
return result;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Merges paint and layout props into a single internal style object. Priority
|
|
35
|
+
* order (highest to lowest): paint > layout > style (deprecated)
|
|
36
|
+
*/
|
|
37
|
+
export function mergeStyleProps(paint, layout, deprecatedStyle) {
|
|
38
|
+
const convertedPaint = convertToInternalStyle(paint);
|
|
39
|
+
const convertedLayout = convertToInternalStyle(layout);
|
|
40
|
+
|
|
41
|
+
// If nothing provided, return undefined
|
|
42
|
+
if (!convertedPaint && !convertedLayout && !deprecatedStyle) {
|
|
43
|
+
return undefined;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Merge: deprecated style has lowest precedence
|
|
47
|
+
return {
|
|
48
|
+
...deprecatedStyle,
|
|
49
|
+
...convertedLayout,
|
|
50
|
+
...convertedPaint
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=convertStyleSpec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["kebabToCamel","str","replace","_","char","toUpperCase","convertToInternalStyle","specStyle","undefined","result","key","Object","keys","mergeStyleProps","paint","layout","deprecatedStyle","convertedPaint","convertedLayout"],"sourceRoot":"../../../src","sources":["utils/convertStyleSpec.ts"],"mappings":";;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,YAAYA,CAACC,GAAW,EAAU;EACzC,OAAOA,GAAG,CAACC,OAAO,CAAC,WAAW,EAAE,CAACC,CAAC,EAAEC,IAAI,KAAKA,IAAI,CAACC,WAAW,CAAC,CAAC,CAAC;AAClE;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,sBAAsBA,CACpCC,SAA8C,EACV;EACpC,IAAI,CAACA,SAAS,EAAE;IACd,OAAOC,SAAS;EAClB;EAEA,MAAMC,MAA+B,GAAG,CAAC,CAAC;EAE1C,KAAK,MAAMC,GAAG,IAAIC,MAAM,CAACC,IAAI,CAACL,SAAS,CAAC,EAAE;IACxCE,MAAM,CAACT,YAAY,CAACU,GAAG,CAAC,CAAC,GAAGH,SAAS,CAACG,GAAG,CAAC;EAC5C;EAEA,OAAOD,MAAM;AACf;;AAEA;AACA;AACA;AACA;AACA,OAAO,SAASI,eAAeA,CAC7BC,KAA0C,EAC1CC,MAA2C,EAC3CC,eAA0C,EACf;EAC3B,MAAMC,cAAc,GAAGX,sBAAsB,CAACQ,KAAK,CAAC;EACpD,MAAMI,eAAe,GAAGZ,sBAAsB,CAACS,MAAM,CAAC;;EAEtD;EACA,IAAI,CAACE,cAAc,IAAI,CAACC,eAAe,IAAI,CAACF,eAAe,EAAE;IAC3D,OAAOR,SAAS;EAClB;;EAEA;EACA,OAAO;IACL,GAAGQ,eAAe;IAClB,GAAGE,eAAe;IAClB,GAAGD;EACL,CAAC;AACH","ignoreList":[]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { findNodeHandle as rnFindNodeHandle } from "react-native";
|
|
4
|
+
export const findNodeHandle = ref => {
|
|
5
|
+
const nodeHandle = rnFindNodeHandle(ref);
|
|
6
|
+
if (nodeHandle === null) {
|
|
7
|
+
throw new Error("NativeComponent ref is null, wait for the map being initialized");
|
|
8
|
+
}
|
|
9
|
+
return nodeHandle;
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=findNodeHandle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["findNodeHandle","rnFindNodeHandle","ref","nodeHandle","Error"],"sourceRoot":"../../../src","sources":["utils/findNodeHandle.ts"],"mappings":";;AACA,SAASA,cAAc,IAAIC,gBAAgB,QAAQ,cAAc;AAEjE,OAAO,MAAMD,cAAc,GAAIE,GAAqB,IAAK;EACvD,MAAMC,UAAU,GAAGF,gBAAgB,CAACC,GAAG,CAAC;EAExC,IAAIC,UAAU,KAAK,IAAI,EAAE;IACvB,MAAM,IAAIC,KAAK,CACb,iEACF,CAAC;EACH;EAEA,OAAOD,UAAU;AACnB,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["getNativeFilter","filter","Array","isArray"],"sourceRoot":"../../../src","sources":["utils/getNativeFilter.ts"],"mappings":";;AAEA,OAAO,SAASA,eAAeA,CAC7BC,MAAuC,EAC5B;EACX,IAAIC,KAAK,CAACC,OAAO,CAACF,MAAM,CAAC,EAAE;IACzB,OAAOA,MAAM;EACf;EAEA,IAAI,OAAOA,MAAM,KAAK,SAAS,EAAE;IAC/B,OAAO,CAAC,SAAS,EAAEA,MAAM,CAAC;EAC5B;EAEA,OAAO,EAAE;AACX","ignoreList":[]}
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// DO NOT MODIFY
|
|
4
|
+
// This file is auto-generated from scripts/src/templates/renderGetStylePropertyType.ts
|
|
5
|
+
|
|
6
|
+
import { isAndroid } from "./index.js";
|
|
7
|
+
const StyleType = {
|
|
8
|
+
Constant: "constant",
|
|
9
|
+
Color: "color",
|
|
10
|
+
Transition: "transition",
|
|
11
|
+
Translation: "translation",
|
|
12
|
+
Function: "function",
|
|
13
|
+
Image: "image",
|
|
14
|
+
Enum: "enum"
|
|
15
|
+
};
|
|
16
|
+
const STYLE_MAP = {
|
|
17
|
+
fillSortKey: StyleType.Constant,
|
|
18
|
+
fillAntialias: StyleType.Constant,
|
|
19
|
+
fillOpacity: StyleType.Constant,
|
|
20
|
+
fillOpacityTransition: StyleType.Transition,
|
|
21
|
+
fillColor: StyleType.Color,
|
|
22
|
+
fillColorTransition: StyleType.Transition,
|
|
23
|
+
fillOutlineColor: StyleType.Color,
|
|
24
|
+
fillOutlineColorTransition: StyleType.Transition,
|
|
25
|
+
fillTranslate: StyleType.Translation,
|
|
26
|
+
fillTranslateTransition: StyleType.Transition,
|
|
27
|
+
fillTranslateAnchor: StyleType.Enum,
|
|
28
|
+
fillPattern: StyleType.Image,
|
|
29
|
+
fillPatternTransition: StyleType.Transition,
|
|
30
|
+
lineCap: StyleType.Enum,
|
|
31
|
+
lineJoin: StyleType.Enum,
|
|
32
|
+
lineMiterLimit: StyleType.Constant,
|
|
33
|
+
lineRoundLimit: StyleType.Constant,
|
|
34
|
+
lineSortKey: StyleType.Constant,
|
|
35
|
+
lineOpacity: StyleType.Constant,
|
|
36
|
+
lineOpacityTransition: StyleType.Transition,
|
|
37
|
+
lineColor: StyleType.Color,
|
|
38
|
+
lineColorTransition: StyleType.Transition,
|
|
39
|
+
lineTranslate: StyleType.Translation,
|
|
40
|
+
lineTranslateTransition: StyleType.Transition,
|
|
41
|
+
lineTranslateAnchor: StyleType.Enum,
|
|
42
|
+
lineWidth: StyleType.Constant,
|
|
43
|
+
lineWidthTransition: StyleType.Transition,
|
|
44
|
+
lineGapWidth: StyleType.Constant,
|
|
45
|
+
lineGapWidthTransition: StyleType.Transition,
|
|
46
|
+
lineOffset: StyleType.Constant,
|
|
47
|
+
lineOffsetTransition: StyleType.Transition,
|
|
48
|
+
lineBlur: StyleType.Constant,
|
|
49
|
+
lineBlurTransition: StyleType.Transition,
|
|
50
|
+
lineDasharray: StyleType.Constant,
|
|
51
|
+
lineDasharrayTransition: StyleType.Transition,
|
|
52
|
+
linePattern: StyleType.Image,
|
|
53
|
+
linePatternTransition: StyleType.Transition,
|
|
54
|
+
lineGradient: StyleType.Color,
|
|
55
|
+
symbolPlacement: StyleType.Enum,
|
|
56
|
+
symbolSpacing: StyleType.Constant,
|
|
57
|
+
symbolAvoidEdges: StyleType.Constant,
|
|
58
|
+
symbolSortKey: StyleType.Constant,
|
|
59
|
+
symbolZOrder: StyleType.Enum,
|
|
60
|
+
iconAllowOverlap: StyleType.Constant,
|
|
61
|
+
iconOverlap: StyleType.Enum,
|
|
62
|
+
iconIgnorePlacement: StyleType.Constant,
|
|
63
|
+
iconOptional: StyleType.Constant,
|
|
64
|
+
iconRotationAlignment: StyleType.Enum,
|
|
65
|
+
iconSize: StyleType.Constant,
|
|
66
|
+
iconTextFit: StyleType.Enum,
|
|
67
|
+
iconTextFitPadding: StyleType.Constant,
|
|
68
|
+
iconImage: StyleType.Image,
|
|
69
|
+
iconRotate: StyleType.Constant,
|
|
70
|
+
iconPadding: StyleType.Constant,
|
|
71
|
+
iconKeepUpright: StyleType.Constant,
|
|
72
|
+
iconOffset: StyleType.Constant,
|
|
73
|
+
iconAnchor: StyleType.Enum,
|
|
74
|
+
iconPitchAlignment: StyleType.Enum,
|
|
75
|
+
textPitchAlignment: StyleType.Enum,
|
|
76
|
+
textRotationAlignment: StyleType.Enum,
|
|
77
|
+
textField: StyleType.Constant,
|
|
78
|
+
textFont: StyleType.Constant,
|
|
79
|
+
textSize: StyleType.Constant,
|
|
80
|
+
textMaxWidth: StyleType.Constant,
|
|
81
|
+
textLineHeight: StyleType.Constant,
|
|
82
|
+
textLetterSpacing: StyleType.Constant,
|
|
83
|
+
textJustify: StyleType.Enum,
|
|
84
|
+
textRadialOffset: StyleType.Constant,
|
|
85
|
+
textVariableAnchor: StyleType.Constant,
|
|
86
|
+
textAnchor: StyleType.Enum,
|
|
87
|
+
textMaxAngle: StyleType.Constant,
|
|
88
|
+
textWritingMode: StyleType.Constant,
|
|
89
|
+
textRotate: StyleType.Constant,
|
|
90
|
+
textPadding: StyleType.Constant,
|
|
91
|
+
textKeepUpright: StyleType.Constant,
|
|
92
|
+
textTransform: StyleType.Enum,
|
|
93
|
+
textOffset: StyleType.Constant,
|
|
94
|
+
textAllowOverlap: StyleType.Constant,
|
|
95
|
+
textOverlap: StyleType.Enum,
|
|
96
|
+
textIgnorePlacement: StyleType.Constant,
|
|
97
|
+
textOptional: StyleType.Constant,
|
|
98
|
+
iconOpacity: StyleType.Constant,
|
|
99
|
+
iconOpacityTransition: StyleType.Transition,
|
|
100
|
+
iconColor: StyleType.Color,
|
|
101
|
+
iconColorTransition: StyleType.Transition,
|
|
102
|
+
iconHaloColor: StyleType.Color,
|
|
103
|
+
iconHaloColorTransition: StyleType.Transition,
|
|
104
|
+
iconHaloWidth: StyleType.Constant,
|
|
105
|
+
iconHaloWidthTransition: StyleType.Transition,
|
|
106
|
+
iconHaloBlur: StyleType.Constant,
|
|
107
|
+
iconHaloBlurTransition: StyleType.Transition,
|
|
108
|
+
iconTranslate: StyleType.Translation,
|
|
109
|
+
iconTranslateTransition: StyleType.Transition,
|
|
110
|
+
iconTranslateAnchor: StyleType.Enum,
|
|
111
|
+
textOpacity: StyleType.Constant,
|
|
112
|
+
textOpacityTransition: StyleType.Transition,
|
|
113
|
+
textColor: StyleType.Color,
|
|
114
|
+
textColorTransition: StyleType.Transition,
|
|
115
|
+
textHaloColor: StyleType.Color,
|
|
116
|
+
textHaloColorTransition: StyleType.Transition,
|
|
117
|
+
textHaloWidth: StyleType.Constant,
|
|
118
|
+
textHaloWidthTransition: StyleType.Transition,
|
|
119
|
+
textHaloBlur: StyleType.Constant,
|
|
120
|
+
textHaloBlurTransition: StyleType.Transition,
|
|
121
|
+
textTranslate: StyleType.Translation,
|
|
122
|
+
textTranslateTransition: StyleType.Transition,
|
|
123
|
+
textTranslateAnchor: StyleType.Enum,
|
|
124
|
+
circleSortKey: StyleType.Constant,
|
|
125
|
+
circleRadius: StyleType.Constant,
|
|
126
|
+
circleRadiusTransition: StyleType.Transition,
|
|
127
|
+
circleColor: StyleType.Color,
|
|
128
|
+
circleColorTransition: StyleType.Transition,
|
|
129
|
+
circleBlur: StyleType.Constant,
|
|
130
|
+
circleBlurTransition: StyleType.Transition,
|
|
131
|
+
circleOpacity: StyleType.Constant,
|
|
132
|
+
circleOpacityTransition: StyleType.Transition,
|
|
133
|
+
circleTranslate: StyleType.Translation,
|
|
134
|
+
circleTranslateTransition: StyleType.Transition,
|
|
135
|
+
circleTranslateAnchor: StyleType.Enum,
|
|
136
|
+
circlePitchScale: StyleType.Enum,
|
|
137
|
+
circlePitchAlignment: StyleType.Enum,
|
|
138
|
+
circleStrokeWidth: StyleType.Constant,
|
|
139
|
+
circleStrokeWidthTransition: StyleType.Transition,
|
|
140
|
+
circleStrokeColor: StyleType.Color,
|
|
141
|
+
circleStrokeColorTransition: StyleType.Transition,
|
|
142
|
+
circleStrokeOpacity: StyleType.Constant,
|
|
143
|
+
circleStrokeOpacityTransition: StyleType.Transition,
|
|
144
|
+
heatmapRadius: StyleType.Constant,
|
|
145
|
+
heatmapRadiusTransition: StyleType.Transition,
|
|
146
|
+
heatmapWeight: StyleType.Constant,
|
|
147
|
+
heatmapIntensity: StyleType.Constant,
|
|
148
|
+
heatmapIntensityTransition: StyleType.Transition,
|
|
149
|
+
heatmapColor: StyleType.Color,
|
|
150
|
+
heatmapOpacity: StyleType.Constant,
|
|
151
|
+
heatmapOpacityTransition: StyleType.Transition,
|
|
152
|
+
fillExtrusionOpacity: StyleType.Constant,
|
|
153
|
+
fillExtrusionOpacityTransition: StyleType.Transition,
|
|
154
|
+
fillExtrusionColor: StyleType.Color,
|
|
155
|
+
fillExtrusionColorTransition: StyleType.Transition,
|
|
156
|
+
fillExtrusionTranslate: StyleType.Translation,
|
|
157
|
+
fillExtrusionTranslateTransition: StyleType.Transition,
|
|
158
|
+
fillExtrusionTranslateAnchor: StyleType.Enum,
|
|
159
|
+
fillExtrusionPattern: StyleType.Image,
|
|
160
|
+
fillExtrusionPatternTransition: StyleType.Transition,
|
|
161
|
+
fillExtrusionHeight: StyleType.Constant,
|
|
162
|
+
fillExtrusionHeightTransition: StyleType.Transition,
|
|
163
|
+
fillExtrusionBase: StyleType.Constant,
|
|
164
|
+
fillExtrusionBaseTransition: StyleType.Transition,
|
|
165
|
+
fillExtrusionVerticalGradient: StyleType.Constant,
|
|
166
|
+
rasterOpacity: StyleType.Constant,
|
|
167
|
+
rasterOpacityTransition: StyleType.Transition,
|
|
168
|
+
rasterHueRotate: StyleType.Constant,
|
|
169
|
+
rasterHueRotateTransition: StyleType.Transition,
|
|
170
|
+
rasterBrightnessMin: StyleType.Constant,
|
|
171
|
+
rasterBrightnessMinTransition: StyleType.Transition,
|
|
172
|
+
rasterBrightnessMax: StyleType.Constant,
|
|
173
|
+
rasterBrightnessMaxTransition: StyleType.Transition,
|
|
174
|
+
rasterSaturation: StyleType.Constant,
|
|
175
|
+
rasterSaturationTransition: StyleType.Transition,
|
|
176
|
+
rasterContrast: StyleType.Constant,
|
|
177
|
+
rasterContrastTransition: StyleType.Transition,
|
|
178
|
+
rasterResampling: StyleType.Enum,
|
|
179
|
+
rasterFadeDuration: StyleType.Constant,
|
|
180
|
+
hillshadeIlluminationDirection: StyleType.Constant,
|
|
181
|
+
hillshadeIlluminationAltitude: StyleType.Constant,
|
|
182
|
+
hillshadeIlluminationAnchor: StyleType.Enum,
|
|
183
|
+
hillshadeExaggeration: StyleType.Constant,
|
|
184
|
+
hillshadeExaggerationTransition: StyleType.Transition,
|
|
185
|
+
hillshadeShadowColor: StyleType.Color,
|
|
186
|
+
hillshadeShadowColorTransition: StyleType.Transition,
|
|
187
|
+
hillshadeHighlightColor: StyleType.Color,
|
|
188
|
+
hillshadeHighlightColorTransition: StyleType.Transition,
|
|
189
|
+
hillshadeAccentColor: StyleType.Color,
|
|
190
|
+
hillshadeAccentColorTransition: StyleType.Transition,
|
|
191
|
+
hillshadeMethod: StyleType.Enum,
|
|
192
|
+
backgroundColor: StyleType.Color,
|
|
193
|
+
backgroundColorTransition: StyleType.Transition,
|
|
194
|
+
backgroundPattern: StyleType.Image,
|
|
195
|
+
backgroundPatternTransition: StyleType.Transition,
|
|
196
|
+
backgroundOpacity: StyleType.Constant,
|
|
197
|
+
backgroundOpacityTransition: StyleType.Transition,
|
|
198
|
+
anchor: StyleType.Enum,
|
|
199
|
+
position: StyleType.Constant,
|
|
200
|
+
positionTransition: StyleType.Transition,
|
|
201
|
+
color: StyleType.Color,
|
|
202
|
+
colorTransition: StyleType.Transition,
|
|
203
|
+
intensity: StyleType.Constant,
|
|
204
|
+
intensityTransition: StyleType.Transition,
|
|
205
|
+
visibility: StyleType.Constant
|
|
206
|
+
};
|
|
207
|
+
const STYLE_OVERRIDES = {
|
|
208
|
+
// padding
|
|
209
|
+
iconTextFitPadding: {
|
|
210
|
+
iosType: "edgeinsets"
|
|
211
|
+
},
|
|
212
|
+
// offsets
|
|
213
|
+
iconOffset: {
|
|
214
|
+
iosType: "vector"
|
|
215
|
+
},
|
|
216
|
+
textOffset: {
|
|
217
|
+
iosType: "vector"
|
|
218
|
+
},
|
|
219
|
+
lineOffset: {
|
|
220
|
+
iosType: "vector"
|
|
221
|
+
},
|
|
222
|
+
// translates
|
|
223
|
+
fillTranslate: {
|
|
224
|
+
iosType: "vector"
|
|
225
|
+
},
|
|
226
|
+
lineTranslate: {
|
|
227
|
+
iosType: "vector"
|
|
228
|
+
},
|
|
229
|
+
iconTranslate: {
|
|
230
|
+
iosType: "vector"
|
|
231
|
+
},
|
|
232
|
+
textTranslate: {
|
|
233
|
+
iosType: "vector"
|
|
234
|
+
},
|
|
235
|
+
circleTranslate: {
|
|
236
|
+
iosType: "vector"
|
|
237
|
+
},
|
|
238
|
+
fillExtrusionTranslate: {
|
|
239
|
+
iosType: "vector"
|
|
240
|
+
}
|
|
241
|
+
};
|
|
242
|
+
export function getStylePropertyType(styleProperty) {
|
|
243
|
+
if (!isAndroid() && STYLE_OVERRIDES[styleProperty]) {
|
|
244
|
+
return STYLE_OVERRIDES[styleProperty].iosType;
|
|
245
|
+
}
|
|
246
|
+
if (STYLE_MAP[styleProperty]) {
|
|
247
|
+
return STYLE_MAP[styleProperty];
|
|
248
|
+
}
|
|
249
|
+
throw new Error(`${styleProperty} is not a valid MapVina layer style`);
|
|
250
|
+
}
|
|
251
|
+
//# sourceMappingURL=getStylePropertyType.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["isAndroid","StyleType","Constant","Color","Transition","Translation","Function","Image","Enum","STYLE_MAP","fillSortKey","fillAntialias","fillOpacity","fillOpacityTransition","fillColor","fillColorTransition","fillOutlineColor","fillOutlineColorTransition","fillTranslate","fillTranslateTransition","fillTranslateAnchor","fillPattern","fillPatternTransition","lineCap","lineJoin","lineMiterLimit","lineRoundLimit","lineSortKey","lineOpacity","lineOpacityTransition","lineColor","lineColorTransition","lineTranslate","lineTranslateTransition","lineTranslateAnchor","lineWidth","lineWidthTransition","lineGapWidth","lineGapWidthTransition","lineOffset","lineOffsetTransition","lineBlur","lineBlurTransition","lineDasharray","lineDasharrayTransition","linePattern","linePatternTransition","lineGradient","symbolPlacement","symbolSpacing","symbolAvoidEdges","symbolSortKey","symbolZOrder","iconAllowOverlap","iconOverlap","iconIgnorePlacement","iconOptional","iconRotationAlignment","iconSize","iconTextFit","iconTextFitPadding","iconImage","iconRotate","iconPadding","iconKeepUpright","iconOffset","iconAnchor","iconPitchAlignment","textPitchAlignment","textRotationAlignment","textField","textFont","textSize","textMaxWidth","textLineHeight","textLetterSpacing","textJustify","textRadialOffset","textVariableAnchor","textAnchor","textMaxAngle","textWritingMode","textRotate","textPadding","textKeepUpright","textTransform","textOffset","textAllowOverlap","textOverlap","textIgnorePlacement","textOptional","iconOpacity","iconOpacityTransition","iconColor","iconColorTransition","iconHaloColor","iconHaloColorTransition","iconHaloWidth","iconHaloWidthTransition","iconHaloBlur","iconHaloBlurTransition","iconTranslate","iconTranslateTransition","iconTranslateAnchor","textOpacity","textOpacityTransition","textColor","textColorTransition","textHaloColor","textHaloColorTransition","textHaloWidth","textHaloWidthTransition","textHaloBlur","textHaloBlurTransition","textTranslate","textTranslateTransition","textTranslateAnchor","circleSortKey","circleRadius","circleRadiusTransition","circleColor","circleColorTransition","circleBlur","circleBlurTransition","circleOpacity","circleOpacityTransition","circleTranslate","circleTranslateTransition","circleTranslateAnchor","circlePitchScale","circlePitchAlignment","circleStrokeWidth","circleStrokeWidthTransition","circleStrokeColor","circleStrokeColorTransition","circleStrokeOpacity","circleStrokeOpacityTransition","heatmapRadius","heatmapRadiusTransition","heatmapWeight","heatmapIntensity","heatmapIntensityTransition","heatmapColor","heatmapOpacity","heatmapOpacityTransition","fillExtrusionOpacity","fillExtrusionOpacityTransition","fillExtrusionColor","fillExtrusionColorTransition","fillExtrusionTranslate","fillExtrusionTranslateTransition","fillExtrusionTranslateAnchor","fillExtrusionPattern","fillExtrusionPatternTransition","fillExtrusionHeight","fillExtrusionHeightTransition","fillExtrusionBase","fillExtrusionBaseTransition","fillExtrusionVerticalGradient","rasterOpacity","rasterOpacityTransition","rasterHueRotate","rasterHueRotateTransition","rasterBrightnessMin","rasterBrightnessMinTransition","rasterBrightnessMax","rasterBrightnessMaxTransition","rasterSaturation","rasterSaturationTransition","rasterContrast","rasterContrastTransition","rasterResampling","rasterFadeDuration","hillshadeIlluminationDirection","hillshadeIlluminationAltitude","hillshadeIlluminationAnchor","hillshadeExaggeration","hillshadeExaggerationTransition","hillshadeShadowColor","hillshadeShadowColorTransition","hillshadeHighlightColor","hillshadeHighlightColorTransition","hillshadeAccentColor","hillshadeAccentColorTransition","hillshadeMethod","backgroundColor","backgroundColorTransition","backgroundPattern","backgroundPatternTransition","backgroundOpacity","backgroundOpacityTransition","anchor","position","positionTransition","color","colorTransition","intensity","intensityTransition","visibility","STYLE_OVERRIDES","iosType","getStylePropertyType","styleProperty","Error"],"sourceRoot":"../../../src","sources":["utils/getStylePropertyType.ts"],"mappings":";;AAAA;AACA;;AAEA,SAASA,SAAS,QAAQ,YAAS;AAEnC,MAAMC,SAAS,GAAG;EAChBC,QAAQ,EAAE,UAAU;EACpBC,KAAK,EAAE,OAAO;EACdC,UAAU,EAAE,YAAY;EACxBC,WAAW,EAAE,aAAa;EAC1BC,QAAQ,EAAE,UAAU;EACpBC,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE;AACR,CAAC;AAED,MAAMC,SAAS,GAAG;EAChBC,WAAW,EAAET,SAAS,CAACC,QAAQ;EAC/BS,aAAa,EAAEV,SAAS,CAACC,QAAQ;EACjCU,WAAW,EAAEX,SAAS,CAACC,QAAQ;EAC/BW,qBAAqB,EAAEZ,SAAS,CAACG,UAAU;EAC3CU,SAAS,EAAEb,SAAS,CAACE,KAAK;EAC1BY,mBAAmB,EAAEd,SAAS,CAACG,UAAU;EACzCY,gBAAgB,EAAEf,SAAS,CAACE,KAAK;EACjCc,0BAA0B,EAAEhB,SAAS,CAACG,UAAU;EAChDc,aAAa,EAAEjB,SAAS,CAACI,WAAW;EACpCc,uBAAuB,EAAElB,SAAS,CAACG,UAAU;EAC7CgB,mBAAmB,EAAEnB,SAAS,CAACO,IAAI;EACnCa,WAAW,EAAEpB,SAAS,CAACM,KAAK;EAC5Be,qBAAqB,EAAErB,SAAS,CAACG,UAAU;EAE3CmB,OAAO,EAAEtB,SAAS,CAACO,IAAI;EACvBgB,QAAQ,EAAEvB,SAAS,CAACO,IAAI;EACxBiB,cAAc,EAAExB,SAAS,CAACC,QAAQ;EAClCwB,cAAc,EAAEzB,SAAS,CAACC,QAAQ;EAClCyB,WAAW,EAAE1B,SAAS,CAACC,QAAQ;EAC/B0B,WAAW,EAAE3B,SAAS,CAACC,QAAQ;EAC/B2B,qBAAqB,EAAE5B,SAAS,CAACG,UAAU;EAC3C0B,SAAS,EAAE7B,SAAS,CAACE,KAAK;EAC1B4B,mBAAmB,EAAE9B,SAAS,CAACG,UAAU;EACzC4B,aAAa,EAAE/B,SAAS,CAACI,WAAW;EACpC4B,uBAAuB,EAAEhC,SAAS,CAACG,UAAU;EAC7C8B,mBAAmB,EAAEjC,SAAS,CAACO,IAAI;EACnC2B,SAAS,EAAElC,SAAS,CAACC,QAAQ;EAC7BkC,mBAAmB,EAAEnC,SAAS,CAACG,UAAU;EACzCiC,YAAY,EAAEpC,SAAS,CAACC,QAAQ;EAChCoC,sBAAsB,EAAErC,SAAS,CAACG,UAAU;EAC5CmC,UAAU,EAAEtC,SAAS,CAACC,QAAQ;EAC9BsC,oBAAoB,EAAEvC,SAAS,CAACG,UAAU;EAC1CqC,QAAQ,EAAExC,SAAS,CAACC,QAAQ;EAC5BwC,kBAAkB,EAAEzC,SAAS,CAACG,UAAU;EACxCuC,aAAa,EAAE1C,SAAS,CAACC,QAAQ;EACjC0C,uBAAuB,EAAE3C,SAAS,CAACG,UAAU;EAC7CyC,WAAW,EAAE5C,SAAS,CAACM,KAAK;EAC5BuC,qBAAqB,EAAE7C,SAAS,CAACG,UAAU;EAC3C2C,YAAY,EAAE9C,SAAS,CAACE,KAAK;EAE7B6C,eAAe,EAAE/C,SAAS,CAACO,IAAI;EAC/ByC,aAAa,EAAEhD,SAAS,CAACC,QAAQ;EACjCgD,gBAAgB,EAAEjD,SAAS,CAACC,QAAQ;EACpCiD,aAAa,EAAElD,SAAS,CAACC,QAAQ;EACjCkD,YAAY,EAAEnD,SAAS,CAACO,IAAI;EAC5B6C,gBAAgB,EAAEpD,SAAS,CAACC,QAAQ;EACpCoD,WAAW,EAAErD,SAAS,CAACO,IAAI;EAC3B+C,mBAAmB,EAAEtD,SAAS,CAACC,QAAQ;EACvCsD,YAAY,EAAEvD,SAAS,CAACC,QAAQ;EAChCuD,qBAAqB,EAAExD,SAAS,CAACO,IAAI;EACrCkD,QAAQ,EAAEzD,SAAS,CAACC,QAAQ;EAC5ByD,WAAW,EAAE1D,SAAS,CAACO,IAAI;EAC3BoD,kBAAkB,EAAE3D,SAAS,CAACC,QAAQ;EACtC2D,SAAS,EAAE5D,SAAS,CAACM,KAAK;EAC1BuD,UAAU,EAAE7D,SAAS,CAACC,QAAQ;EAC9B6D,WAAW,EAAE9D,SAAS,CAACC,QAAQ;EAC/B8D,eAAe,EAAE/D,SAAS,CAACC,QAAQ;EACnC+D,UAAU,EAAEhE,SAAS,CAACC,QAAQ;EAC9BgE,UAAU,EAAEjE,SAAS,CAACO,IAAI;EAC1B2D,kBAAkB,EAAElE,SAAS,CAACO,IAAI;EAClC4D,kBAAkB,EAAEnE,SAAS,CAACO,IAAI;EAClC6D,qBAAqB,EAAEpE,SAAS,CAACO,IAAI;EACrC8D,SAAS,EAAErE,SAAS,CAACC,QAAQ;EAC7BqE,QAAQ,EAAEtE,SAAS,CAACC,QAAQ;EAC5BsE,QAAQ,EAAEvE,SAAS,CAACC,QAAQ;EAC5BuE,YAAY,EAAExE,SAAS,CAACC,QAAQ;EAChCwE,cAAc,EAAEzE,SAAS,CAACC,QAAQ;EAClCyE,iBAAiB,EAAE1E,SAAS,CAACC,QAAQ;EACrC0E,WAAW,EAAE3E,SAAS,CAACO,IAAI;EAC3BqE,gBAAgB,EAAE5E,SAAS,CAACC,QAAQ;EACpC4E,kBAAkB,EAAE7E,SAAS,CAACC,QAAQ;EACtC6E,UAAU,EAAE9E,SAAS,CAACO,IAAI;EAC1BwE,YAAY,EAAE/E,SAAS,CAACC,QAAQ;EAChC+E,eAAe,EAAEhF,SAAS,CAACC,QAAQ;EACnCgF,UAAU,EAAEjF,SAAS,CAACC,QAAQ;EAC9BiF,WAAW,EAAElF,SAAS,CAACC,QAAQ;EAC/BkF,eAAe,EAAEnF,SAAS,CAACC,QAAQ;EACnCmF,aAAa,EAAEpF,SAAS,CAACO,IAAI;EAC7B8E,UAAU,EAAErF,SAAS,CAACC,QAAQ;EAC9BqF,gBAAgB,EAAEtF,SAAS,CAACC,QAAQ;EACpCsF,WAAW,EAAEvF,SAAS,CAACO,IAAI;EAC3BiF,mBAAmB,EAAExF,SAAS,CAACC,QAAQ;EACvCwF,YAAY,EAAEzF,SAAS,CAACC,QAAQ;EAChCyF,WAAW,EAAE1F,SAAS,CAACC,QAAQ;EAC/B0F,qBAAqB,EAAE3F,SAAS,CAACG,UAAU;EAC3CyF,SAAS,EAAE5F,SAAS,CAACE,KAAK;EAC1B2F,mBAAmB,EAAE7F,SAAS,CAACG,UAAU;EACzC2F,aAAa,EAAE9F,SAAS,CAACE,KAAK;EAC9B6F,uBAAuB,EAAE/F,SAAS,CAACG,UAAU;EAC7C6F,aAAa,EAAEhG,SAAS,CAACC,QAAQ;EACjCgG,uBAAuB,EAAEjG,SAAS,CAACG,UAAU;EAC7C+F,YAAY,EAAElG,SAAS,CAACC,QAAQ;EAChCkG,sBAAsB,EAAEnG,SAAS,CAACG,UAAU;EAC5CiG,aAAa,EAAEpG,SAAS,CAACI,WAAW;EACpCiG,uBAAuB,EAAErG,SAAS,CAACG,UAAU;EAC7CmG,mBAAmB,EAAEtG,SAAS,CAACO,IAAI;EACnCgG,WAAW,EAAEvG,SAAS,CAACC,QAAQ;EAC/BuG,qBAAqB,EAAExG,SAAS,CAACG,UAAU;EAC3CsG,SAAS,EAAEzG,SAAS,CAACE,KAAK;EAC1BwG,mBAAmB,EAAE1G,SAAS,CAACG,UAAU;EACzCwG,aAAa,EAAE3G,SAAS,CAACE,KAAK;EAC9B0G,uBAAuB,EAAE5G,SAAS,CAACG,UAAU;EAC7C0G,aAAa,EAAE7G,SAAS,CAACC,QAAQ;EACjC6G,uBAAuB,EAAE9G,SAAS,CAACG,UAAU;EAC7C4G,YAAY,EAAE/G,SAAS,CAACC,QAAQ;EAChC+G,sBAAsB,EAAEhH,SAAS,CAACG,UAAU;EAC5C8G,aAAa,EAAEjH,SAAS,CAACI,WAAW;EACpC8G,uBAAuB,EAAElH,SAAS,CAACG,UAAU;EAC7CgH,mBAAmB,EAAEnH,SAAS,CAACO,IAAI;EAEnC6G,aAAa,EAAEpH,SAAS,CAACC,QAAQ;EACjCoH,YAAY,EAAErH,SAAS,CAACC,QAAQ;EAChCqH,sBAAsB,EAAEtH,SAAS,CAACG,UAAU;EAC5CoH,WAAW,EAAEvH,SAAS,CAACE,KAAK;EAC5BsH,qBAAqB,EAAExH,SAAS,CAACG,UAAU;EAC3CsH,UAAU,EAAEzH,SAAS,CAACC,QAAQ;EAC9ByH,oBAAoB,EAAE1H,SAAS,CAACG,UAAU;EAC1CwH,aAAa,EAAE3H,SAAS,CAACC,QAAQ;EACjC2H,uBAAuB,EAAE5H,SAAS,CAACG,UAAU;EAC7C0H,eAAe,EAAE7H,SAAS,CAACI,WAAW;EACtC0H,yBAAyB,EAAE9H,SAAS,CAACG,UAAU;EAC/C4H,qBAAqB,EAAE/H,SAAS,CAACO,IAAI;EACrCyH,gBAAgB,EAAEhI,SAAS,CAACO,IAAI;EAChC0H,oBAAoB,EAAEjI,SAAS,CAACO,IAAI;EACpC2H,iBAAiB,EAAElI,SAAS,CAACC,QAAQ;EACrCkI,2BAA2B,EAAEnI,SAAS,CAACG,UAAU;EACjDiI,iBAAiB,EAAEpI,SAAS,CAACE,KAAK;EAClCmI,2BAA2B,EAAErI,SAAS,CAACG,UAAU;EACjDmI,mBAAmB,EAAEtI,SAAS,CAACC,QAAQ;EACvCsI,6BAA6B,EAAEvI,SAAS,CAACG,UAAU;EAEnDqI,aAAa,EAAExI,SAAS,CAACC,QAAQ;EACjCwI,uBAAuB,EAAEzI,SAAS,CAACG,UAAU;EAC7CuI,aAAa,EAAE1I,SAAS,CAACC,QAAQ;EACjC0I,gBAAgB,EAAE3I,SAAS,CAACC,QAAQ;EACpC2I,0BAA0B,EAAE5I,SAAS,CAACG,UAAU;EAChD0I,YAAY,EAAE7I,SAAS,CAACE,KAAK;EAC7B4I,cAAc,EAAE9I,SAAS,CAACC,QAAQ;EAClC8I,wBAAwB,EAAE/I,SAAS,CAACG,UAAU;EAE9C6I,oBAAoB,EAAEhJ,SAAS,CAACC,QAAQ;EACxCgJ,8BAA8B,EAAEjJ,SAAS,CAACG,UAAU;EACpD+I,kBAAkB,EAAElJ,SAAS,CAACE,KAAK;EACnCiJ,4BAA4B,EAAEnJ,SAAS,CAACG,UAAU;EAClDiJ,sBAAsB,EAAEpJ,SAAS,CAACI,WAAW;EAC7CiJ,gCAAgC,EAAErJ,SAAS,CAACG,UAAU;EACtDmJ,4BAA4B,EAAEtJ,SAAS,CAACO,IAAI;EAC5CgJ,oBAAoB,EAAEvJ,SAAS,CAACM,KAAK;EACrCkJ,8BAA8B,EAAExJ,SAAS,CAACG,UAAU;EACpDsJ,mBAAmB,EAAEzJ,SAAS,CAACC,QAAQ;EACvCyJ,6BAA6B,EAAE1J,SAAS,CAACG,UAAU;EACnDwJ,iBAAiB,EAAE3J,SAAS,CAACC,QAAQ;EACrC2J,2BAA2B,EAAE5J,SAAS,CAACG,UAAU;EACjD0J,6BAA6B,EAAE7J,SAAS,CAACC,QAAQ;EAEjD6J,aAAa,EAAE9J,SAAS,CAACC,QAAQ;EACjC8J,uBAAuB,EAAE/J,SAAS,CAACG,UAAU;EAC7C6J,eAAe,EAAEhK,SAAS,CAACC,QAAQ;EACnCgK,yBAAyB,EAAEjK,SAAS,CAACG,UAAU;EAC/C+J,mBAAmB,EAAElK,SAAS,CAACC,QAAQ;EACvCkK,6BAA6B,EAAEnK,SAAS,CAACG,UAAU;EACnDiK,mBAAmB,EAAEpK,SAAS,CAACC,QAAQ;EACvCoK,6BAA6B,EAAErK,SAAS,CAACG,UAAU;EACnDmK,gBAAgB,EAAEtK,SAAS,CAACC,QAAQ;EACpCsK,0BAA0B,EAAEvK,SAAS,CAACG,UAAU;EAChDqK,cAAc,EAAExK,SAAS,CAACC,QAAQ;EAClCwK,wBAAwB,EAAEzK,SAAS,CAACG,UAAU;EAC9CuK,gBAAgB,EAAE1K,SAAS,CAACO,IAAI;EAChCoK,kBAAkB,EAAE3K,SAAS,CAACC,QAAQ;EAEtC2K,8BAA8B,EAAE5K,SAAS,CAACC,QAAQ;EAClD4K,6BAA6B,EAAE7K,SAAS,CAACC,QAAQ;EACjD6K,2BAA2B,EAAE9K,SAAS,CAACO,IAAI;EAC3CwK,qBAAqB,EAAE/K,SAAS,CAACC,QAAQ;EACzC+K,+BAA+B,EAAEhL,SAAS,CAACG,UAAU;EACrD8K,oBAAoB,EAAEjL,SAAS,CAACE,KAAK;EACrCgL,8BAA8B,EAAElL,SAAS,CAACG,UAAU;EACpDgL,uBAAuB,EAAEnL,SAAS,CAACE,KAAK;EACxCkL,iCAAiC,EAAEpL,SAAS,CAACG,UAAU;EACvDkL,oBAAoB,EAAErL,SAAS,CAACE,KAAK;EACrCoL,8BAA8B,EAAEtL,SAAS,CAACG,UAAU;EACpDoL,eAAe,EAAEvL,SAAS,CAACO,IAAI;EAE/BiL,eAAe,EAAExL,SAAS,CAACE,KAAK;EAChCuL,yBAAyB,EAAEzL,SAAS,CAACG,UAAU;EAC/CuL,iBAAiB,EAAE1L,SAAS,CAACM,KAAK;EAClCqL,2BAA2B,EAAE3L,SAAS,CAACG,UAAU;EACjDyL,iBAAiB,EAAE5L,SAAS,CAACC,QAAQ;EACrC4L,2BAA2B,EAAE7L,SAAS,CAACG,UAAU;EAEjD2L,MAAM,EAAE9L,SAAS,CAACO,IAAI;EACtBwL,QAAQ,EAAE/L,SAAS,CAACC,QAAQ;EAC5B+L,kBAAkB,EAAEhM,SAAS,CAACG,UAAU;EACxC8L,KAAK,EAAEjM,SAAS,CAACE,KAAK;EACtBgM,eAAe,EAAElM,SAAS,CAACG,UAAU;EACrCgM,SAAS,EAAEnM,SAAS,CAACC,QAAQ;EAC7BmM,mBAAmB,EAAEpM,SAAS,CAACG,UAAU;EAEzCkM,UAAU,EAAErM,SAAS,CAACC;AACxB,CAAC;AAED,MAAMqM,eAAe,GAAG;EACtB;EACA3I,kBAAkB,EAAE;IAClB4I,OAAO,EAAE;EACX,CAAC;EAED;EACAvI,UAAU,EAAE;IACVuI,OAAO,EAAE;EACX,CAAC;EACDlH,UAAU,EAAE;IACVkH,OAAO,EAAE;EACX,CAAC;EACDjK,UAAU,EAAE;IACViK,OAAO,EAAE;EACX,CAAC;EAED;EACAtL,aAAa,EAAE;IACbsL,OAAO,EAAE;EACX,CAAC;EACDxK,aAAa,EAAE;IACbwK,OAAO,EAAE;EACX,CAAC;EACDnG,aAAa,EAAE;IACbmG,OAAO,EAAE;EACX,CAAC;EACDtF,aAAa,EAAE;IACbsF,OAAO,EAAE;EACX,CAAC;EACD1E,eAAe,EAAE;IACf0E,OAAO,EAAE;EACX,CAAC;EACDnD,sBAAsB,EAAE;IACtBmD,OAAO,EAAE;EACX;AACF,CAAC;AAED,OAAO,SAASC,oBAAoBA,CAClCC,aAA2C,EACnC;EACR,IAAI,CAAC1M,SAAS,CAAC,CAAC,IAAIuM,eAAe,CAACG,aAAa,CAAC,EAAE;IAClD,OAAOH,eAAe,CAACG,aAAa,CAAC,CAACF,OAAO;EAC/C;EAEA,IAAI/L,SAAS,CAACiM,aAAa,CAAC,EAAE;IAC5B,OAAOjM,SAAS,CAACiM,aAAa,CAAC;EACjC;EAEA,MAAM,IAAIC,KAAK,CAAC,GAAGD,aAAa,qCAAqC,CAAC;AACxE","ignoreList":[]}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { Children, cloneElement } from "react";
|
|
4
|
+
import { Image, NativeModules, findNodeHandle, Platform, UIManager } from "react-native";
|
|
5
|
+
export function isAndroid() {
|
|
6
|
+
return Platform.OS === "android";
|
|
7
|
+
}
|
|
8
|
+
export function isFunction(fn) {
|
|
9
|
+
return typeof fn === "function";
|
|
10
|
+
}
|
|
11
|
+
export function isNumber(num) {
|
|
12
|
+
return typeof num === "number" && !Number.isNaN(num);
|
|
13
|
+
}
|
|
14
|
+
export function isUndefined(obj) {
|
|
15
|
+
return typeof obj === "undefined";
|
|
16
|
+
}
|
|
17
|
+
export function isString(str) {
|
|
18
|
+
return typeof str === "string";
|
|
19
|
+
}
|
|
20
|
+
export function isBoolean(bool) {
|
|
21
|
+
return typeof bool === "boolean";
|
|
22
|
+
}
|
|
23
|
+
export function runNativeCommand(module, name, nativeRef, args = []) {
|
|
24
|
+
const handle = findNodeHandle(nativeRef);
|
|
25
|
+
if (!handle) {
|
|
26
|
+
throw new Error(`Could not find handle for native ref ${module}.${name}`);
|
|
27
|
+
}
|
|
28
|
+
const managerInstance = isAndroid() ? UIManager.getViewManagerConfig(module) : NativeModules[module];
|
|
29
|
+
if (!managerInstance) {
|
|
30
|
+
throw new Error(`Could not find ${module}`);
|
|
31
|
+
}
|
|
32
|
+
if (isAndroid()) {
|
|
33
|
+
UIManager.dispatchViewManagerCommand(handle, managerInstance.Commands[name], args);
|
|
34
|
+
|
|
35
|
+
// Android uses callback instead of return
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
return managerInstance[name](handle, ...args);
|
|
39
|
+
}
|
|
40
|
+
export function cloneReactChildrenWithProps(children, propsToAdd = {}) {
|
|
41
|
+
if (!children) {
|
|
42
|
+
return null;
|
|
43
|
+
}
|
|
44
|
+
const foundChildren = Array.isArray(children) ? children : [children];
|
|
45
|
+
const filteredChildren = foundChildren.filter(child => !!child);
|
|
46
|
+
return Children.map(filteredChildren, child => /*#__PURE__*/cloneElement(child, propsToAdd));
|
|
47
|
+
}
|
|
48
|
+
export function resolveImagePath(imageRef) {
|
|
49
|
+
const res = Image.resolveAssetSource(imageRef);
|
|
50
|
+
return res.uri;
|
|
51
|
+
}
|
|
52
|
+
export function toJSONString(json = "") {
|
|
53
|
+
return JSON.stringify(json);
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Children","cloneElement","Image","NativeModules","findNodeHandle","Platform","UIManager","isAndroid","OS","isFunction","fn","isNumber","num","Number","isNaN","isUndefined","obj","isString","str","isBoolean","bool","runNativeCommand","module","name","nativeRef","args","handle","Error","managerInstance","getViewManagerConfig","dispatchViewManagerCommand","Commands","cloneReactChildrenWithProps","children","propsToAdd","foundChildren","Array","isArray","filteredChildren","filter","child","map","resolveImagePath","imageRef","res","resolveAssetSource","uri","toJSONString","json","JSON","stringify"],"sourceRoot":"../../../src","sources":["utils/index.ts"],"mappings":";;AAAA,SACEA,QAAQ,EACRC,YAAY,QAIP,OAAO;AACd,SACEC,KAAK,EACLC,aAAa,EACbC,cAAc,EACdC,QAAQ,EAERC,SAAS,QACJ,cAAc;AAErB,OAAO,SAASC,SAASA,CAAA,EAAY;EACnC,OAAOF,QAAQ,CAACG,EAAE,KAAK,SAAS;AAClC;AAEA,OAAO,SAASC,UAAUA,CAACC,EAAW,EAAkB;EACtD,OAAO,OAAOA,EAAE,KAAK,UAAU;AACjC;AAEA,OAAO,SAASC,QAAQA,CAACC,GAAY,EAAiB;EACpD,OAAO,OAAOA,GAAG,KAAK,QAAQ,IAAI,CAACC,MAAM,CAACC,KAAK,CAACF,GAAG,CAAC;AACtD;AAEA,OAAO,SAASG,WAAWA,CAACC,GAAY,EAAoB;EAC1D,OAAO,OAAOA,GAAG,KAAK,WAAW;AACnC;AAEA,OAAO,SAASC,QAAQA,CAACC,GAAY,EAAiB;EACpD,OAAO,OAAOA,GAAG,KAAK,QAAQ;AAChC;AAEA,OAAO,SAASC,SAASA,CAACC,IAAa,EAAmB;EACxD,OAAO,OAAOA,IAAI,KAAK,SAAS;AAClC;AAUA,OAAO,SAASC,gBAAgBA,CAC9BC,MAAc,EACdC,IAAY,EACZC,SAAoB,EACpBC,IAAiB,GAAG,EAAE,EACV;EACZ,MAAMC,MAAM,GAAGtB,cAAc,CAACoB,SAAS,CAAC;EACxC,IAAI,CAACE,MAAM,EAAE;IACX,MAAM,IAAIC,KAAK,CAAC,wCAAwCL,MAAM,IAAIC,IAAI,EAAE,CAAC;EAC3E;EAEA,MAAMK,eAAe,GAAGrB,SAAS,CAAC,CAAC,GAC/BD,SAAS,CAACuB,oBAAoB,CAACP,MAAM,CAAC,GACtCnB,aAAa,CAACmB,MAAM,CAAC;EAEzB,IAAI,CAACM,eAAe,EAAE;IACpB,MAAM,IAAID,KAAK,CAAC,kBAAkBL,MAAM,EAAE,CAAC;EAC7C;EAEA,IAAIf,SAAS,CAAC,CAAC,EAAE;IACfD,SAAS,CAACwB,0BAA0B,CAClCJ,MAAM,EACNE,eAAe,CAACG,QAAQ,CAACR,IAAI,CAAC,EAC9BE,IACF,CAAC;;IAED;IACA,OAAO,IAAI;EACb;EAEA,OAAOG,eAAe,CAACL,IAAI,CAAC,CAACG,MAAM,EAAE,GAAGD,IAAI,CAAC;AAC/C;AAEA,OAAO,SAASO,2BAA2BA,CACzCC,QAAmB,EACnBC,UAAqC,GAAG,CAAC,CAAC,EACnB;EACvB,IAAI,CAACD,QAAQ,EAAE;IACb,OAAO,IAAI;EACb;EAEA,MAAME,aAAa,GAAGC,KAAK,CAACC,OAAO,CAACJ,QAAQ,CAAC,GAAGA,QAAQ,GAAG,CAACA,QAAQ,CAAC;EACrE,MAAMK,gBAAgB,GAAGH,aAAa,CAACI,MAAM,CAAEC,KAAK,IAAK,CAAC,CAACA,KAAK,CAAC;EAEjE,OAAOxC,QAAQ,CAACyC,GAAG,CAACH,gBAAgB,EAAGE,KAAK,iBAC1CvC,YAAY,CAACuC,KAAK,EAAEN,UAAU,CAChC,CAAC;AACH;AAEA,OAAO,SAASQ,gBAAgBA,CAACC,QAA6B,EAAU;EACtE,MAAMC,GAAG,GAAG1C,KAAK,CAAC2C,kBAAkB,CAACF,QAAQ,CAAC;EAC9C,OAAOC,GAAG,CAACE,GAAG;AAChB;AAEA,OAAO,SAASC,YAAYA,CAACC,IAAqB,GAAG,EAAE,EAAU;EAC/D,OAAOC,IAAI,CAACC,SAAS,CAACF,IAAI,CAAC;AAC7B","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { type ReactNode } from "react";
|
|
2
|
+
import { type NativeSyntheticEvent } from "react-native";
|
|
3
|
+
import type { BaseProps } from "../../types/BaseProps";
|
|
4
|
+
import type { LngLat } from "../../types/LngLat";
|
|
5
|
+
import type { PressEventWithFeatures } from "../../types/PressEventWithFeatures";
|
|
6
|
+
export interface LayerAnnotationProps extends BaseProps {
|
|
7
|
+
id?: string;
|
|
8
|
+
lngLat: LngLat;
|
|
9
|
+
animated?: boolean;
|
|
10
|
+
animationDuration?: number;
|
|
11
|
+
animationEasingFunction?: (x: number) => number;
|
|
12
|
+
onPress?: (event: NativeSyntheticEvent<PressEventWithFeatures>) => void;
|
|
13
|
+
children?: ReactNode;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Convenience wrapper around a GeoJSONSource for a Point/LngLat, optionally
|
|
17
|
+
* animated.
|
|
18
|
+
*/
|
|
19
|
+
export declare const LayerAnnotation: ({ lngLat, animated, animationDuration, animationEasingFunction, ...props }: LayerAnnotationProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
//# sourceMappingURL=LayerAnnotation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LayerAnnotation.d.ts","sourceRoot":"","sources":["../../../../../src/components/annotations/LayerAnnotation.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAuB,MAAM,OAAO,CAAC;AAC5D,OAAO,EAGL,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAIjF,MAAM,WAAW,oBAAqB,SAAQ,SAAS;IACrD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,uBAAuB,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,CAAC;IAChD,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,CAAC,sBAAsB,CAAC,KAAK,IAAI,CAAC;IACxE,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAOD;;;GAGG;AACH,eAAO,MAAM,eAAe,GAAI,4EAM7B,oBAAoB,4CAmCtB,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type ViewProps, type ViewStyle } from "react-native";
|
|
2
|
+
export interface CalloutProps extends Omit<ViewProps, "style"> {
|
|
3
|
+
/**
|
|
4
|
+
* String that gets displayed in the default callout.
|
|
5
|
+
*/
|
|
6
|
+
title?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Style property for the CalloutNativeComponent.
|
|
9
|
+
*
|
|
10
|
+
* Use at your own risk.
|
|
11
|
+
*/
|
|
12
|
+
style?: ViewStyle;
|
|
13
|
+
/**
|
|
14
|
+
* Style property for the Animated.View wrapper, apply animations to this
|
|
15
|
+
*/
|
|
16
|
+
animatedStyle?: ViewStyle;
|
|
17
|
+
/**
|
|
18
|
+
* Style property for the content bubble.
|
|
19
|
+
*/
|
|
20
|
+
contentStyle?: ViewStyle;
|
|
21
|
+
/**
|
|
22
|
+
* Style property for the triangle tip under the content.
|
|
23
|
+
*/
|
|
24
|
+
tipStyle?: ViewStyle;
|
|
25
|
+
/**
|
|
26
|
+
* Style property for the title in the content bubble.
|
|
27
|
+
*/
|
|
28
|
+
titleStyle?: ViewStyle;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Callout that displays information about a selected annotation near the
|
|
32
|
+
* annotation.
|
|
33
|
+
*/
|
|
34
|
+
export declare const Callout: ({ title, style, animatedStyle, contentStyle, tipStyle, titleStyle, children, testID, ...props }: CalloutProps) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
//# sourceMappingURL=Callout.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Callout.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/callout/Callout.tsx"],"names":[],"mappings":"AACA,OAAO,EAKL,KAAK,SAAS,EACd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAwCtB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC;IAC5D;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;;OAIG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB;;OAEG;IACH,aAAa,CAAC,EAAE,SAAS,CAAC;IAE1B;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IAEzB;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;IAErB;;OAEG;IACH,UAAU,CAAC,EAAE,SAAS,CAAC;CACxB;AAED;;;GAGG;AACH,eAAO,MAAM,OAAO,GAAI,iGAUrB,YAAY,4CAiDd,CAAC"}
|
package/lib/typescript/commonjs/components/annotations/callout/CalloutNativeComponent.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CalloutNativeComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/callout/CalloutNativeComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,aAAa,EAClB,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAEtB,MAAM,WAAW,WAAY,SAAQ,SAAS;CAAG;wBAI5C,aAAa,CAAC,WAAW,CAAC;AAF/B,wBAEgC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { Component, type ComponentProps, type ReactElement, type Ref } from "react";
|
|
2
|
+
import { type NativeSyntheticEvent, type ReactNativeElement, type ViewProps } from "react-native";
|
|
3
|
+
import MarkerViewNativeComponent from "./MarkerViewNativeComponent";
|
|
4
|
+
import { type Anchor } from "../../../types/Anchor";
|
|
5
|
+
import type { LngLat } from "../../../types/LngLat";
|
|
6
|
+
import type { PixelPoint } from "../../../types/PixelPoint";
|
|
7
|
+
import type { PressEvent } from "../../../types/PressEvent";
|
|
8
|
+
export type NativeMarkerRef = Component<ComponentProps<typeof MarkerViewNativeComponent>> & ReactNativeElement;
|
|
9
|
+
/**
|
|
10
|
+
* Event emitted by a Marker on press.
|
|
11
|
+
*/
|
|
12
|
+
export type MarkerEvent = PressEvent & {
|
|
13
|
+
id: string;
|
|
14
|
+
};
|
|
15
|
+
export interface MarkerRef {
|
|
16
|
+
/**
|
|
17
|
+
* Returns the native ref for Reanimated v4 compatibility.
|
|
18
|
+
*/
|
|
19
|
+
getAnimatableRef(): NativeMarkerRef | null;
|
|
20
|
+
}
|
|
21
|
+
export interface MarkerProps extends ViewProps {
|
|
22
|
+
/**
|
|
23
|
+
* A string that uniquely identifies the marker.
|
|
24
|
+
*/
|
|
25
|
+
id?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The center point (specified as a map coordinate) of the marker. See also
|
|
28
|
+
* #anchor.
|
|
29
|
+
*/
|
|
30
|
+
lngLat: LngLat;
|
|
31
|
+
/**
|
|
32
|
+
* Specifies the anchor being set on a particular point of the annotation. The
|
|
33
|
+
* anchor indicates which part of the marker should be placed closest to the
|
|
34
|
+
* coordinate.
|
|
35
|
+
*
|
|
36
|
+
* @see {@link https://mapvina.com/mapvina-gl-js/docs/API/type-aliases/PositionAnchor/}
|
|
37
|
+
* @defaultValue "center"
|
|
38
|
+
*/
|
|
39
|
+
anchor?: Anchor;
|
|
40
|
+
/**
|
|
41
|
+
* The offset in pixels to apply relative to the anchor. Negative values
|
|
42
|
+
* indicate left and up.
|
|
43
|
+
*
|
|
44
|
+
* @see {@link https://mapvina.com/mapvina-gl-js/docs/API/type-aliases/MarkerOptions/#offset}
|
|
45
|
+
* @defaultValue [0, 0]
|
|
46
|
+
*/
|
|
47
|
+
offset?: PixelPoint;
|
|
48
|
+
/**
|
|
49
|
+
* Manually selects/deselects the marker.
|
|
50
|
+
*
|
|
51
|
+
* @platform iOS
|
|
52
|
+
*/
|
|
53
|
+
selected?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* This callback is fired when the marker is pressed.
|
|
56
|
+
*/
|
|
57
|
+
onPress?: (event: NativeSyntheticEvent<MarkerEvent>) => void;
|
|
58
|
+
/**
|
|
59
|
+
* Expects one child - can be a View with multiple elements.
|
|
60
|
+
*/
|
|
61
|
+
children: ReactElement;
|
|
62
|
+
/**
|
|
63
|
+
* Ref to access Marker methods.
|
|
64
|
+
*/
|
|
65
|
+
ref?: Ref<MarkerRef>;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Marker allows you to place an interactive React Native View on the map.
|
|
69
|
+
*
|
|
70
|
+
* If you have static view consider using ViewAnnotation or SymbolLayer for
|
|
71
|
+
* better performance.
|
|
72
|
+
*
|
|
73
|
+
* Implemented through:
|
|
74
|
+
* - Android: Native Views placed on the map projection
|
|
75
|
+
* - iOS:
|
|
76
|
+
* [MLNPointAnnotation](https://mapvina.com/mapvina-native/ios/latest/documentation/mapvina/mlnpointannotation/)
|
|
77
|
+
*/
|
|
78
|
+
export declare const Marker: ({ id, anchor, offset, ref, ...props }: MarkerProps) => import("react/jsx-runtime").JSX.Element;
|
|
79
|
+
//# sourceMappingURL=Marker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Marker.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/marker/Marker.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,KAAK,cAAc,EACnB,KAAK,YAAY,EACjB,KAAK,GAAG,EAGT,MAAM,OAAO,CAAC;AACf,OAAO,EACL,KAAK,oBAAoB,EAEzB,KAAK,kBAAkB,EAEvB,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAEtB,OAAO,yBAAyB,MAAM,6BAA6B,CAAC;AAEpE,OAAO,EAAE,KAAK,MAAM,EAAkB,MAAM,uBAAuB,CAAC;AACpE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAM5D,MAAM,MAAM,eAAe,GAAG,SAAS,CACrC,cAAc,CAAC,OAAO,yBAAyB,CAAC,CACjD,GACC,kBAAkB,CAAC;AAErB;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG;IACrC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,MAAM,WAAW,SAAS;IACxB;;OAEG;IACH,gBAAgB,IAAI,eAAe,GAAG,IAAI,CAAC;CAC5C;AAED,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;;;;;;OAOG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,UAAU,CAAC;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;IAE7D;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC;IAEvB;;OAEG;IACH,GAAG,CAAC,EAAE,GAAG,CAAC,SAAS,CAAC,CAAC;CACtB;AAED;;;;;;;;;;GAUG;AACH,eAAO,MAAM,MAAM,GAAI,uCAMpB,WAAW,4CA0Db,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type CodegenTypes, type HostComponent, type ViewProps } from "react-native";
|
|
2
|
+
import type { UnsafeMixed } from "../../../types/codegen/UnsafeMixed";
|
|
3
|
+
type NativeAnchor = {
|
|
4
|
+
x?: CodegenTypes.WithDefault<CodegenTypes.Double, 0.5>;
|
|
5
|
+
y?: CodegenTypes.WithDefault<CodegenTypes.Double, 0.5>;
|
|
6
|
+
};
|
|
7
|
+
type NativeOffset = {
|
|
8
|
+
x: CodegenTypes.Double;
|
|
9
|
+
y: CodegenTypes.Double;
|
|
10
|
+
};
|
|
11
|
+
type NativeMarkerPressEvent = {
|
|
12
|
+
id: string;
|
|
13
|
+
lngLat: UnsafeMixed<[
|
|
14
|
+
longitude: CodegenTypes.Double,
|
|
15
|
+
latitude: CodegenTypes.Double
|
|
16
|
+
]>;
|
|
17
|
+
point: UnsafeMixed<[x: CodegenTypes.Double, y: CodegenTypes.Double]>;
|
|
18
|
+
};
|
|
19
|
+
export interface NativeProps extends ViewProps {
|
|
20
|
+
id: string;
|
|
21
|
+
lngLat: UnsafeMixed<[
|
|
22
|
+
longitude: CodegenTypes.Double,
|
|
23
|
+
latitude: CodegenTypes.Double
|
|
24
|
+
]>;
|
|
25
|
+
anchor?: NativeAnchor;
|
|
26
|
+
offset?: NativeOffset;
|
|
27
|
+
onPress?: CodegenTypes.BubblingEventHandler<NativeMarkerPressEvent>;
|
|
28
|
+
}
|
|
29
|
+
declare const _default: HostComponent<NativeProps>;
|
|
30
|
+
export default _default;
|
|
31
|
+
//# sourceMappingURL=MarkerViewNativeComponent.d.ts.map
|
package/lib/typescript/commonjs/components/annotations/marker/MarkerViewNativeComponent.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MarkerViewNativeComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/marker/MarkerViewNativeComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,aAAa,EAClB,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAEtE,KAAK,YAAY,GAAG;IAClB,CAAC,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACvD,CAAC,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CACxD,CAAC;AAEF,KAAK,YAAY,GAAG;IAClB,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC;IACvB,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC;CACxB,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,WAAW,CACjB;QAAC,SAAS,EAAE,YAAY,CAAC,MAAM;QAAE,QAAQ,EAAE,YAAY,CAAC,MAAM;KAAC,CAChE,CAAC;IACF,KAAK,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC;CACtE,CAAC;AAEF,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,WAAW,CACjB;QAAC,SAAS,EAAE,YAAY,CAAC,MAAM;QAAE,QAAQ,EAAE,YAAY,CAAC,MAAM;KAAC,CAChE,CAAC;IACF,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,OAAO,CAAC,EAAE,YAAY,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;CACrE;wBAII,aAAa,CAAC,WAAW,CAAC;AAF/B,wBAEgC"}
|