@maplibre/maplibre-react-native 11.0.0-alpha.2 → 11.0.0-alpha.20
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/MapLibreReactNative.podspec +3 -3
- package/README.md +15 -2
- package/android/build.gradle +3 -6
- package/android/gradle.properties +2 -2
- package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.kt +87 -50
- package/android/src/main/java/org/maplibre/reactnative/components/AbstractEvent.kt +24 -0
- package/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.kt +71 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MLRNCallout.java +11 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MLRNCalloutManager.java +18 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MLRNMarkerView.java +112 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MLRNMarkerViewManager.java +45 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MLRNPointAnnotation.java +361 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MLRNPointAnnotationManager.java +84 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MarkerView.java +23 -0
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/MarkerViewManager.java +69 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.kt +203 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.kt +109 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.kt +60 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCamera.kt +397 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCameraManager.kt +67 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCameraModule.kt +34 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraEasing.kt +24 -0
- package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImages.java +1 -2
- package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImagesManager.java +3 -3
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNBackgroundLayer.java +23 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNBackgroundLayerManager.java +60 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNCircleLayer.java +51 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNCircleLayerManager.java +71 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNFillExtrusionLayer.java +51 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNFillExtrusionLayerManager.java +71 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNFillLayer.java +51 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNFillLayerManager.java +71 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNHeatmapLayer.java +51 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNHeatmapLayerManager.java +71 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNLayer.java +279 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNLineLayer.java +51 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNLineLayerManager.java +71 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNRasterLayer.java +23 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNRasterLayerManager.java +60 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNSymbolLayer.java +51 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/MLRNSymbolLayerManager.java +71 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/style/MLRNStyle.java +76 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/style/MLRNStyleFactory.java +2285 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/style/MLRNStyleFunctionParser.java +94 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layers/style/MLRNStyleValue.java +207 -0
- package/android/src/main/java/org/maplibre/reactnative/components/location/LocationComponentManager.kt +154 -0
- package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocation.kt +70 -0
- package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocationManager.kt +50 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.kt +23 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.kt +23 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.kt +1350 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.kt +193 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewModule.kt +159 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.kt +26 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/LayerSourceInfo.kt +74 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNImageSource.java +75 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNImageSourceManager.java +66 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNRasterSource.java +40 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNRasterSourceManager.java +39 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNShapeSource.java +248 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNShapeSourceManager.java +216 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNSource.java +240 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNTileSource.java +97 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNTileSourceManager.java +80 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNVectorSource.java +60 -0
- package/android/src/main/java/org/maplibre/reactnative/components/sources/MLRNVectorSourceManager.java +80 -0
- package/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java +2 -5
- package/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java +1 -2
- package/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.kt +18 -0
- package/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java +4 -0
- package/android/src/main/java/org/maplibre/reactnative/events/MapPressEvent.kt +27 -0
- package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java +2 -4
- package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationDragEvent.java +2 -4
- package/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java +0 -5
- package/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java +0 -20
- package/android/src/main/java/org/maplibre/reactnative/location/LocationManager.kt +165 -0
- package/android/src/main/java/org/maplibre/reactnative/location/TrackUserLocationMode.kt +42 -0
- package/android/src/main/java/org/maplibre/reactnative/location/TrackUserLocationState.kt +15 -0
- package/android/src/main/java/org/maplibre/reactnative/location/UserLocation.kt +40 -0
- package/android/src/main/java/org/maplibre/reactnative/location/engine/DefaultLocationEngineProvider.kt +18 -0
- package/android/src/main/java/org/maplibre/reactnative/location/engine/LocationEngineProvidable.kt +8 -0
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLocationModule.kt +174 -0
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLogModule.kt +99 -0
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java +2 -55
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.kt +2 -16
- package/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java +2 -9
- package/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java +8 -10
- package/android/src/main/java/org/maplibre/reactnative/utils/DownloadedImage.java +6 -0
- package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.kt +322 -0
- package/android/src/main/java/org/maplibre/reactnative/utils/ImageEntry.java +1 -0
- package/android/src/main/java/org/maplibre/reactnative/utils/ReactTagResolver.kt +85 -0
- package/android/src/main/location-engine-default/org/maplibre/reactnative/location/engine/LocationEngineProvider.kt +10 -0
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/GoogleLocationEngineImpl.kt +131 -0
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/GoogleLocationEngineProvider.kt +28 -0
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/LocationEngineProvider.kt +10 -0
- package/ios/components/annotations/MLRNCallout.h +7 -0
- package/ios/components/annotations/MLRNPointAnnotation.h +33 -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.m +167 -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 +196 -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 +111 -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 +133 -0
- package/ios/components/images/MLRNImages.h +24 -0
- package/ios/components/images/MLRNImages.m +124 -0
- package/ios/components/layers/MLRNLayer.h +42 -0
- package/ios/components/layers/MLRNLayer.m +216 -0
- package/ios/components/layers/style/MLRNStyle.m +1642 -0
- package/ios/components/layers/style/MLRNStyleValue.h +20 -0
- package/ios/components/layers/style/MLRNStyleValue.m +172 -0
- package/ios/components/map-view/MLRNMapTouchEvent.h +18 -0
- package/ios/components/map-view/MLRNMapTouchEvent.m +72 -0
- package/ios/components/map-view/MLRNMapView.h +111 -0
- package/ios/components/map-view/MLRNMapView.m +820 -0
- package/ios/components/map-view/MLRNMapViewComponentView.h +13 -0
- package/ios/components/map-view/MLRNMapViewComponentView.mm +415 -0
- package/ios/components/map-view/MLRNMapViewManager.h +70 -0
- package/ios/components/map-view/MLRNMapViewManager.m +163 -0
- package/ios/components/map-view/MLRNMapViewModule.h +4 -0
- package/ios/components/map-view/MLRNMapViewModule.mm +254 -0
- package/ios/components/sources/MLRNShapeSource.h +36 -0
- package/ios/components/sources/MLRNShapeSource.m +144 -0
- package/ios/components/sources/MLRNShapeSourceManager.m +128 -0
- package/ios/components/sources/MLRNSource.h +29 -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/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 +23 -0
- package/ios/modules/logging/MLRNLogging.m +94 -0
- package/ios/modules/mlrn/MLRNModule.m +58 -0
- package/ios/modules/offline/MLRNOfflineModule.h +11 -0
- package/ios/modules/offline/MLRNOfflineModule.m +524 -0
- package/ios/modules/snapshot/MLRNSnapshotModule.mm +77 -0
- package/ios/utils/MLRNEvent.m +36 -0
- package/ios/utils/MLRNEventTypes.h +19 -0
- package/ios/utils/MLRNEventTypes.m +19 -0
- package/ios/utils/MLRNUtils.h +45 -0
- package/ios/utils/MLRNUtils.m +250 -0
- package/lib/commonjs/MLRNModule.js +1 -3
- package/lib/commonjs/MLRNModule.js.map +1 -1
- package/lib/commonjs/components/Images.js +32 -46
- package/lib/commonjs/components/Images.js.map +1 -1
- package/lib/commonjs/components/annotations/Annotation.js +96 -0
- package/lib/commonjs/components/annotations/Annotation.js.map +1 -0
- package/lib/commonjs/components/annotations/Callout.js.map +1 -0
- package/lib/commonjs/components/annotations/MarkerView.js +60 -0
- package/lib/commonjs/components/annotations/MarkerView.js.map +1 -0
- package/lib/commonjs/components/annotations/PointAnnotation.js +118 -0
- package/lib/commonjs/components/annotations/PointAnnotation.js.map +1 -0
- package/lib/commonjs/components/camera/Camera.js +97 -0
- package/lib/commonjs/components/camera/Camera.js.map +1 -0
- package/lib/commonjs/components/camera/CameraNativeComponent.ts +66 -0
- package/lib/commonjs/components/camera/NativeCameraModule.js +11 -0
- package/lib/commonjs/components/camera/NativeCameraModule.js.map +1 -0
- package/lib/commonjs/components/layers/BackgroundLayer.js +31 -0
- package/lib/commonjs/components/layers/BackgroundLayer.js.map +1 -0
- package/lib/commonjs/components/layers/CircleLayer.js +35 -0
- package/lib/commonjs/components/layers/CircleLayer.js.map +1 -0
- package/lib/commonjs/components/layers/FillExtrusionLayer.js +34 -0
- package/lib/commonjs/components/layers/FillExtrusionLayer.js.map +1 -0
- package/lib/commonjs/components/layers/FillLayer.js +34 -0
- package/lib/commonjs/components/layers/FillLayer.js.map +1 -0
- package/lib/commonjs/components/layers/HeatmapLayer.js +33 -0
- package/lib/commonjs/components/layers/HeatmapLayer.js.map +1 -0
- package/lib/commonjs/components/layers/LineLayer.js +34 -0
- package/lib/commonjs/components/layers/LineLayer.js.map +1 -0
- package/lib/commonjs/components/layers/RasterLayer.js +30 -0
- package/lib/commonjs/components/layers/RasterLayer.js.map +1 -0
- package/lib/commonjs/components/layers/SymbolLayer.js +37 -0
- package/lib/commonjs/components/layers/SymbolLayer.js.map +1 -0
- package/lib/commonjs/components/map-view/MapView.js +119 -0
- package/lib/commonjs/components/map-view/MapView.js.map +1 -0
- package/lib/commonjs/components/map-view/MapViewNativeComponent.ts +98 -0
- package/lib/commonjs/components/map-view/NativeMapViewModule.js +9 -0
- package/lib/commonjs/components/map-view/NativeMapViewModule.js.map +1 -0
- package/lib/commonjs/components/sources/ImageSource.js +41 -0
- package/lib/commonjs/components/sources/ImageSource.js.map +1 -0
- package/lib/commonjs/components/sources/RasterSource.js +65 -0
- package/lib/commonjs/components/sources/RasterSource.js.map +1 -0
- package/lib/commonjs/components/sources/ShapeSource.js +153 -0
- package/lib/commonjs/components/sources/ShapeSource.js.map +1 -0
- package/lib/commonjs/components/sources/VectorSource.js +94 -0
- package/lib/commonjs/components/sources/VectorSource.js.map +1 -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 +46 -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 +64 -0
- package/lib/commonjs/components/user-location/UserLocationPuck.js.map +1 -0
- package/lib/commonjs/components/user-location/UserLocationPuckHeading.js +32 -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/index.js +239 -4
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/modules/location/LocationManager.js +64 -57
- package/lib/commonjs/modules/location/LocationManager.js.map +1 -1
- 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 +99 -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/snapshot/NativeSnapshotModule.js +2 -2
- package/lib/commonjs/modules/snapshot/NativeSnapshotModule.js.map +1 -1
- package/lib/commonjs/modules/snapshot/SnapshotManager.js +3 -2
- package/lib/commonjs/modules/snapshot/SnapshotManager.js.map +1 -1
- package/lib/commonjs/types/Bounds.js +2 -0
- package/lib/commonjs/types/Bounds.js.map +1 -0
- package/lib/commonjs/types/PressEvent.js +2 -0
- package/lib/commonjs/types/PressEvent.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/animated/Animated.js +10 -16
- package/lib/commonjs/utils/animated/Animated.js.map +1 -1
- package/lib/commonjs/utils/index.js +0 -11
- package/lib/commonjs/utils/index.js.map +1 -1
- package/lib/module/MLRNModule.js +0 -1
- package/lib/module/MLRNModule.js.map +1 -1
- package/lib/module/components/Images.js +32 -46
- package/lib/module/components/Images.js.map +1 -1
- package/lib/module/components/annotations/Annotation.js +92 -0
- package/lib/module/components/annotations/Annotation.js.map +1 -0
- package/lib/module/components/annotations/Callout.js.map +1 -0
- package/lib/module/components/annotations/MarkerView.js +55 -0
- package/lib/module/components/annotations/MarkerView.js.map +1 -0
- package/lib/module/components/annotations/PointAnnotation.js +114 -0
- package/lib/module/components/annotations/PointAnnotation.js.map +1 -0
- package/lib/module/components/camera/Camera.js +92 -0
- package/lib/module/components/camera/Camera.js.map +1 -0
- package/lib/module/components/camera/CameraNativeComponent.ts +66 -0
- package/lib/module/components/camera/NativeCameraModule.js +10 -0
- package/lib/module/components/camera/NativeCameraModule.js.map +1 -0
- package/lib/module/components/layers/BackgroundLayer.js +26 -0
- package/lib/module/components/layers/BackgroundLayer.js.map +1 -0
- package/lib/module/components/layers/CircleLayer.js +30 -0
- package/lib/module/components/layers/CircleLayer.js.map +1 -0
- package/lib/module/components/layers/FillExtrusionLayer.js +29 -0
- package/lib/module/components/layers/FillExtrusionLayer.js.map +1 -0
- package/lib/module/components/layers/FillLayer.js +29 -0
- package/lib/module/components/layers/FillLayer.js.map +1 -0
- package/lib/module/components/layers/HeatmapLayer.js +28 -0
- package/lib/module/components/layers/HeatmapLayer.js.map +1 -0
- package/lib/module/components/layers/LineLayer.js +29 -0
- package/lib/module/components/layers/LineLayer.js.map +1 -0
- package/lib/module/components/layers/RasterLayer.js +25 -0
- package/lib/module/components/layers/RasterLayer.js.map +1 -0
- package/lib/module/components/layers/SymbolLayer.js +32 -0
- package/lib/module/components/layers/SymbolLayer.js.map +1 -0
- package/lib/module/components/map-view/MapView.js +114 -0
- package/lib/module/components/map-view/MapView.js.map +1 -0
- package/lib/module/components/map-view/MapViewNativeComponent.ts +98 -0
- package/lib/module/components/map-view/NativeMapViewModule.js +5 -0
- package/lib/module/components/map-view/NativeMapViewModule.js.map +1 -0
- package/lib/module/components/sources/ImageSource.js +36 -0
- package/lib/module/components/sources/ImageSource.js.map +1 -0
- package/lib/module/components/sources/RasterSource.js +60 -0
- package/lib/module/components/sources/RasterSource.js.map +1 -0
- package/lib/module/components/sources/ShapeSource.js +149 -0
- package/lib/module/components/sources/ShapeSource.js.map +1 -0
- package/lib/module/components/sources/VectorSource.js +90 -0
- package/lib/module/components/sources/VectorSource.js.map +1 -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 +42 -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 +60 -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/index.js +30 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/modules/location/LocationManager.js +63 -57
- package/lib/module/modules/location/LocationManager.js.map +1 -1
- 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 +96 -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/snapshot/NativeSnapshotModule.js +1 -1
- package/lib/module/modules/snapshot/NativeSnapshotModule.js.map +1 -1
- package/lib/module/modules/snapshot/SnapshotManager.js +1 -1
- package/lib/module/modules/snapshot/SnapshotManager.js.map +1 -1
- package/lib/module/types/Bounds.js +2 -0
- package/lib/module/types/Bounds.js.map +1 -0
- package/lib/module/types/PressEvent.js +2 -0
- package/lib/module/types/PressEvent.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/animated/Animated.js +9 -15
- package/lib/module/utils/animated/Animated.js.map +1 -1
- package/lib/module/utils/index.js +0 -9
- package/lib/module/utils/index.js.map +1 -1
- package/lib/typescript/commonjs/src/MLRNModule.d.ts +1 -7
- package/lib/typescript/commonjs/src/MLRNModule.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Images.d.ts +11 -3
- package/lib/typescript/commonjs/src/components/Images.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/annotations/Annotation.d.ts +22 -0
- package/lib/typescript/commonjs/src/components/annotations/Annotation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/annotations/Callout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/annotations/MarkerView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/annotations/PointAnnotation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/camera/Camera.d.ts +180 -0
- package/lib/typescript/commonjs/src/components/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/camera/CameraNativeComponent.d.ts +38 -0
- package/lib/typescript/commonjs/src/components/camera/CameraNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/camera/NativeCameraModule.d.ts +27 -0
- package/lib/typescript/commonjs/src/components/camera/NativeCameraModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/BackgroundLayer.d.ts +12 -0
- package/lib/typescript/commonjs/src/components/layers/BackgroundLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/CircleLayer.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/layers/CircleLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/FillExtrusionLayer.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/layers/FillExtrusionLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/FillLayer.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/layers/FillLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/HeatmapLayer.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/layers/HeatmapLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/LineLayer.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/layers/LineLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/RasterLayer.d.ts +12 -0
- package/lib/typescript/commonjs/src/components/layers/RasterLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/layers/SymbolLayer.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/layers/SymbolLayer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/map-view/MapView.d.ts +333 -0
- package/lib/typescript/commonjs/src/components/map-view/MapView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/map-view/MapViewNativeComponent.d.ts +71 -0
- package/lib/typescript/commonjs/src/components/map-view/MapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/map-view/NativeMapViewModule.d.ts +45 -0
- package/lib/typescript/commonjs/src/components/map-view/NativeMapViewModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/sources/ImageSource.d.ts +30 -0
- package/lib/typescript/commonjs/src/components/sources/ImageSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/sources/RasterSource.d.ts +53 -0
- package/lib/typescript/commonjs/src/components/sources/RasterSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/sources/ShapeSource.d.ts +118 -0
- package/lib/typescript/commonjs/src/components/sources/ShapeSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/sources/VectorSource.d.ts +67 -0
- package/lib/typescript/commonjs/src/components/sources/VectorSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/user-location/NativeUserLocation.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/user-location/NativeUserLocation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocation.d.ts +29 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocationNativeComponent.d.ts +8 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocationPuck.d.ts +10 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocationPuck.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocationPuckHeading.d.ts +9 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/useCurrentPosition.d.ts +18 -0
- package/lib/typescript/commonjs/src/hooks/useCurrentPosition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +40 -1
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/modules/location/LocationManager.d.ts +51 -22
- package/lib/typescript/commonjs/src/modules/location/LocationManager.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/modules/location/NativeLocationModule.d.ts +25 -0
- package/lib/typescript/commonjs/src/modules/location/NativeLocationModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/log/LogManager.d.ts +45 -0
- package/lib/typescript/commonjs/src/modules/log/LogManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/log/NativeLogModule.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/log/NativeLogModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/snapshot/NativeSnapshotModule.d.ts +2 -1
- package/lib/typescript/commonjs/src/modules/snapshot/NativeSnapshotModule.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/plugin/android.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/plugin/ios.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/types/Bounds.d.ts +2 -0
- package/lib/typescript/commonjs/src/types/Bounds.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts +6 -6
- package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/types/PressEvent.d.ts +16 -0
- package/lib/typescript/commonjs/src/types/PressEvent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/ViewPadding.d.ts +7 -0
- package/lib/typescript/commonjs/src/types/ViewPadding.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/codegen/UnsafeMixed.d.ts +10 -0
- package/lib/typescript/commonjs/src/types/codegen/UnsafeMixed.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts +9 -21
- package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/index.d.ts +1 -3
- package/lib/typescript/commonjs/src/utils/index.d.ts.map +1 -1
- package/lib/typescript/module/src/MLRNModule.d.ts +1 -7
- package/lib/typescript/module/src/MLRNModule.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Images.d.ts +11 -3
- package/lib/typescript/module/src/components/Images.d.ts.map +1 -1
- package/lib/typescript/module/src/components/annotations/Annotation.d.ts +22 -0
- package/lib/typescript/module/src/components/annotations/Annotation.d.ts.map +1 -0
- package/lib/typescript/module/src/components/annotations/Callout.d.ts.map +1 -0
- package/lib/typescript/module/src/components/annotations/MarkerView.d.ts.map +1 -0
- package/lib/typescript/module/src/components/annotations/PointAnnotation.d.ts.map +1 -0
- package/lib/typescript/module/src/components/camera/Camera.d.ts +180 -0
- package/lib/typescript/module/src/components/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/module/src/components/camera/CameraNativeComponent.d.ts +38 -0
- package/lib/typescript/module/src/components/camera/CameraNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/src/components/camera/NativeCameraModule.d.ts +27 -0
- package/lib/typescript/module/src/components/camera/NativeCameraModule.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/BackgroundLayer.d.ts +12 -0
- package/lib/typescript/module/src/components/layers/BackgroundLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/CircleLayer.d.ts +15 -0
- package/lib/typescript/module/src/components/layers/CircleLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/FillExtrusionLayer.d.ts +15 -0
- package/lib/typescript/module/src/components/layers/FillExtrusionLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/FillLayer.d.ts +15 -0
- package/lib/typescript/module/src/components/layers/FillLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/HeatmapLayer.d.ts +15 -0
- package/lib/typescript/module/src/components/layers/HeatmapLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/LineLayer.d.ts +15 -0
- package/lib/typescript/module/src/components/layers/LineLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/RasterLayer.d.ts +12 -0
- package/lib/typescript/module/src/components/layers/RasterLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/layers/SymbolLayer.d.ts +15 -0
- package/lib/typescript/module/src/components/layers/SymbolLayer.d.ts.map +1 -0
- package/lib/typescript/module/src/components/map-view/MapView.d.ts +333 -0
- package/lib/typescript/module/src/components/map-view/MapView.d.ts.map +1 -0
- package/lib/typescript/module/src/components/map-view/MapViewNativeComponent.d.ts +71 -0
- package/lib/typescript/module/src/components/map-view/MapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/src/components/map-view/NativeMapViewModule.d.ts +45 -0
- package/lib/typescript/module/src/components/map-view/NativeMapViewModule.d.ts.map +1 -0
- package/lib/typescript/module/src/components/sources/ImageSource.d.ts +30 -0
- package/lib/typescript/module/src/components/sources/ImageSource.d.ts.map +1 -0
- package/lib/typescript/module/src/components/sources/RasterSource.d.ts +53 -0
- package/lib/typescript/module/src/components/sources/RasterSource.d.ts.map +1 -0
- package/lib/typescript/module/src/components/sources/ShapeSource.d.ts +118 -0
- package/lib/typescript/module/src/components/sources/ShapeSource.d.ts.map +1 -0
- package/lib/typescript/module/src/components/sources/VectorSource.d.ts +67 -0
- package/lib/typescript/module/src/components/sources/VectorSource.d.ts.map +1 -0
- package/lib/typescript/module/src/components/user-location/NativeUserLocation.d.ts +24 -0
- package/lib/typescript/module/src/components/user-location/NativeUserLocation.d.ts.map +1 -0
- package/lib/typescript/module/src/components/user-location/UserLocation.d.ts +29 -0
- package/lib/typescript/module/src/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/module/src/components/user-location/UserLocationNativeComponent.d.ts +8 -0
- package/lib/typescript/module/src/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/src/components/user-location/UserLocationPuck.d.ts +10 -0
- package/lib/typescript/module/src/components/user-location/UserLocationPuck.d.ts.map +1 -0
- package/lib/typescript/module/src/components/user-location/UserLocationPuckHeading.d.ts +9 -0
- package/lib/typescript/module/src/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/useCurrentPosition.d.ts +18 -0
- package/lib/typescript/module/src/hooks/useCurrentPosition.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +40 -1
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/modules/location/LocationManager.d.ts +51 -22
- package/lib/typescript/module/src/modules/location/LocationManager.d.ts.map +1 -1
- package/lib/typescript/module/src/modules/location/NativeLocationModule.d.ts +25 -0
- package/lib/typescript/module/src/modules/location/NativeLocationModule.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/log/LogManager.d.ts +45 -0
- package/lib/typescript/module/src/modules/log/LogManager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/log/NativeLogModule.d.ts +13 -0
- package/lib/typescript/module/src/modules/log/NativeLogModule.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/snapshot/NativeSnapshotModule.d.ts +2 -1
- package/lib/typescript/module/src/modules/snapshot/NativeSnapshotModule.d.ts.map +1 -1
- package/lib/typescript/module/src/plugin/android.d.ts.map +1 -1
- package/lib/typescript/module/src/plugin/ios.d.ts.map +1 -1
- package/lib/typescript/module/src/types/Bounds.d.ts +2 -0
- package/lib/typescript/module/src/types/Bounds.d.ts.map +1 -0
- package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts +6 -6
- package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts.map +1 -1
- package/lib/typescript/module/src/types/PressEvent.d.ts +16 -0
- package/lib/typescript/module/src/types/PressEvent.d.ts.map +1 -0
- package/lib/typescript/module/src/types/ViewPadding.d.ts +7 -0
- package/lib/typescript/module/src/types/ViewPadding.d.ts.map +1 -0
- package/lib/typescript/module/src/types/codegen/UnsafeMixed.d.ts +10 -0
- package/lib/typescript/module/src/types/codegen/UnsafeMixed.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/animated/Animated.d.ts +9 -21
- package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/index.d.ts +1 -3
- package/lib/typescript/module/src/utils/index.d.ts.map +1 -1
- package/package.json +45 -31
- package/src/MLRNModule.ts +0 -10
- package/src/components/Images.tsx +59 -66
- package/src/components/annotations/Annotation.tsx +149 -0
- package/src/components/annotations/MarkerView.tsx +86 -0
- package/src/components/annotations/PointAnnotation.tsx +244 -0
- package/src/components/camera/Camera.tsx +307 -0
- package/src/components/camera/CameraNativeComponent.ts +66 -0
- package/src/components/camera/NativeCameraModule.ts +39 -0
- package/src/components/layers/BackgroundLayer.tsx +48 -0
- package/src/components/layers/CircleLayer.tsx +50 -0
- package/src/components/layers/FillExtrusionLayer.tsx +45 -0
- package/src/components/layers/FillLayer.tsx +42 -0
- package/src/components/layers/HeatmapLayer.tsx +44 -0
- package/src/components/layers/LineLayer.tsx +43 -0
- package/src/components/layers/RasterLayer.tsx +41 -0
- package/src/components/layers/SymbolLayer.tsx +48 -0
- package/src/components/map-view/MapView.tsx +602 -0
- package/src/components/map-view/MapViewNativeComponent.ts +98 -0
- package/src/components/map-view/NativeMapViewModule.ts +83 -0
- package/src/components/sources/ImageSource.tsx +68 -0
- package/src/components/sources/RasterSource.tsx +112 -0
- package/src/components/sources/ShapeSource.tsx +366 -0
- package/src/components/sources/VectorSource.tsx +172 -0
- package/src/components/user-location/NativeUserLocation.tsx +28 -0
- package/src/components/user-location/UserLocation.tsx +86 -0
- package/src/components/user-location/UserLocationNativeComponent.ts +19 -0
- package/src/components/user-location/UserLocationPuck.tsx +81 -0
- package/src/components/user-location/UserLocationPuckHeading.tsx +34 -0
- package/src/hooks/useCurrentPosition.ts +53 -0
- package/src/index.ts +85 -1
- package/src/modules/location/LocationManager.ts +109 -97
- package/src/modules/location/NativeLocationModule.ts +33 -0
- package/src/modules/log/LogManager.ts +114 -0
- package/src/modules/log/NativeLogModule.ts +16 -0
- package/src/modules/snapshot/NativeSnapshotModule.ts +1 -2
- package/src/modules/snapshot/SnapshotManager.ts +1 -1
- package/src/types/Bounds.ts +1 -0
- package/src/types/MapLibreRNStyles.ts +6 -6
- package/src/types/PressEvent.ts +19 -0
- package/src/types/ViewPadding.ts +6 -0
- package/src/types/codegen/UnsafeMixed.ts +9 -0
- package/src/utils/animated/Animated.ts +9 -36
- package/src/utils/index.ts +1 -14
- package/android/src/main/java/org/maplibre/reactnative/components/AbstractEvent.java +0 -35
- package/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java +0 -80
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java +0 -11
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java +0 -18
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerView.java +0 -112
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerViewManager.java +0 -45
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotation.java +0 -361
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java +0 -84
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerView.java +0 -23
- package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerViewManager.java +0 -69
- package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java +0 -245
- package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java +0 -121
- package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java +0 -68
- package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCamera.java +0 -519
- package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCameraManager.java +0 -101
- package/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java +0 -18
- package/android/src/main/java/org/maplibre/reactnative/components/location/LocationComponentManager.java +0 -165
- package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocation.java +0 -76
- package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocationManager.java +0 -40
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/LayerSourceInfo.java +0 -59
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java +0 -13
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java +0 -27
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java +0 -1521
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java +0 -342
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java +0 -37
- package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java +0 -76
- package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFactory.java +0 -2285
- package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java +0 -103
- package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java +0 -208
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java +0 -23
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java +0 -60
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java +0 -51
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java +0 -73
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java +0 -51
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java +0 -76
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java +0 -51
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java +0 -76
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java +0 -51
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java +0 -73
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java +0 -283
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java +0 -51
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java +0 -75
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java +0 -23
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java +0 -60
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java +0 -51
- package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java +0 -71
- package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java +0 -61
- package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java +0 -25
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java +0 -77
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java +0 -68
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java +0 -41
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java +0 -39
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java +0 -246
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java +0 -221
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java +0 -240
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSource.java +0 -97
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSourceManager.java +0 -80
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java +0 -60
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java +0 -80
- package/android/src/main/java/org/maplibre/reactnative/events/LocationEvent.java +0 -100
- package/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java +0 -43
- package/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java +0 -32
- package/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java +0 -160
- package/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java +0 -59
- package/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java +0 -7
- package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java +0 -59
- package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java +0 -15
- package/android/src/main/java/org/maplibre/reactnative/location/engine/DefaultLocationEngineProvider.java +0 -18
- package/android/src/main/java/org/maplibre/reactnative/location/engine/LocationEngineProvidable.java +0 -9
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLocationModule.java +0 -158
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLogging.java +0 -140
- package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java +0 -310
- package/android/src/main/location-engine-default/org/maplibre/reactnative/location/engine/LocationEngineProvider.java +0 -12
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/GoogleLocationEngineImpl.java +0 -151
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/GoogleLocationEngineProvider.java +0 -24
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/LocationEngineProvider.java +0 -12
- package/ios/CameraMode.h +0 -10
- package/ios/CameraMode.m +0 -10
- package/ios/CameraStop.h +0 -18
- package/ios/CameraStop.m +0 -73
- package/ios/CameraUpdateItem.m +0 -168
- package/ios/MLRN.h +0 -5
- package/ios/MLRN.m +0 -5
- package/ios/MLRNCallout.h +0 -7
- package/ios/MLRNCamera.h +0 -29
- package/ios/MLRNCamera.m +0 -236
- package/ios/MLRNCameraManager.h +0 -5
- package/ios/MLRNCameraManager.m +0 -39
- package/ios/MLRNEvent.m +0 -34
- package/ios/MLRNEventTypes.h +0 -42
- package/ios/MLRNEventTypes.m +0 -41
- package/ios/MLRNImageQueue.h +0 -14
- package/ios/MLRNImageQueue.m +0 -46
- package/ios/MLRNImageQueueOperation.h +0 -10
- package/ios/MLRNImageQueueOperation.m +0 -131
- package/ios/MLRNImages.h +0 -24
- package/ios/MLRNImages.m +0 -124
- package/ios/MLRNLayer.h +0 -42
- package/ios/MLRNLayer.m +0 -216
- package/ios/MLRNLight.h +0 -9
- package/ios/MLRNLight.m +0 -36
- package/ios/MLRNLightManager.h +0 -5
- package/ios/MLRNLightManager.m +0 -14
- package/ios/MLRNLocation.h +0 -11
- package/ios/MLRNLocation.m +0 -23
- package/ios/MLRNLocationManager.h +0 -22
- package/ios/MLRNLocationManager.m +0 -157
- package/ios/MLRNLocationManagerDelegate.h +0 -12
- package/ios/MLRNLocationModule.h +0 -7
- package/ios/MLRNLocationModule.m +0 -76
- package/ios/MLRNLogging.h +0 -15
- package/ios/MLRNLogging.m +0 -127
- package/ios/MLRNMapTouchEvent.h +0 -17
- package/ios/MLRNMapTouchEvent.m +0 -70
- package/ios/MLRNMapView.h +0 -90
- package/ios/MLRNMapView.m +0 -497
- package/ios/MLRNMapViewManager.h +0 -9
- package/ios/MLRNMapViewManager.m +0 -604
- package/ios/MLRNModule.m +0 -110
- package/ios/MLRNNativeUserLocation.h +0 -11
- package/ios/MLRNNativeUserLocation.m +0 -38
- package/ios/MLRNNativeUserLocationManager.h +0 -5
- package/ios/MLRNNativeUserLocationManager.m +0 -21
- package/ios/MLRNOfflineModule.h +0 -11
- package/ios/MLRNOfflineModule.m +0 -524
- package/ios/MLRNPointAnnotation.h +0 -33
- package/ios/MLRNShapeSource.h +0 -35
- package/ios/MLRNShapeSource.m +0 -140
- package/ios/MLRNShapeSourceManager.m +0 -127
- package/ios/MLRNSnapshotModule/MLRNSnapshotModule.mm +0 -78
- package/ios/MLRNSource.h +0 -27
- package/ios/MLRNStyle.m +0 -1642
- package/ios/MLRNStyleValue.h +0 -19
- package/ios/MLRNStyleValue.m +0 -159
- package/ios/MLRNUtils.h +0 -29
- package/ios/MLRNUtils.m +0 -218
- package/lib/commonjs/MapLibreRN.js +0 -266
- package/lib/commonjs/MapLibreRN.js.map +0 -1
- package/lib/commonjs/components/Annotation.js +0 -107
- package/lib/commonjs/components/Annotation.js.map +0 -1
- package/lib/commonjs/components/BackgroundLayer.js +0 -31
- package/lib/commonjs/components/BackgroundLayer.js.map +0 -1
- package/lib/commonjs/components/Callout.js.map +0 -1
- package/lib/commonjs/components/Camera.js +0 -333
- package/lib/commonjs/components/Camera.js.map +0 -1
- package/lib/commonjs/components/CircleLayer.js +0 -35
- package/lib/commonjs/components/CircleLayer.js.map +0 -1
- package/lib/commonjs/components/FillExtrusionLayer.js +0 -34
- package/lib/commonjs/components/FillExtrusionLayer.js.map +0 -1
- package/lib/commonjs/components/FillLayer.js +0 -34
- package/lib/commonjs/components/FillLayer.js.map +0 -1
- package/lib/commonjs/components/HeatmapLayer.js +0 -33
- package/lib/commonjs/components/HeatmapLayer.js.map +0 -1
- package/lib/commonjs/components/ImageSource.js +0 -41
- package/lib/commonjs/components/ImageSource.js.map +0 -1
- package/lib/commonjs/components/Light.js +0 -30
- package/lib/commonjs/components/Light.js.map +0 -1
- package/lib/commonjs/components/LineLayer.js +0 -34
- package/lib/commonjs/components/LineLayer.js.map +0 -1
- package/lib/commonjs/components/MapView.js +0 -449
- package/lib/commonjs/components/MapView.js.map +0 -1
- package/lib/commonjs/components/MarkerView.js +0 -60
- package/lib/commonjs/components/MarkerView.js.map +0 -1
- package/lib/commonjs/components/NativeUserLocation.js +0 -17
- package/lib/commonjs/components/NativeUserLocation.js.map +0 -1
- package/lib/commonjs/components/PointAnnotation.js +0 -118
- package/lib/commonjs/components/PointAnnotation.js.map +0 -1
- package/lib/commonjs/components/RasterLayer.js +0 -30
- package/lib/commonjs/components/RasterLayer.js.map +0 -1
- package/lib/commonjs/components/RasterSource.js +0 -65
- package/lib/commonjs/components/RasterSource.js.map +0 -1
- package/lib/commonjs/components/ShapeSource.js +0 -170
- package/lib/commonjs/components/ShapeSource.js.map +0 -1
- package/lib/commonjs/components/SymbolLayer.js +0 -37
- package/lib/commonjs/components/SymbolLayer.js.map +0 -1
- package/lib/commonjs/components/UserLocation.js +0 -156
- package/lib/commonjs/components/UserLocation.js.map +0 -1
- package/lib/commonjs/components/UserLocationPuck.js +0 -52
- package/lib/commonjs/components/UserLocationPuck.js.map +0 -1
- package/lib/commonjs/components/UserLocationPuckHeading.js +0 -31
- package/lib/commonjs/components/UserLocationPuckHeading.js.map +0 -1
- package/lib/commonjs/components/VectorSource.js +0 -117
- package/lib/commonjs/components/VectorSource.js.map +0 -1
- package/lib/commonjs/hooks/useNativeRef.js +0 -14
- package/lib/commonjs/hooks/useNativeRef.js.map +0 -1
- package/lib/commonjs/requestAndroidLocationPermissions.js +0 -25
- package/lib/commonjs/requestAndroidLocationPermissions.js.map +0 -1
- package/lib/commonjs/types/CameraMode.js +0 -14
- package/lib/commonjs/types/CameraMode.js.map +0 -1
- package/lib/commonjs/types/MapLibreRNEvent.js +0 -6
- package/lib/commonjs/types/MapLibreRNEvent.js.map +0 -1
- package/lib/commonjs/types/OnPressEvent.js +0 -2
- package/lib/commonjs/types/OnPressEvent.js.map +0 -1
- package/lib/commonjs/utils/Logger.js +0 -116
- package/lib/commonjs/utils/Logger.js.map +0 -1
- package/lib/module/MapLibreRN.js +0 -33
- package/lib/module/MapLibreRN.js.map +0 -1
- package/lib/module/components/Annotation.js +0 -103
- package/lib/module/components/Annotation.js.map +0 -1
- package/lib/module/components/BackgroundLayer.js +0 -26
- package/lib/module/components/BackgroundLayer.js.map +0 -1
- package/lib/module/components/Callout.js.map +0 -1
- package/lib/module/components/Camera.js +0 -328
- package/lib/module/components/Camera.js.map +0 -1
- package/lib/module/components/CircleLayer.js +0 -30
- package/lib/module/components/CircleLayer.js.map +0 -1
- package/lib/module/components/FillExtrusionLayer.js +0 -29
- package/lib/module/components/FillExtrusionLayer.js.map +0 -1
- package/lib/module/components/FillLayer.js +0 -29
- package/lib/module/components/FillLayer.js.map +0 -1
- package/lib/module/components/HeatmapLayer.js +0 -28
- package/lib/module/components/HeatmapLayer.js.map +0 -1
- package/lib/module/components/ImageSource.js +0 -36
- package/lib/module/components/ImageSource.js.map +0 -1
- package/lib/module/components/Light.js +0 -25
- package/lib/module/components/Light.js.map +0 -1
- package/lib/module/components/LineLayer.js +0 -29
- package/lib/module/components/LineLayer.js.map +0 -1
- package/lib/module/components/MapView.js +0 -444
- package/lib/module/components/MapView.js.map +0 -1
- package/lib/module/components/MarkerView.js +0 -55
- package/lib/module/components/MarkerView.js.map +0 -1
- package/lib/module/components/NativeUserLocation.js +0 -12
- package/lib/module/components/NativeUserLocation.js.map +0 -1
- package/lib/module/components/PointAnnotation.js +0 -114
- package/lib/module/components/PointAnnotation.js.map +0 -1
- package/lib/module/components/RasterLayer.js +0 -25
- package/lib/module/components/RasterLayer.js.map +0 -1
- package/lib/module/components/RasterSource.js +0 -60
- package/lib/module/components/RasterSource.js.map +0 -1
- package/lib/module/components/ShapeSource.js +0 -166
- package/lib/module/components/ShapeSource.js.map +0 -1
- package/lib/module/components/SymbolLayer.js +0 -32
- package/lib/module/components/SymbolLayer.js.map +0 -1
- package/lib/module/components/UserLocation.js +0 -152
- package/lib/module/components/UserLocation.js.map +0 -1
- package/lib/module/components/UserLocationPuck.js +0 -48
- package/lib/module/components/UserLocationPuck.js.map +0 -1
- package/lib/module/components/UserLocationPuckHeading.js +0 -26
- package/lib/module/components/UserLocationPuckHeading.js.map +0 -1
- package/lib/module/components/VectorSource.js +0 -113
- package/lib/module/components/VectorSource.js.map +0 -1
- package/lib/module/hooks/useNativeRef.js +0 -10
- package/lib/module/hooks/useNativeRef.js.map +0 -1
- package/lib/module/requestAndroidLocationPermissions.js +0 -21
- package/lib/module/requestAndroidLocationPermissions.js.map +0 -1
- package/lib/module/types/CameraMode.js +0 -10
- package/lib/module/types/CameraMode.js.map +0 -1
- package/lib/module/types/MapLibreRNEvent.js +0 -4
- package/lib/module/types/MapLibreRNEvent.js.map +0 -1
- package/lib/module/types/OnPressEvent.js +0 -2
- package/lib/module/types/OnPressEvent.js.map +0 -1
- package/lib/module/utils/Logger.js +0 -111
- package/lib/module/utils/Logger.js.map +0 -1
- package/lib/typescript/commonjs/src/MapLibreRN.d.ts +0 -41
- package/lib/typescript/commonjs/src/MapLibreRN.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/Annotation.d.ts +0 -21
- package/lib/typescript/commonjs/src/components/Annotation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts +0 -12
- package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/Callout.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/Camera.d.ts +0 -134
- package/lib/typescript/commonjs/src/components/Camera.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/CircleLayer.d.ts +0 -15
- package/lib/typescript/commonjs/src/components/CircleLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts +0 -15
- package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/FillLayer.d.ts +0 -15
- package/lib/typescript/commonjs/src/components/FillLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts +0 -15
- package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/ImageSource.d.ts +0 -30
- package/lib/typescript/commonjs/src/components/ImageSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/Light.d.ts +0 -16
- package/lib/typescript/commonjs/src/components/Light.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/LineLayer.d.ts +0 -15
- package/lib/typescript/commonjs/src/components/LineLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/MapView.d.ts +0 -223
- package/lib/typescript/commonjs/src/components/MapView.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/MarkerView.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts +0 -25
- package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/RasterLayer.d.ts +0 -12
- package/lib/typescript/commonjs/src/components/RasterLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/RasterSource.d.ts +0 -53
- package/lib/typescript/commonjs/src/components/RasterSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/ShapeSource.d.ts +0 -116
- package/lib/typescript/commonjs/src/components/ShapeSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts +0 -15
- package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/UserLocation.d.ts +0 -69
- package/lib/typescript/commonjs/src/components/UserLocation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/UserLocationPuck.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/UserLocationPuck.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/UserLocationPuckHeading.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/UserLocationPuckHeading.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/VectorSource.d.ts +0 -66
- package/lib/typescript/commonjs/src/components/VectorSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts +0 -8
- package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts +0 -2
- package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/CameraMode.d.ts +0 -7
- package/lib/typescript/commonjs/src/types/CameraMode.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts +0 -6
- package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts +0 -12
- package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/Logger.d.ts +0 -52
- package/lib/typescript/commonjs/src/utils/Logger.d.ts.map +0 -1
- package/lib/typescript/module/src/MapLibreRN.d.ts +0 -41
- package/lib/typescript/module/src/MapLibreRN.d.ts.map +0 -1
- package/lib/typescript/module/src/components/Annotation.d.ts +0 -21
- package/lib/typescript/module/src/components/Annotation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/BackgroundLayer.d.ts +0 -12
- package/lib/typescript/module/src/components/BackgroundLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/Callout.d.ts.map +0 -1
- package/lib/typescript/module/src/components/Camera.d.ts +0 -134
- package/lib/typescript/module/src/components/Camera.d.ts.map +0 -1
- package/lib/typescript/module/src/components/CircleLayer.d.ts +0 -15
- package/lib/typescript/module/src/components/CircleLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts +0 -15
- package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/FillLayer.d.ts +0 -15
- package/lib/typescript/module/src/components/FillLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/HeatmapLayer.d.ts +0 -15
- package/lib/typescript/module/src/components/HeatmapLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/ImageSource.d.ts +0 -30
- package/lib/typescript/module/src/components/ImageSource.d.ts.map +0 -1
- package/lib/typescript/module/src/components/Light.d.ts +0 -16
- package/lib/typescript/module/src/components/Light.d.ts.map +0 -1
- package/lib/typescript/module/src/components/LineLayer.d.ts +0 -15
- package/lib/typescript/module/src/components/LineLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/MapView.d.ts +0 -223
- package/lib/typescript/module/src/components/MapView.d.ts.map +0 -1
- package/lib/typescript/module/src/components/MarkerView.d.ts.map +0 -1
- package/lib/typescript/module/src/components/NativeUserLocation.d.ts +0 -25
- package/lib/typescript/module/src/components/NativeUserLocation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/PointAnnotation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/RasterLayer.d.ts +0 -12
- package/lib/typescript/module/src/components/RasterLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/RasterSource.d.ts +0 -53
- package/lib/typescript/module/src/components/RasterSource.d.ts.map +0 -1
- package/lib/typescript/module/src/components/ShapeSource.d.ts +0 -116
- package/lib/typescript/module/src/components/ShapeSource.d.ts.map +0 -1
- package/lib/typescript/module/src/components/SymbolLayer.d.ts +0 -15
- package/lib/typescript/module/src/components/SymbolLayer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/UserLocation.d.ts +0 -69
- package/lib/typescript/module/src/components/UserLocation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/UserLocationPuck.d.ts +0 -9
- package/lib/typescript/module/src/components/UserLocationPuck.d.ts.map +0 -1
- package/lib/typescript/module/src/components/UserLocationPuckHeading.d.ts +0 -9
- package/lib/typescript/module/src/components/UserLocationPuckHeading.d.ts.map +0 -1
- package/lib/typescript/module/src/components/VectorSource.d.ts +0 -66
- package/lib/typescript/module/src/components/VectorSource.d.ts.map +0 -1
- package/lib/typescript/module/src/hooks/useNativeRef.d.ts +0 -8
- package/lib/typescript/module/src/hooks/useNativeRef.d.ts.map +0 -1
- package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts +0 -2
- package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts.map +0 -1
- package/lib/typescript/module/src/types/CameraMode.d.ts +0 -7
- package/lib/typescript/module/src/types/CameraMode.d.ts.map +0 -1
- package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts +0 -6
- package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts.map +0 -1
- package/lib/typescript/module/src/types/OnPressEvent.d.ts +0 -12
- package/lib/typescript/module/src/types/OnPressEvent.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/Logger.d.ts +0 -52
- package/lib/typescript/module/src/utils/Logger.d.ts.map +0 -1
- package/src/MapLibreRN.ts +0 -74
- package/src/components/Annotation.tsx +0 -162
- package/src/components/BackgroundLayer.tsx +0 -48
- package/src/components/Camera.tsx +0 -568
- package/src/components/CircleLayer.tsx +0 -50
- package/src/components/FillExtrusionLayer.tsx +0 -45
- package/src/components/FillLayer.tsx +0 -42
- package/src/components/HeatmapLayer.tsx +0 -44
- package/src/components/ImageSource.tsx +0 -68
- package/src/components/Light.tsx +0 -38
- package/src/components/LineLayer.tsx +0 -43
- package/src/components/MapView.tsx +0 -838
- package/src/components/MarkerView.tsx +0 -86
- package/src/components/NativeUserLocation.tsx +0 -32
- package/src/components/PointAnnotation.tsx +0 -244
- package/src/components/RasterLayer.tsx +0 -41
- package/src/components/RasterSource.tsx +0 -112
- package/src/components/ShapeSource.tsx +0 -368
- package/src/components/SymbolLayer.tsx +0 -48
- package/src/components/UserLocation.tsx +0 -268
- package/src/components/UserLocationPuck.tsx +0 -62
- package/src/components/UserLocationPuckHeading.tsx +0 -33
- package/src/components/VectorSource.tsx +0 -195
- package/src/hooks/useNativeRef.ts +0 -14
- package/src/requestAndroidLocationPermissions.ts +0 -29
- package/src/types/CameraMode.ts +0 -6
- package/src/types/MapLibreRNEvent.ts +0 -7
- package/src/types/OnPressEvent.ts +0 -11
- package/src/utils/Logger.ts +0 -131
- /package/ios/{ViewManager.h → components/ViewManager.h} +0 -0
- /package/ios/{ViewManager.m → components/ViewManager.m} +0 -0
- /package/ios/{MLRNCallout.m → components/annotations/MLRNCallout.m} +0 -0
- /package/ios/{MLRNCalloutManager.h → components/annotations/MLRNCalloutManager.h} +0 -0
- /package/ios/{MLRNCalloutManager.m → components/annotations/MLRNCalloutManager.m} +0 -0
- /package/ios/{MLRNPointAnnotation.m → components/annotations/MLRNPointAnnotation.m} +0 -0
- /package/ios/{MLRNPointAnnotationManager.h → components/annotations/MLRNPointAnnotationManager.h} +0 -0
- /package/ios/{MLRNPointAnnotationManager.m → components/annotations/MLRNPointAnnotationManager.m} +0 -0
- /package/ios/{CameraUpdateItem.h → components/camera/CameraUpdateItem.h} +0 -0
- /package/ios/{CameraUpdateQueue.h → components/camera/CameraUpdateQueue.h} +0 -0
- /package/ios/{CameraUpdateQueue.m → components/camera/CameraUpdateQueue.m} +0 -0
- /package/ios/{MLRNImageUtils.h → components/images/MLRNImageUtils.h} +0 -0
- /package/ios/{MLRNImageUtils.m → components/images/MLRNImageUtils.m} +0 -0
- /package/ios/{MLRNImagesManager.h → components/images/MLRNImagesManager.h} +0 -0
- /package/ios/{MLRNImagesManager.m → components/images/MLRNImagesManager.m} +0 -0
- /package/ios/{MLRNBackgroundLayer.h → components/layers/MLRNBackgroundLayer.h} +0 -0
- /package/ios/{MLRNBackgroundLayer.m → components/layers/MLRNBackgroundLayer.m} +0 -0
- /package/ios/{MLRNBackgroundLayerManager.h → components/layers/MLRNBackgroundLayerManager.h} +0 -0
- /package/ios/{MLRNBackgroundLayerManager.m → components/layers/MLRNBackgroundLayerManager.m} +0 -0
- /package/ios/{MLRNCircleLayer.h → components/layers/MLRNCircleLayer.h} +0 -0
- /package/ios/{MLRNCircleLayer.m → components/layers/MLRNCircleLayer.m} +0 -0
- /package/ios/{MLRNCircleLayerManager.h → components/layers/MLRNCircleLayerManager.h} +0 -0
- /package/ios/{MLRNCircleLayerManager.m → components/layers/MLRNCircleLayerManager.m} +0 -0
- /package/ios/{MLRNFillExtrusionLayer.h → components/layers/MLRNFillExtrusionLayer.h} +0 -0
- /package/ios/{MLRNFillExtrusionLayer.m → components/layers/MLRNFillExtrusionLayer.m} +0 -0
- /package/ios/{MLRNFillExtrusionLayerManager.h → components/layers/MLRNFillExtrusionLayerManager.h} +0 -0
- /package/ios/{MLRNFillExtrusionLayerManager.m → components/layers/MLRNFillExtrusionLayerManager.m} +0 -0
- /package/ios/{MLRNFillLayer.h → components/layers/MLRNFillLayer.h} +0 -0
- /package/ios/{MLRNFillLayer.m → components/layers/MLRNFillLayer.m} +0 -0
- /package/ios/{MLRNFillLayerManager.h → components/layers/MLRNFillLayerManager.h} +0 -0
- /package/ios/{MLRNFillLayerManager.m → components/layers/MLRNFillLayerManager.m} +0 -0
- /package/ios/{MLRNHeatmapLayer.h → components/layers/MLRNHeatmapLayer.h} +0 -0
- /package/ios/{MLRNHeatmapLayer.m → components/layers/MLRNHeatmapLayer.m} +0 -0
- /package/ios/{MLRNHeatmapLayerManager.h → components/layers/MLRNHeatmapLayerManager.h} +0 -0
- /package/ios/{MLRNHeatmapLayerManager.m → components/layers/MLRNHeatmapLayerManager.m} +0 -0
- /package/ios/{MLRNLineLayer.h → components/layers/MLRNLineLayer.h} +0 -0
- /package/ios/{MLRNLineLayer.m → components/layers/MLRNLineLayer.m} +0 -0
- /package/ios/{MLRNLineLayerManager.h → components/layers/MLRNLineLayerManager.h} +0 -0
- /package/ios/{MLRNLineLayerManager.m → components/layers/MLRNLineLayerManager.m} +0 -0
- /package/ios/{MLRNRasterLayer.h → components/layers/MLRNRasterLayer.h} +0 -0
- /package/ios/{MLRNRasterLayer.m → components/layers/MLRNRasterLayer.m} +0 -0
- /package/ios/{MLRNRasterLayerManager.h → components/layers/MLRNRasterLayerManager.h} +0 -0
- /package/ios/{MLRNRasterLayerManager.m → components/layers/MLRNRasterLayerManager.m} +0 -0
- /package/ios/{MLRNSymbolLayer.h → components/layers/MLRNSymbolLayer.h} +0 -0
- /package/ios/{MLRNSymbolLayer.m → components/layers/MLRNSymbolLayer.m} +0 -0
- /package/ios/{MLRNSymbolLayerManager.h → components/layers/MLRNSymbolLayerManager.h} +0 -0
- /package/ios/{MLRNSymbolLayerManager.m → components/layers/MLRNSymbolLayerManager.m} +0 -0
- /package/ios/{MLRNVectorLayer.h → components/layers/MLRNVectorLayer.h} +0 -0
- /package/ios/{MLRNVectorLayer.m → components/layers/MLRNVectorLayer.m} +0 -0
- /package/ios/{MLRNStyle.h → components/layers/style/MLRNStyle.h} +0 -0
- /package/ios/{MLRNImageSource.h → components/sources/MLRNImageSource.h} +0 -0
- /package/ios/{MLRNImageSource.m → components/sources/MLRNImageSource.m} +0 -0
- /package/ios/{MLRNImageSourceManager.h → components/sources/MLRNImageSourceManager.h} +0 -0
- /package/ios/{MLRNImageSourceManager.m → components/sources/MLRNImageSourceManager.m} +0 -0
- /package/ios/{MLRNRasterSource.h → components/sources/MLRNRasterSource.h} +0 -0
- /package/ios/{MLRNRasterSource.m → components/sources/MLRNRasterSource.m} +0 -0
- /package/ios/{MLRNRasterSourceManager.h → components/sources/MLRNRasterSourceManager.h} +0 -0
- /package/ios/{MLRNRasterSourceManager.m → components/sources/MLRNRasterSourceManager.m} +0 -0
- /package/ios/{MLRNShapeSourceManager.h → components/sources/MLRNShapeSourceManager.h} +0 -0
- /package/ios/{MLRNSource.m → components/sources/MLRNSource.m} +0 -0
- /package/ios/{MLRNTileSource.h → components/sources/MLRNTileSource.h} +0 -0
- /package/ios/{MLRNTileSource.m → components/sources/MLRNTileSource.m} +0 -0
- /package/ios/{MLRNVectorSource.h → components/sources/MLRNVectorSource.h} +0 -0
- /package/ios/{MLRNVectorSource.m → components/sources/MLRNVectorSource.m} +0 -0
- /package/ios/{MLRNVectorSourceManager.h → components/sources/MLRNVectorSourceManager.h} +0 -0
- /package/ios/{MLRNVectorSourceManager.m → components/sources/MLRNVectorSourceManager.m} +0 -0
- /package/ios/{MLRNUserLocation.h → components/user-location/MLRNUserLocation.h} +0 -0
- /package/ios/{MLRNUserLocation.m → components/user-location/MLRNUserLocation.m} +0 -0
- /package/ios/{MLRNCustomHeaders.h → modules/mlrn/MLRNCustomHeaders.h} +0 -0
- /package/ios/{MLRNCustomHeaders.m → modules/mlrn/MLRNCustomHeaders.m} +0 -0
- /package/ios/{MLRNModule.h → modules/mlrn/MLRNModule.h} +0 -0
- /package/ios/{MLRNSnapshotModule → modules/snapshot}/MLRNSnapshotModule.h +0 -0
- /package/ios/{FilterParser.h → utils/FilterParser.h} +0 -0
- /package/ios/{FilterParser.m → utils/FilterParser.m} +0 -0
- /package/ios/{MLRNEvent.h → utils/MLRNEvent.h} +0 -0
- /package/ios/{MLRNEventProtocol.h → utils/MLRNEventProtocol.h} +0 -0
- /package/lib/commonjs/components/{Callout.js → annotations/Callout.js} +0 -0
- /package/lib/module/components/{Callout.js → annotations/Callout.js} +0 -0
- /package/lib/typescript/commonjs/src/components/{Callout.d.ts → annotations/Callout.d.ts} +0 -0
- /package/lib/typescript/commonjs/src/components/{MarkerView.d.ts → annotations/MarkerView.d.ts} +0 -0
- /package/lib/typescript/commonjs/src/components/{PointAnnotation.d.ts → annotations/PointAnnotation.d.ts} +0 -0
- /package/lib/typescript/module/src/components/{Callout.d.ts → annotations/Callout.d.ts} +0 -0
- /package/lib/typescript/module/src/components/{MarkerView.d.ts → annotations/MarkerView.d.ts} +0 -0
- /package/lib/typescript/module/src/components/{PointAnnotation.d.ts → annotations/PointAnnotation.d.ts} +0 -0
- /package/src/components/{Callout.tsx → annotations/Callout.tsx} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_useAbstractLayer","_jsxRuntime","MLRNModule","NativeModules","NATIVE_MODULE_NAME","exports","MLRNHeatmapLayer","requireNativeComponent","HeatmapLayer","sourceID","StyleSource","DefaultSourceID","props","baseProps","setNativeLayer","useAbstractLayer","jsx","ref"],"sourceRoot":"../../../src","sources":["components/HeatmapLayer.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAEA,IAAAC,iBAAA,GAAAD,OAAA;AAImC,IAAAE,WAAA,GAAAF,OAAA;AAInC,MAAMG,UAAU,GAAGC,0BAAa,CAACD,UAAU;AAEpC,MAAME,kBAAkB,GAAAC,OAAA,CAAAD,kBAAA,GAAG,kBAAkB;AAapD,MAAME,gBAAgB,GACpB,IAAAC,mCAAsB,EAAcH,kBAAkB,CAAC;AACzD;AACA;AACA;AACO,MAAMI,YAAY,GAAGA,CAAC;EAC3BC,QAAQ,GAAGP,UAAU,CAACQ,WAAW,CAACC,eAAe;EACjD,GAAGC;AACc,CAAC,KAAK;EACvB,MAAM;IAAEC,SAAS;IAAEC;EAAe,CAAC,GAAG,IAAAC,kCAAgB,EAGpD;IACA,GAAGH,KAAK;IACRH;EACF,CAAC,CAAC;EAEF,oBAAO,IAAAR,WAAA,CAAAe,GAAA,EAACV,gBAAgB;IAACW,GAAG,EAAEH,cAAe;IAAA,GAAKD;EAAS,CAAG,CAAC;AACjE,CAAC;AAACR,OAAA,CAAAG,YAAA,GAAAA,YAAA","ignoreList":[]}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.NATIVE_MODULE_NAME = exports.ImageSource = void 0;
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _useAbstractSource = require("../hooks/useAbstractSource.js");
|
|
9
|
-
var _index = require("../utils/index.js");
|
|
10
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
-
const NATIVE_MODULE_NAME = exports.NATIVE_MODULE_NAME = "MLRNImageSource";
|
|
12
|
-
const MLRNImageSource = (0, _reactNative.requireNativeComponent)(NATIVE_MODULE_NAME);
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* ImageSource is a content source that is used for a georeferenced raster image to be shown on the map.
|
|
16
|
-
* The georeferenced image scales and rotates as the user zooms and rotates the map
|
|
17
|
-
*/
|
|
18
|
-
const ImageSource = props => {
|
|
19
|
-
const {
|
|
20
|
-
setNativeRef
|
|
21
|
-
} = (0, _useAbstractSource.useAbstractSource)();
|
|
22
|
-
const _getURL = () => {
|
|
23
|
-
return (0, _index.isNumber)(props.url) ? (0, _index.resolveImagePath)(props.url) : props.url;
|
|
24
|
-
};
|
|
25
|
-
if (!props.url || !props.coordinates || !props.coordinates.length) {
|
|
26
|
-
return null;
|
|
27
|
-
}
|
|
28
|
-
const allProps = {
|
|
29
|
-
...props,
|
|
30
|
-
url: _getURL()
|
|
31
|
-
};
|
|
32
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MLRNImageSource, {
|
|
33
|
-
ref: setNativeRef,
|
|
34
|
-
...allProps,
|
|
35
|
-
children: (0, _index.cloneReactChildrenWithProps)(allProps.children, {
|
|
36
|
-
sourceID: allProps.id
|
|
37
|
-
})
|
|
38
|
-
});
|
|
39
|
-
};
|
|
40
|
-
exports.ImageSource = ImageSource;
|
|
41
|
-
//# sourceMappingURL=ImageSource.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_useAbstractSource","_index","_jsxRuntime","NATIVE_MODULE_NAME","exports","MLRNImageSource","requireNativeComponent","ImageSource","props","setNativeRef","useAbstractSource","_getURL","isNumber","url","resolveImagePath","coordinates","length","allProps","jsx","ref","children","cloneReactChildrenWithProps","sourceID","id"],"sourceRoot":"../../../src","sources":["components/ImageSource.tsx"],"mappings":";;;;;;AACA,IAAAA,YAAA,GAAAC,OAAA;AAEA,IAAAC,kBAAA,GAAAD,OAAA;AAEA,IAAAE,MAAA,GAAAF,OAAA;AAIkB,IAAAG,WAAA,GAAAH,OAAA;AAEX,MAAMI,kBAAkB,GAAAC,OAAA,CAAAD,kBAAA,GAAG,iBAAiB;AA2BnD,MAAME,eAAe,GAAG,IAAAC,mCAAsB,EAAcH,kBAAkB,CAAC;;AAE/E;AACA;AACA;AACA;AACO,MAAMI,WAAW,GAAIC,KAAuB,IAAK;EACtD,MAAM;IAAEC;EAAa,CAAC,GAAG,IAAAC,oCAAiB,EAAc,CAAC;EAEzD,MAAMC,OAAO,GAAGA,CAAA,KAA0B;IACxC,OAAO,IAAAC,eAAQ,EAACJ,KAAK,CAACK,GAAG,CAAC,GAAG,IAAAC,uBAAgB,EAACN,KAAK,CAACK,GAAG,CAAC,GAAGL,KAAK,CAACK,GAAG;EACtE,CAAC;EAED,IAAI,CAACL,KAAK,CAACK,GAAG,IAAI,CAACL,KAAK,CAACO,WAAW,IAAI,CAACP,KAAK,CAACO,WAAW,CAACC,MAAM,EAAE;IACjE,OAAO,IAAI;EACb;EAEA,MAAMC,QAAQ,GAAG;IACf,GAAGT,KAAK;IACRK,GAAG,EAAEF,OAAO,CAAC;EACf,CAAC;EAED,oBACE,IAAAT,WAAA,CAAAgB,GAAA,EAACb,eAAe;IAACc,GAAG,EAAEV,YAAa;IAAA,GAAKQ,QAAQ;IAAAG,QAAA,EAC7C,IAAAC,kCAA2B,EAACJ,QAAQ,CAACG,QAAQ,EAAE;MAC9CE,QAAQ,EAAEL,QAAQ,CAACM;IACrB,CAAC;EAAC,CACa,CAAC;AAEtB,CAAC;AAACnB,OAAA,CAAAG,WAAA,GAAAA,WAAA","ignoreList":[]}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.NATIVE_MODULE_NAME = exports.Light = void 0;
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _useAbstractLayer = require("../hooks/useAbstractLayer.js");
|
|
9
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
-
const NATIVE_MODULE_NAME = exports.NATIVE_MODULE_NAME = "MLRNLight";
|
|
11
|
-
const MLRNLight = (0, _reactNative.requireNativeComponent)(NATIVE_MODULE_NAME);
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Light represents the light source for extruded geometries
|
|
15
|
-
*/
|
|
16
|
-
const Light = props => {
|
|
17
|
-
const {
|
|
18
|
-
baseProps,
|
|
19
|
-
setNativeLayer
|
|
20
|
-
} = (0, _useAbstractLayer.useAbstractLayer)({
|
|
21
|
-
...props
|
|
22
|
-
});
|
|
23
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MLRNLight, {
|
|
24
|
-
ref: setNativeLayer,
|
|
25
|
-
testID: "mlrnLight",
|
|
26
|
-
...baseProps
|
|
27
|
-
});
|
|
28
|
-
};
|
|
29
|
-
exports.Light = Light;
|
|
30
|
-
//# sourceMappingURL=Light.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_useAbstractLayer","_jsxRuntime","NATIVE_MODULE_NAME","exports","MLRNLight","requireNativeComponent","Light","props","baseProps","setNativeLayer","useAbstractLayer","jsx","ref","testID"],"sourceRoot":"../../../src","sources":["components/Light.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAEA,IAAAC,iBAAA,GAAAD,OAAA;AAGmC,IAAAE,WAAA,GAAAF,OAAA;AAK5B,MAAMG,kBAAkB,GAAAC,OAAA,CAAAD,kBAAA,GAAG,WAAW;AAa7C,MAAME,SAAS,GAAG,IAAAC,mCAAsB,EAAcH,kBAAkB,CAAC;;AAEzE;AACA;AACA;AACO,MAAMI,KAAK,GAAIC,KAAiB,IAAK;EAC1C,MAAM;IAAEC,SAAS;IAAEC;EAAe,CAAC,GAAG,IAAAC,kCAAgB,EAGpD;IACA,GAAGH;EACL,CAAC,CAAC;EAEF,oBAAO,IAAAN,WAAA,CAAAU,GAAA,EAACP,SAAS;IAACQ,GAAG,EAAEH,cAAe;IAACI,MAAM,EAAC,WAAW;IAAA,GAAKL;EAAS,CAAG,CAAC;AAC7E,CAAC;AAACL,OAAA,CAAAG,KAAA,GAAAA,KAAA","ignoreList":[]}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.NATIVE_MODULE_NAME = exports.LineLayer = void 0;
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _useAbstractLayer = require("../hooks/useAbstractLayer.js");
|
|
9
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
-
const MLRNModule = _reactNative.NativeModules.MLRNModule;
|
|
11
|
-
const NATIVE_MODULE_NAME = exports.NATIVE_MODULE_NAME = "MLRNLineLayer";
|
|
12
|
-
const MLRNLineLayer = (0, _reactNative.requireNativeComponent)(NATIVE_MODULE_NAME);
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* LineLayer is a style layer that renders one or more stroked polylines on the map.
|
|
16
|
-
*/
|
|
17
|
-
const LineLayer = ({
|
|
18
|
-
sourceID = MLRNModule.StyleSource.DefaultSourceID,
|
|
19
|
-
...props
|
|
20
|
-
}) => {
|
|
21
|
-
const {
|
|
22
|
-
baseProps,
|
|
23
|
-
setNativeLayer
|
|
24
|
-
} = (0, _useAbstractLayer.useAbstractLayer)({
|
|
25
|
-
...props,
|
|
26
|
-
sourceID
|
|
27
|
-
});
|
|
28
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MLRNLineLayer, {
|
|
29
|
-
ref: setNativeLayer,
|
|
30
|
-
...baseProps
|
|
31
|
-
});
|
|
32
|
-
};
|
|
33
|
-
exports.LineLayer = LineLayer;
|
|
34
|
-
//# sourceMappingURL=LineLayer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_useAbstractLayer","_jsxRuntime","MLRNModule","NativeModules","NATIVE_MODULE_NAME","exports","MLRNLineLayer","requireNativeComponent","LineLayer","sourceID","StyleSource","DefaultSourceID","props","baseProps","setNativeLayer","useAbstractLayer","jsx","ref"],"sourceRoot":"../../../src","sources":["components/LineLayer.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAEA,IAAAC,iBAAA,GAAAD,OAAA;AAImC,IAAAE,WAAA,GAAAF,OAAA;AAInC,MAAMG,UAAU,GAAGC,0BAAa,CAACD,UAAU;AAEpC,MAAME,kBAAkB,GAAAC,OAAA,CAAAD,kBAAA,GAAG,eAAe;AAWjD,MAAME,aAAa,GACjB,IAAAC,mCAAsB,EAAkBH,kBAAkB,CAAC;;AAE7D;AACA;AACA;AACO,MAAMI,SAAS,GAAGA,CAAC;EACxBC,QAAQ,GAAGP,UAAU,CAACQ,WAAW,CAACC,eAAe;EACjD,GAAGC;AACW,CAAC,KAAK;EACpB,MAAM;IAAEC,SAAS;IAAEC;EAAe,CAAC,GAAG,IAAAC,kCAAgB,EAGpD;IACA,GAAGH,KAAK;IACRH;EACF,CAAC,CAAC;EAEF,oBAAO,IAAAR,WAAA,CAAAe,GAAA,EAACV,aAAa;IAACW,GAAG,EAAEH,cAAe;IAAA,GAAKD;EAAS,CAAG,CAAC;AAC9D,CAAC;AAACR,OAAA,CAAAG,SAAA,GAAAA,SAAA","ignoreList":[]}
|
|
@@ -1,449 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.NATIVE_MODULE_NAME = exports.MapView = exports.ANDROID_TEXTURE_NATIVE_MODULE_NAME = void 0;
|
|
7
|
-
var _debounce = _interopRequireDefault(require("debounce"));
|
|
8
|
-
var _react = require("react");
|
|
9
|
-
var _reactNative = require("react-native");
|
|
10
|
-
var _useNativeBridge = require("../hooks/useNativeBridge.js");
|
|
11
|
-
var _useOnce = require("../hooks/useOnce.js");
|
|
12
|
-
var _index = require("../utils/index.js");
|
|
13
|
-
var _Logger = require("../utils/Logger.js");
|
|
14
|
-
var _filterUtils = require("../utils/filterUtils.js");
|
|
15
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
16
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
17
|
-
const MLRNModule = _reactNative.NativeModules.MLRNModule;
|
|
18
|
-
if (MLRNModule == null) {
|
|
19
|
-
console.error("Native module of @maplibre/maplibre-react-native library was not registered properly, please consult the docs: https://github.com/maplibre/maplibre-react-native");
|
|
20
|
-
}
|
|
21
|
-
const NATIVE_MODULE_NAME = exports.NATIVE_MODULE_NAME = "MLRNMapView";
|
|
22
|
-
const ANDROID_TEXTURE_NATIVE_MODULE_NAME = exports.ANDROID_TEXTURE_NATIVE_MODULE_NAME = "MLRNAndroidTextureMapView";
|
|
23
|
-
const styles = _reactNative.StyleSheet.create({
|
|
24
|
-
matchParent: {
|
|
25
|
-
flex: 1
|
|
26
|
-
}
|
|
27
|
-
});
|
|
28
|
-
/**
|
|
29
|
-
* MapView backed by MapLibre Native
|
|
30
|
-
*/
|
|
31
|
-
const MapView = exports.MapView = /*#__PURE__*/(0, _react.memo)(/*#__PURE__*/(0, _react.forwardRef)(({
|
|
32
|
-
localizeLabels = false,
|
|
33
|
-
scrollEnabled = true,
|
|
34
|
-
pitchEnabled = true,
|
|
35
|
-
rotateEnabled = true,
|
|
36
|
-
attributionEnabled = true,
|
|
37
|
-
logoEnabled = false,
|
|
38
|
-
surfaceView = false,
|
|
39
|
-
regionWillChangeDebounceTime = 10,
|
|
40
|
-
regionDidChangeDebounceTime = 500,
|
|
41
|
-
...props
|
|
42
|
-
}, ref) => {
|
|
43
|
-
// * exposes the methods of the function component so we don't break projects that depend on calling this methods
|
|
44
|
-
(0, _react.useImperativeHandle)(ref, () => ({
|
|
45
|
-
/**
|
|
46
|
-
* Converts a geographic coordinate to a pixel point of the view.
|
|
47
|
-
*
|
|
48
|
-
* @example
|
|
49
|
-
* const pointInView = await mapViewRef.current?.getPointInView([-37.817070, 144.949901]);
|
|
50
|
-
*
|
|
51
|
-
* @param {GeoJSON.Position} coordinate Geographic coordinate
|
|
52
|
-
* @return {[x: number, y: number]} Pixel point
|
|
53
|
-
*/
|
|
54
|
-
getPointInView,
|
|
55
|
-
/**
|
|
56
|
-
* Converts a pixel point of the view to a geographic coordinate.
|
|
57
|
-
*
|
|
58
|
-
* @example
|
|
59
|
-
* const coordinate = await mapViewRef.current?.getCoordinateFromView([100, 100]);
|
|
60
|
-
*
|
|
61
|
-
* @param {[x: number, y: number]} point Pixel point
|
|
62
|
-
* @return {GeoJSON.Position} Geographic coordinate
|
|
63
|
-
*/
|
|
64
|
-
getCoordinateFromView,
|
|
65
|
-
/**
|
|
66
|
-
* The coordinate bounds(ne, sw) visible in the users’s viewport.
|
|
67
|
-
*
|
|
68
|
-
* @example
|
|
69
|
-
* const visibleBounds = await this._map.getVisibleBounds();
|
|
70
|
-
*
|
|
71
|
-
* @return {Array}
|
|
72
|
-
*/
|
|
73
|
-
getVisibleBounds,
|
|
74
|
-
/**
|
|
75
|
-
* Returns an array of rendered map features that intersect with a given point.
|
|
76
|
-
*
|
|
77
|
-
* @example
|
|
78
|
-
* this._map.queryRenderedFeaturesAtPoint([30, 40], ['==', 'type', 'Point'], ['id1', 'id2'])
|
|
79
|
-
*
|
|
80
|
-
* @param {number[]} coordinate - A point expressed in the map view’s coordinate system.
|
|
81
|
-
* @param {Array=} filter - A set of strings that correspond to the names of layers defined in the current style. Only the features contained in these layers are included in the returned array.
|
|
82
|
-
* @param {Array=} layerIDs - A array of layer id's to filter the features by
|
|
83
|
-
* @return {GeoJSON.FeatureCollection}
|
|
84
|
-
*/
|
|
85
|
-
queryRenderedFeaturesAtPoint,
|
|
86
|
-
/**
|
|
87
|
-
* Returns an array of rendered map features that intersect with the given rectangle,
|
|
88
|
-
* restricted to the given style layers and filtered by the given predicate.
|
|
89
|
-
*
|
|
90
|
-
* @example
|
|
91
|
-
* this._map.queryRenderedFeaturesInRect([30, 40, 20, 10], ['==', 'type', 'Point'], ['id1', 'id2'])
|
|
92
|
-
*
|
|
93
|
-
* @param {number[]} bbox - A rectangle expressed in the map view’s coordinate system.
|
|
94
|
-
* @param {Array=} filter - A set of strings that correspond to the names of layers defined in the current style. Only the features contained in these layers are included in the returned array.
|
|
95
|
-
* @param {Array=} layerIDs - A array of layer id's to filter the features by
|
|
96
|
-
* @return {GeoJSON.FeatureCollection}
|
|
97
|
-
*/
|
|
98
|
-
queryRenderedFeaturesInRect,
|
|
99
|
-
/**
|
|
100
|
-
* Takes snapshot of map with current tiles and returns a URI to the image
|
|
101
|
-
* @param {boolean} writeToDisk If true will create a temp file, otherwise it is in base64
|
|
102
|
-
* @return {string}
|
|
103
|
-
*/
|
|
104
|
-
takeSnap,
|
|
105
|
-
/**
|
|
106
|
-
* Returns the current zoom of the map view.
|
|
107
|
-
*
|
|
108
|
-
* @example
|
|
109
|
-
* const zoom = await this._map.getZoom();
|
|
110
|
-
*
|
|
111
|
-
* @return {number}
|
|
112
|
-
*/
|
|
113
|
-
getZoom,
|
|
114
|
-
/**
|
|
115
|
-
* Returns the map's geographical centerpoint
|
|
116
|
-
*
|
|
117
|
-
* @example
|
|
118
|
-
* const center = await this._map.getCenter();
|
|
119
|
-
*
|
|
120
|
-
* @return {number[]} Coordinates
|
|
121
|
-
*/
|
|
122
|
-
getCenter,
|
|
123
|
-
/**
|
|
124
|
-
* Sets the visibility of all the layers referencing the specified `sourceLayerId` and/or `sourceId`
|
|
125
|
-
*
|
|
126
|
-
* @example
|
|
127
|
-
* await this._map.setSourceVisibility(false, 'composite', 'building')
|
|
128
|
-
*
|
|
129
|
-
* @param {boolean} visible - Visibility of the layers
|
|
130
|
-
* @param {string} sourceId - Identifier of the target source (e.g. 'composite')
|
|
131
|
-
* @param {string=} sourceLayerId - Identifier of the target source-layer (e.g. 'building')
|
|
132
|
-
*/
|
|
133
|
-
setSourceVisibility,
|
|
134
|
-
/**
|
|
135
|
-
* Show the attribution and telemetry action sheet.
|
|
136
|
-
* If you implement a custom attribution button, you should add this action to the button.
|
|
137
|
-
*/
|
|
138
|
-
showAttribution,
|
|
139
|
-
setNativeProps
|
|
140
|
-
}));
|
|
141
|
-
const {
|
|
142
|
-
_runNativeCommand,
|
|
143
|
-
_runPendingNativeCommands,
|
|
144
|
-
_onAndroidCallback
|
|
145
|
-
} = (0, _useNativeBridge.useNativeBridge)(NATIVE_MODULE_NAME);
|
|
146
|
-
const logger = (0, _react.useRef)(_Logger.Logger.sharedInstance());
|
|
147
|
-
// * start the logger before anyuseEffect
|
|
148
|
-
(0, _useOnce.useOnce)(() => {
|
|
149
|
-
logger.current.start();
|
|
150
|
-
});
|
|
151
|
-
const _nativeRef = (0, _react.useRef)(null);
|
|
152
|
-
const [isReady, setIsReady] = (0, _react.useState)(false);
|
|
153
|
-
|
|
154
|
-
// Cleanups on unmount
|
|
155
|
-
(0, _react.useEffect)(() => {
|
|
156
|
-
const currentLogger = logger.current;
|
|
157
|
-
return () => {
|
|
158
|
-
_onDebouncedRegionWillChange.clear();
|
|
159
|
-
_onDebouncedRegionDidChange.clear();
|
|
160
|
-
currentLogger.stop();
|
|
161
|
-
};
|
|
162
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
163
|
-
}, []);
|
|
164
|
-
|
|
165
|
-
// This will run on every render
|
|
166
|
-
// so similar to componentDidMount and UNSAFE_componentWillReceiveProps
|
|
167
|
-
(0, _react.useEffect)(() => {
|
|
168
|
-
_setHandledMapChangedEvents(props);
|
|
169
|
-
}, [props]);
|
|
170
|
-
const _setHandledMapChangedEvents = props => {
|
|
171
|
-
if ((0, _index.isAndroid)()) {
|
|
172
|
-
const events = [];
|
|
173
|
-
if (props.onRegionWillChange) {
|
|
174
|
-
events.push(MLRNModule.EventTypes.RegionWillChange);
|
|
175
|
-
}
|
|
176
|
-
if (props.onRegionIsChanging) {
|
|
177
|
-
events.push(MLRNModule.EventTypes.RegionIsChanging);
|
|
178
|
-
}
|
|
179
|
-
if (props.onRegionDidChange) {
|
|
180
|
-
events.push(MLRNModule.EventTypes.RegionDidChange);
|
|
181
|
-
}
|
|
182
|
-
if (props.onUserLocationUpdate) {
|
|
183
|
-
events.push(MLRNModule.EventTypes.UserLocationUpdated);
|
|
184
|
-
}
|
|
185
|
-
if (props.onWillStartLoadingMap) {
|
|
186
|
-
events.push(MLRNModule.EventTypes.WillStartLoadingMap);
|
|
187
|
-
}
|
|
188
|
-
if (props.onDidFinishLoadingMap) {
|
|
189
|
-
events.push(MLRNModule.EventTypes.DidFinishLoadingMap);
|
|
190
|
-
}
|
|
191
|
-
if (props.onDidFailLoadingMap) {
|
|
192
|
-
events.push(MLRNModule.EventTypes.DidFailLoadingMap);
|
|
193
|
-
}
|
|
194
|
-
if (props.onWillStartRenderingFrame) {
|
|
195
|
-
events.push(MLRNModule.EventTypes.WillStartRenderingFrame);
|
|
196
|
-
}
|
|
197
|
-
if (props.onDidFinishRenderingFrame) {
|
|
198
|
-
events.push(MLRNModule.EventTypes.DidFinishRenderingFrame);
|
|
199
|
-
}
|
|
200
|
-
if (props.onDidFinishRenderingFrameFully) {
|
|
201
|
-
events.push(MLRNModule.EventTypes.DidFinishRenderingFrameFully);
|
|
202
|
-
}
|
|
203
|
-
if (props.onWillStartRenderingMap) {
|
|
204
|
-
events.push(MLRNModule.EventTypes.WillStartRenderingMap);
|
|
205
|
-
}
|
|
206
|
-
if (props.onDidFinishRenderingMap) {
|
|
207
|
-
events.push(MLRNModule.EventTypes.DidFinishRenderingMap);
|
|
208
|
-
}
|
|
209
|
-
if (props.onDidFinishRenderingMapFully) {
|
|
210
|
-
events.push(MLRNModule.EventTypes.DidFinishRenderingMapFully);
|
|
211
|
-
}
|
|
212
|
-
if (props.onDidFinishLoadingStyle) {
|
|
213
|
-
events.push(MLRNModule.EventTypes.DidFinishLoadingStyle);
|
|
214
|
-
}
|
|
215
|
-
_runNativeCommand("setHandledMapChangedEvents", _nativeRef.current, events);
|
|
216
|
-
}
|
|
217
|
-
};
|
|
218
|
-
const getPointInView = async coordinate => {
|
|
219
|
-
const res = await _runNativeCommand("getPointInView", _nativeRef.current, [coordinate]);
|
|
220
|
-
return res.pointInView;
|
|
221
|
-
};
|
|
222
|
-
const getCoordinateFromView = async point => {
|
|
223
|
-
const res = await _runNativeCommand("getCoordinateFromView", _nativeRef.current, [point]);
|
|
224
|
-
return res.coordinateFromView;
|
|
225
|
-
};
|
|
226
|
-
const getVisibleBounds = async () => {
|
|
227
|
-
const res = await _runNativeCommand("getVisibleBounds", _nativeRef.current);
|
|
228
|
-
return res.visibleBounds;
|
|
229
|
-
};
|
|
230
|
-
const queryRenderedFeaturesAtPoint = async (point, filter, layerIDs = []) => {
|
|
231
|
-
if (!point || point.length < 2) {
|
|
232
|
-
throw new Error("Must pass in valid point in the map view's cooridnate system[x, y]");
|
|
233
|
-
}
|
|
234
|
-
const res = await _runNativeCommand("queryRenderedFeaturesAtPoint", _nativeRef.current, [point, (0, _filterUtils.getFilter)(filter), layerIDs]);
|
|
235
|
-
if ((0, _index.isAndroid)()) {
|
|
236
|
-
return JSON.parse(res.data);
|
|
237
|
-
}
|
|
238
|
-
return res.data;
|
|
239
|
-
};
|
|
240
|
-
const queryRenderedFeaturesInRect = async (bbox, filter, layerIDs = []) => {
|
|
241
|
-
if (!bbox || bbox.length !== 4) {
|
|
242
|
-
throw new Error("Must pass in a valid bounding box[top, right, bottom, left]");
|
|
243
|
-
}
|
|
244
|
-
const res = await _runNativeCommand("queryRenderedFeaturesInRect", _nativeRef.current, [bbox, (0, _filterUtils.getFilter)(filter), layerIDs]);
|
|
245
|
-
if ((0, _index.isAndroid)()) {
|
|
246
|
-
return JSON.parse(res.data);
|
|
247
|
-
}
|
|
248
|
-
return res.data;
|
|
249
|
-
};
|
|
250
|
-
const takeSnap = async (writeToDisk = false) => {
|
|
251
|
-
const res = await _runNativeCommand("takeSnap", _nativeRef.current, [writeToDisk]);
|
|
252
|
-
return res.uri;
|
|
253
|
-
};
|
|
254
|
-
const getZoom = async () => {
|
|
255
|
-
const res = await _runNativeCommand("getZoom", _nativeRef.current);
|
|
256
|
-
return res.zoom;
|
|
257
|
-
};
|
|
258
|
-
const getCenter = async () => {
|
|
259
|
-
const res = await _runNativeCommand("getCenter", _nativeRef.current);
|
|
260
|
-
return res.center;
|
|
261
|
-
};
|
|
262
|
-
const setSourceVisibility = (visible, sourceId, sourceLayerId = null) => {
|
|
263
|
-
_runNativeCommand("setSourceVisibility", _nativeRef.current, [visible, sourceId, sourceLayerId]);
|
|
264
|
-
};
|
|
265
|
-
const showAttribution = async () => {
|
|
266
|
-
_runNativeCommand("showAttribution", _nativeRef.current);
|
|
267
|
-
};
|
|
268
|
-
const _onPress = e => {
|
|
269
|
-
if ((0, _index.isFunction)(props.onPress)) {
|
|
270
|
-
props.onPress(e.nativeEvent.payload);
|
|
271
|
-
}
|
|
272
|
-
};
|
|
273
|
-
const _onLongPress = e => {
|
|
274
|
-
if ((0, _index.isFunction)(props.onLongPress)) {
|
|
275
|
-
props.onLongPress(e.nativeEvent.payload);
|
|
276
|
-
}
|
|
277
|
-
};
|
|
278
|
-
const _onRegionWillChange = payload => {
|
|
279
|
-
if ((0, _index.isFunction)(props.onRegionWillChange)) {
|
|
280
|
-
props.onRegionWillChange(payload);
|
|
281
|
-
}
|
|
282
|
-
};
|
|
283
|
-
const _onRegionDidChange = payload => {
|
|
284
|
-
if ((0, _index.isFunction)(props.onRegionDidChange)) {
|
|
285
|
-
props.onRegionDidChange(payload);
|
|
286
|
-
}
|
|
287
|
-
};
|
|
288
|
-
const _onDebouncedRegionWillChange = (0, _react.useCallback)((0, _debounce.default)(_onRegionWillChange, regionWillChangeDebounceTime, {
|
|
289
|
-
immediate: true
|
|
290
|
-
}), [_onRegionWillChange]);
|
|
291
|
-
const _onDebouncedRegionDidChange = (0, _react.useCallback)((0, _debounce.default)(_onRegionDidChange, regionDidChangeDebounceTime), [_onRegionDidChange]);
|
|
292
|
-
const _onChange = e => {
|
|
293
|
-
const {
|
|
294
|
-
type,
|
|
295
|
-
payload
|
|
296
|
-
} = e.nativeEvent;
|
|
297
|
-
let propName;
|
|
298
|
-
switch (type) {
|
|
299
|
-
case MLRNModule.EventTypes.RegionWillChange:
|
|
300
|
-
if (regionWillChangeDebounceTime && regionWillChangeDebounceTime > 0) {
|
|
301
|
-
if (payload) {
|
|
302
|
-
_onDebouncedRegionWillChange(payload);
|
|
303
|
-
}
|
|
304
|
-
} else {
|
|
305
|
-
propName = "onRegionWillChange";
|
|
306
|
-
}
|
|
307
|
-
break;
|
|
308
|
-
case MLRNModule.EventTypes.RegionIsChanging:
|
|
309
|
-
propName = "onRegionIsChanging";
|
|
310
|
-
break;
|
|
311
|
-
case MLRNModule.EventTypes.RegionDidChange:
|
|
312
|
-
if (regionDidChangeDebounceTime && regionDidChangeDebounceTime > 0) {
|
|
313
|
-
if (payload) {
|
|
314
|
-
_onDebouncedRegionDidChange(payload);
|
|
315
|
-
}
|
|
316
|
-
} else {
|
|
317
|
-
propName = "onRegionDidChange";
|
|
318
|
-
}
|
|
319
|
-
break;
|
|
320
|
-
case MLRNModule.EventTypes.UserLocationUpdated:
|
|
321
|
-
propName = "onUserLocationUpdate";
|
|
322
|
-
break;
|
|
323
|
-
case MLRNModule.EventTypes.WillStartLoadingMap:
|
|
324
|
-
propName = "onWillStartLoadingMap";
|
|
325
|
-
break;
|
|
326
|
-
case MLRNModule.EventTypes.DidFinishLoadingMap:
|
|
327
|
-
propName = "onDidFinishLoadingMap";
|
|
328
|
-
break;
|
|
329
|
-
case MLRNModule.EventTypes.DidFailLoadingMap:
|
|
330
|
-
propName = "onDidFailLoadingMap";
|
|
331
|
-
break;
|
|
332
|
-
case MLRNModule.EventTypes.WillStartRenderingFrame:
|
|
333
|
-
propName = "onWillStartRenderingFrame";
|
|
334
|
-
break;
|
|
335
|
-
case MLRNModule.EventTypes.DidFinishRenderingFrame:
|
|
336
|
-
propName = "onDidFinishRenderingFrame";
|
|
337
|
-
break;
|
|
338
|
-
case MLRNModule.EventTypes.DidFinishRenderingFrameFully:
|
|
339
|
-
propName = "onDidFinishRenderingFrameFully";
|
|
340
|
-
break;
|
|
341
|
-
case MLRNModule.EventTypes.WillStartRenderingMap:
|
|
342
|
-
propName = "onWillStartRenderingMap";
|
|
343
|
-
break;
|
|
344
|
-
case MLRNModule.EventTypes.DidFinishRenderingMap:
|
|
345
|
-
propName = "onDidFinishRenderingMap";
|
|
346
|
-
break;
|
|
347
|
-
case MLRNModule.EventTypes.DidFinishRenderingMapFully:
|
|
348
|
-
propName = "onDidFinishRenderingMapFully";
|
|
349
|
-
break;
|
|
350
|
-
case MLRNModule.EventTypes.DidFinishLoadingStyle:
|
|
351
|
-
propName = "onDidFinishLoadingStyle";
|
|
352
|
-
break;
|
|
353
|
-
default:
|
|
354
|
-
console.warn("Unhandled event callback type", type);
|
|
355
|
-
}
|
|
356
|
-
if (propName) {
|
|
357
|
-
_handleOnChange(propName, payload);
|
|
358
|
-
}
|
|
359
|
-
};
|
|
360
|
-
const _onLayout = () => {
|
|
361
|
-
setIsReady(true);
|
|
362
|
-
};
|
|
363
|
-
const _handleOnChange = (propName, payload) => {
|
|
364
|
-
const callable = props[propName];
|
|
365
|
-
if (callable && (0, _index.isFunction)(callable)) {
|
|
366
|
-
callable(payload);
|
|
367
|
-
}
|
|
368
|
-
};
|
|
369
|
-
const contentInsetValue = (0, _react.useMemo)(() => {
|
|
370
|
-
if (props.contentInset === undefined) {
|
|
371
|
-
return undefined;
|
|
372
|
-
}
|
|
373
|
-
if (!Array.isArray(props.contentInset)) {
|
|
374
|
-
return [props.contentInset];
|
|
375
|
-
}
|
|
376
|
-
return props.contentInset;
|
|
377
|
-
}, [props.contentInset]);
|
|
378
|
-
const _setNativeRef = nativeRef => {
|
|
379
|
-
_nativeRef.current = nativeRef;
|
|
380
|
-
_runPendingNativeCommands(nativeRef);
|
|
381
|
-
};
|
|
382
|
-
const setNativeProps = props => {
|
|
383
|
-
if (_nativeRef.current) {
|
|
384
|
-
_nativeRef.current.setNativeProps(props);
|
|
385
|
-
}
|
|
386
|
-
};
|
|
387
|
-
const nativeProps = (0, _react.useMemo)(() => {
|
|
388
|
-
const {
|
|
389
|
-
mapStyle,
|
|
390
|
-
...otherProps
|
|
391
|
-
} = props;
|
|
392
|
-
let nativeMapStyle = undefined;
|
|
393
|
-
if (mapStyle) {
|
|
394
|
-
if (typeof mapStyle === "string") {
|
|
395
|
-
nativeMapStyle = mapStyle;
|
|
396
|
-
} else if (typeof mapStyle === "object") {
|
|
397
|
-
nativeMapStyle = JSON.stringify(mapStyle);
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
return {
|
|
401
|
-
...otherProps,
|
|
402
|
-
localizeLabels,
|
|
403
|
-
scrollEnabled,
|
|
404
|
-
pitchEnabled,
|
|
405
|
-
rotateEnabled,
|
|
406
|
-
attributionEnabled,
|
|
407
|
-
logoEnabled,
|
|
408
|
-
surfaceView,
|
|
409
|
-
regionWillChangeDebounceTime,
|
|
410
|
-
regionDidChangeDebounceTime,
|
|
411
|
-
mapStyle: nativeMapStyle,
|
|
412
|
-
contentInset: contentInsetValue,
|
|
413
|
-
style: styles.matchParent
|
|
414
|
-
};
|
|
415
|
-
}, [props, localizeLabels, scrollEnabled, pitchEnabled, rotateEnabled, attributionEnabled, logoEnabled, surfaceView, regionWillChangeDebounceTime, regionDidChangeDebounceTime, contentInsetValue]);
|
|
416
|
-
const callbacks = {
|
|
417
|
-
ref: ref => _setNativeRef(ref),
|
|
418
|
-
onPress: _onPress,
|
|
419
|
-
onLongPress: _onLongPress,
|
|
420
|
-
onMapChange: _onChange,
|
|
421
|
-
onAndroidCallback: (0, _index.isAndroid)() ? _onAndroidCallback : undefined
|
|
422
|
-
};
|
|
423
|
-
let mapView = null;
|
|
424
|
-
if ((0, _index.isAndroid)() && !surfaceView && isReady) {
|
|
425
|
-
mapView = /*#__PURE__*/(0, _jsxRuntime.jsx)(MLRNAndroidTextureMapView, {
|
|
426
|
-
...nativeProps,
|
|
427
|
-
...callbacks,
|
|
428
|
-
children: props.children
|
|
429
|
-
});
|
|
430
|
-
} else if (isReady) {
|
|
431
|
-
mapView = /*#__PURE__*/(0, _jsxRuntime.jsx)(MLRNMapView, {
|
|
432
|
-
...nativeProps,
|
|
433
|
-
...callbacks,
|
|
434
|
-
children: props.children
|
|
435
|
-
});
|
|
436
|
-
}
|
|
437
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
438
|
-
onLayout: _onLayout,
|
|
439
|
-
style: props.style,
|
|
440
|
-
testID: mapView ? undefined : props.testID,
|
|
441
|
-
children: mapView
|
|
442
|
-
});
|
|
443
|
-
}));
|
|
444
|
-
const MLRNMapView = (0, _reactNative.requireNativeComponent)(NATIVE_MODULE_NAME);
|
|
445
|
-
let MLRNAndroidTextureMapView;
|
|
446
|
-
if ((0, _index.isAndroid)()) {
|
|
447
|
-
MLRNAndroidTextureMapView = (0, _reactNative.requireNativeComponent)(ANDROID_TEXTURE_NATIVE_MODULE_NAME);
|
|
448
|
-
}
|
|
449
|
-
//# sourceMappingURL=MapView.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_debounce","_interopRequireDefault","require","_react","_reactNative","_useNativeBridge","_useOnce","_index","_Logger","_filterUtils","_jsxRuntime","e","__esModule","default","MLRNModule","NativeModules","console","error","NATIVE_MODULE_NAME","exports","ANDROID_TEXTURE_NATIVE_MODULE_NAME","styles","StyleSheet","create","matchParent","flex","MapView","memo","forwardRef","localizeLabels","scrollEnabled","pitchEnabled","rotateEnabled","attributionEnabled","logoEnabled","surfaceView","regionWillChangeDebounceTime","regionDidChangeDebounceTime","props","ref","useImperativeHandle","getPointInView","getCoordinateFromView","getVisibleBounds","queryRenderedFeaturesAtPoint","queryRenderedFeaturesInRect","takeSnap","getZoom","getCenter","setSourceVisibility","showAttribution","setNativeProps","_runNativeCommand","_runPendingNativeCommands","_onAndroidCallback","useNativeBridge","logger","useRef","Logger","sharedInstance","useOnce","current","start","_nativeRef","isReady","setIsReady","useState","useEffect","currentLogger","_onDebouncedRegionWillChange","clear","_onDebouncedRegionDidChange","stop","_setHandledMapChangedEvents","isAndroid","events","onRegionWillChange","push","EventTypes","RegionWillChange","onRegionIsChanging","RegionIsChanging","onRegionDidChange","RegionDidChange","onUserLocationUpdate","UserLocationUpdated","onWillStartLoadingMap","WillStartLoadingMap","onDidFinishLoadingMap","DidFinishLoadingMap","onDidFailLoadingMap","DidFailLoadingMap","onWillStartRenderingFrame","WillStartRenderingFrame","onDidFinishRenderingFrame","DidFinishRenderingFrame","onDidFinishRenderingFrameFully","DidFinishRenderingFrameFully","onWillStartRenderingMap","WillStartRenderingMap","onDidFinishRenderingMap","DidFinishRenderingMap","onDidFinishRenderingMapFully","DidFinishRenderingMapFully","onDidFinishLoadingStyle","DidFinishLoadingStyle","coordinate","res","pointInView","point","coordinateFromView","visibleBounds","filter","layerIDs","length","Error","getFilter","JSON","parse","data","bbox","writeToDisk","uri","zoom","center","visible","sourceId","sourceLayerId","_onPress","isFunction","onPress","nativeEvent","payload","_onLongPress","onLongPress","_onRegionWillChange","_onRegionDidChange","useCallback","debounce","immediate","_onChange","type","propName","warn","_handleOnChange","_onLayout","callable","contentInsetValue","useMemo","contentInset","undefined","Array","isArray","_setNativeRef","nativeRef","nativeProps","mapStyle","otherProps","nativeMapStyle","stringify","style","callbacks","onMapChange","onAndroidCallback","mapView","jsx","MLRNAndroidTextureMapView","children","MLRNMapView","View","onLayout","testID","requireNativeComponent"],"sourceRoot":"../../../src","sources":["components/MapView.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.NATIVE_MODULE_NAME = exports.MarkerView = void 0;
|
|
7
|
-
var _helpers = require("@turf/helpers");
|
|
8
|
-
var _react = require("react");
|
|
9
|
-
var _reactNative = require("react-native");
|
|
10
|
-
var _PointAnnotation = require("./PointAnnotation.js");
|
|
11
|
-
var _index = require("../utils/index.js");
|
|
12
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
|
-
const NATIVE_MODULE_NAME = exports.NATIVE_MODULE_NAME = "MLRNMarkerView";
|
|
14
|
-
/**
|
|
15
|
-
* MarkerView allows you to place a interactive react native marker to the map.
|
|
16
|
-
*
|
|
17
|
-
* If you have static view consider using PointAnnotation or SymbolLayer they'll offer much better performance
|
|
18
|
-
* .
|
|
19
|
-
* This is based on [MakerView plugin](https://github.com/maplibre/maplibre-plugins-android/tree/main/plugin-markerview) on Android
|
|
20
|
-
* and PointAnnotation on iOS.
|
|
21
|
-
*/
|
|
22
|
-
const MarkerView = ({
|
|
23
|
-
anchor = {
|
|
24
|
-
x: 0.5,
|
|
25
|
-
y: 0.5
|
|
26
|
-
},
|
|
27
|
-
allowOverlap = false,
|
|
28
|
-
isSelected = false,
|
|
29
|
-
...rest
|
|
30
|
-
}) => {
|
|
31
|
-
const props = {
|
|
32
|
-
anchor,
|
|
33
|
-
allowOverlap,
|
|
34
|
-
isSelected,
|
|
35
|
-
...rest
|
|
36
|
-
};
|
|
37
|
-
const coordinate = props.coordinate ? (0, _index.toJSONString)((0, _helpers.point)(props.coordinate)) : undefined;
|
|
38
|
-
const idForPointAnnotation = (0, _react.useMemo)(() => {
|
|
39
|
-
lastId = lastId + 1;
|
|
40
|
-
return `MV-${lastId}`;
|
|
41
|
-
}, []);
|
|
42
|
-
if (_reactNative.Platform.OS === "ios") {
|
|
43
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PointAnnotation.PointAnnotation, {
|
|
44
|
-
id: idForPointAnnotation,
|
|
45
|
-
...props
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
const propsToSend = {
|
|
49
|
-
...props,
|
|
50
|
-
coordinate
|
|
51
|
-
};
|
|
52
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MLRNMarkerView, {
|
|
53
|
-
...propsToSend,
|
|
54
|
-
children: props.children
|
|
55
|
-
});
|
|
56
|
-
};
|
|
57
|
-
exports.MarkerView = MarkerView;
|
|
58
|
-
let lastId = 0;
|
|
59
|
-
const MLRNMarkerView = (0, _reactNative.requireNativeComponent)(NATIVE_MODULE_NAME);
|
|
60
|
-
//# sourceMappingURL=MarkerView.js.map
|