@maplibre/maplibre-react-native 10.4.0 → 11.0.0-alpha.10
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 +79 -0
- package/README.md +3 -5
- package/android/build.gradle +86 -110
- package/android/gradle.properties +6 -6
- package/android/src/main/AndroidManifest.xml +1 -3
- package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.kt +183 -0
- 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 +409 -0
- package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCameraManager.kt +69 -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 +0 -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/light/MLRNLight.java +56 -0
- package/android/src/main/java/org/maplibre/reactnative/components/light/MLRNLightManager.java +25 -0
- package/android/src/main/java/org/maplibre/reactnative/components/location/LocationComponentManager.java +1 -1
- 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 +1338 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.kt +187 -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/TrackUserLocationChangeEvent.kt +24 -0
- package/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java +0 -1
- package/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java +0 -19
- package/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java +1 -1
- package/android/src/main/java/org/maplibre/reactnative/location/TrackUserLocationMode.kt +43 -0
- package/android/src/main/java/org/maplibre/reactnative/location/TrackUserLocationState.java +15 -0
- package/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java +1 -1
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java +2 -84
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.kt +114 -0
- package/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java +2 -9
- package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.kt +322 -0
- package/android/src/main/java/org/maplibre/reactnative/utils/ReactTagResolver.kt +85 -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 +18 -0
- package/ios/components/camera/MLRNCameraComponentView.mm +192 -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/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/light/MLRNLight.h +10 -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 +112 -0
- package/ios/components/map-view/MLRNMapView.m +809 -0
- package/ios/components/map-view/MLRNMapViewComponentView.h +18 -0
- package/ios/components/map-view/MLRNMapViewComponentView.mm +400 -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 +249 -0
- package/ios/components/sources/MLRNShapeSource.h +36 -0
- package/ios/components/sources/MLRNSource.h +29 -0
- package/ios/components/user-location/MLRNNativeUserLocation.m +37 -0
- package/ios/modules/location/MLRNLocationModule.m +76 -0
- package/ios/modules/mlrn/MLRNModule.m +63 -0
- package/ios/modules/offline/MLRNOfflineModule.h +11 -0
- package/ios/modules/offline/MLRNOfflineModule.m +524 -0
- package/ios/modules/snapshot/MLRNSnapshotModule.h +4 -0
- package/ios/modules/snapshot/MLRNSnapshotModule.mm +77 -0
- package/ios/utils/MLRNEvent.m +36 -0
- package/ios/utils/MLRNEventTypes.h +21 -0
- package/ios/utils/MLRNEventTypes.m +21 -0
- package/ios/utils/MLRNUtils.h +45 -0
- package/ios/utils/MLRNUtils.m +250 -0
- package/lib/commonjs/MLRNModule.js +1 -7
- package/lib/commonjs/MLRNModule.js.map +1 -1
- package/lib/commonjs/components/Images.js.map +1 -1
- package/lib/commonjs/components/annotations/Annotation.js +95 -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 +61 -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 +115 -0
- package/lib/commonjs/components/map-view/MapView.js.map +1 -0
- package/lib/commonjs/components/map-view/MapViewNativeComponent.ts +96 -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 +152 -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.map +1 -0
- package/lib/commonjs/components/user-location/UserLocation.js +156 -0
- package/lib/commonjs/components/user-location/UserLocation.js.map +1 -0
- package/lib/commonjs/components/user-location/UserLocationPuck.js +52 -0
- package/lib/commonjs/components/user-location/UserLocationPuck.js.map +1 -0
- package/lib/commonjs/components/user-location/UserLocationPuckHeading.js +31 -0
- package/lib/commonjs/components/user-location/UserLocationPuckHeading.js.map +1 -0
- package/lib/commonjs/index.js +245 -11
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/modules/Logger.js +112 -0
- package/lib/commonjs/modules/Logger.js.map +1 -0
- package/lib/commonjs/modules/snapshot/NativeSnapshotModule.js +9 -0
- package/lib/commonjs/modules/snapshot/NativeSnapshotModule.js.map +1 -0
- package/lib/commonjs/modules/snapshot/SnapshotManager.js +3 -4
- package/lib/commonjs/modules/snapshot/SnapshotManager.js.map +1 -1
- package/lib/commonjs/modules/snapshot/SnapshotOptions.js +4 -4
- package/lib/commonjs/modules/snapshot/SnapshotOptions.js.map +1 -1
- package/lib/commonjs/package.json +1 -0
- 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 +9 -9
- package/lib/commonjs/utils/animated/Animated.js.map +1 -1
- package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +1 -7
- package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.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 -3
- package/lib/module/MLRNModule.js.map +1 -1
- package/lib/module/components/Images.js.map +1 -1
- package/lib/module/components/annotations/Annotation.js +91 -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 +61 -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 +110 -0
- package/lib/module/components/map-view/MapView.js.map +1 -0
- package/lib/module/components/map-view/MapViewNativeComponent.ts +96 -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 +148 -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.map +1 -0
- package/lib/module/components/user-location/UserLocation.js +152 -0
- package/lib/module/components/user-location/UserLocation.js.map +1 -0
- package/lib/module/components/user-location/UserLocationPuck.js +48 -0
- package/lib/module/components/user-location/UserLocationPuck.js.map +1 -0
- package/lib/module/components/user-location/UserLocationPuckHeading.js +26 -0
- package/lib/module/components/user-location/UserLocationPuckHeading.js.map +1 -0
- package/lib/module/index.js +30 -7
- package/lib/module/index.js.map +1 -1
- package/lib/module/modules/Logger.js +107 -0
- package/lib/module/modules/Logger.js.map +1 -0
- package/lib/module/modules/snapshot/NativeSnapshotModule.js +5 -0
- package/lib/module/modules/snapshot/NativeSnapshotModule.js.map +1 -0
- package/lib/module/modules/snapshot/SnapshotManager.js +2 -3
- package/lib/module/modules/snapshot/SnapshotManager.js.map +1 -1
- package/lib/module/modules/snapshot/SnapshotOptions.js +4 -4
- package/lib/module/modules/snapshot/SnapshotOptions.js.map +1 -1
- package/lib/module/package.json +1 -0
- 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 -9
- package/lib/module/utils/animated/Animated.js.map +1 -1
- package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +1 -7
- package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.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 +2 -8
- package/lib/typescript/commonjs/src/MLRNModule.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Images.d.ts +1 -2
- package/lib/typescript/commonjs/src/components/Images.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/annotations/Annotation.d.ts +21 -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 +37 -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 +323 -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 +69 -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.map +1 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocation.d.ts +69 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/user-location/UserLocationPuck.d.ts +9 -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/index.d.ts +41 -6
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/modules/Logger.d.ts +49 -0
- package/lib/typescript/commonjs/src/modules/Logger.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/snapshot/NativeSnapshotModule.d.ts +19 -0
- package/lib/typescript/commonjs/src/modules/snapshot/NativeSnapshotModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/snapshot/SnapshotManager.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts +5 -25
- package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.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/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 +10 -10
- package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +0 -4
- package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.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 +2 -8
- package/lib/typescript/module/src/MLRNModule.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Images.d.ts +1 -2
- package/lib/typescript/module/src/components/Images.d.ts.map +1 -1
- package/lib/typescript/module/src/components/annotations/Annotation.d.ts +21 -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 +37 -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 +323 -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 +69 -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.map +1 -0
- package/lib/typescript/module/src/components/user-location/UserLocation.d.ts +69 -0
- package/lib/typescript/module/src/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/module/src/components/user-location/UserLocationPuck.d.ts +9 -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/index.d.ts +41 -6
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/modules/Logger.d.ts +49 -0
- package/lib/typescript/module/src/modules/Logger.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/snapshot/NativeSnapshotModule.d.ts +19 -0
- package/lib/typescript/module/src/modules/snapshot/NativeSnapshotModule.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/snapshot/SnapshotManager.d.ts.map +1 -1
- package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts +5 -25
- package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.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/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 +10 -10
- package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +0 -4
- package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.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 +47 -29
- package/src/MLRNModule.ts +0 -24
- package/src/components/Images.tsx +2 -4
- package/src/components/annotations/Annotation.tsx +147 -0
- package/src/components/annotations/MarkerView.tsx +86 -0
- package/src/components/annotations/PointAnnotation.tsx +244 -0
- package/src/components/camera/Camera.tsx +311 -0
- package/src/components/camera/CameraNativeComponent.ts +61 -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 +582 -0
- package/src/components/map-view/MapViewNativeComponent.ts +96 -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 +365 -0
- package/src/components/sources/VectorSource.tsx +172 -0
- package/src/components/user-location/UserLocation.tsx +268 -0
- package/src/components/user-location/UserLocationPuck.tsx +62 -0
- package/src/components/user-location/UserLocationPuckHeading.tsx +33 -0
- package/src/index.ts +85 -6
- package/src/modules/Logger.ts +127 -0
- package/src/modules/snapshot/NativeSnapshotModule.ts +23 -0
- package/src/modules/snapshot/SnapshotManager.ts +3 -6
- package/src/modules/snapshot/SnapshotOptions.ts +10 -27
- package/src/types/Bounds.ts +1 -0
- 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 -9
- package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +1 -14
- package/src/utils/index.ts +1 -14
- package/android/src/main/AndroidManifestNew.xml +0 -5
- package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java +0 -90
- 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 -84
- 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/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 -255
- package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java +0 -226
- 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/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/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/modules/MLRNSnapshotModule.java +0 -135
- package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java +0 -310
- package/ios/MLRN/CameraMode.h +0 -10
- package/ios/MLRN/CameraMode.m +0 -10
- package/ios/MLRN/CameraStop.h +0 -18
- package/ios/MLRN/CameraStop.m +0 -73
- package/ios/MLRN/CameraUpdateItem.m +0 -168
- package/ios/MLRN/MLRN.h +0 -5
- package/ios/MLRN/MLRN.m +0 -5
- package/ios/MLRN/MLRNCallout.h +0 -7
- package/ios/MLRN/MLRNCamera.h +0 -29
- package/ios/MLRN/MLRNCamera.m +0 -236
- package/ios/MLRN/MLRNCameraManager.h +0 -5
- package/ios/MLRN/MLRNCameraManager.m +0 -39
- package/ios/MLRN/MLRNEvent.m +0 -34
- package/ios/MLRN/MLRNEventTypes.h +0 -42
- package/ios/MLRN/MLRNEventTypes.m +0 -41
- package/ios/MLRN/MLRNImages.h +0 -24
- package/ios/MLRN/MLRNImages.m +0 -124
- package/ios/MLRN/MLRNLayer.h +0 -42
- package/ios/MLRN/MLRNLayer.m +0 -216
- package/ios/MLRN/MLRNLight.h +0 -9
- package/ios/MLRN/MLRNLocationModule.m +0 -76
- package/ios/MLRN/MLRNMapTouchEvent.h +0 -17
- package/ios/MLRN/MLRNMapTouchEvent.m +0 -70
- package/ios/MLRN/MLRNMapView.h +0 -90
- package/ios/MLRN/MLRNMapView.m +0 -497
- package/ios/MLRN/MLRNMapViewManager.h +0 -9
- package/ios/MLRN/MLRNMapViewManager.m +0 -604
- package/ios/MLRN/MLRNModule.m +0 -136
- package/ios/MLRN/MLRNNativeUserLocation.m +0 -38
- package/ios/MLRN/MLRNOfflineModule.h +0 -11
- package/ios/MLRN/MLRNOfflineModule.m +0 -524
- package/ios/MLRN/MLRNPointAnnotation.h +0 -33
- package/ios/MLRN/MLRNShapeSource.h +0 -36
- package/ios/MLRN/MLRNSnapshotModule.h +0 -5
- package/ios/MLRN/MLRNSnapshotModule.m +0 -70
- package/ios/MLRN/MLRNSource.h +0 -27
- package/ios/MLRN/MLRNStyle.m +0 -1642
- package/ios/MLRN/MLRNUtils.h +0 -31
- package/ios/MLRN/MLRNUtils.m +0 -227
- package/ios/MLRN.xcodeproj/project.pbxproj +0 -1
- package/lib/commonjs/MapLibreRN.js +0 -287
- 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/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.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 -171
- 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/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 -45
- 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/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.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 -167
- 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/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 -53
- 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/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.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 -121
- 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/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 -53
- 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/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.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 -121
- 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/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/maplibre-react-native.podspec +0 -80
- package/src/MapLibreRN.ts +0 -91
- 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/LineLayer.tsx +0 -43
- package/src/components/MapView.tsx +0 -838
- package/src/components/MarkerView.tsx +0 -86
- 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 -374
- 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/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/{MLRN → components}/ViewManager.h +0 -0
- /package/ios/{MLRN → components}/ViewManager.m +0 -0
- /package/ios/{MLRN → components/annotations}/MLRNCallout.m +0 -0
- /package/ios/{MLRN → components/annotations}/MLRNCalloutManager.h +0 -0
- /package/ios/{MLRN → components/annotations}/MLRNCalloutManager.m +0 -0
- /package/ios/{MLRN → components/annotations}/MLRNPointAnnotation.m +0 -0
- /package/ios/{MLRN → components/annotations}/MLRNPointAnnotationManager.h +0 -0
- /package/ios/{MLRN → components/annotations}/MLRNPointAnnotationManager.m +0 -0
- /package/ios/{MLRN → components/camera}/CameraUpdateItem.h +0 -0
- /package/ios/{MLRN → components/camera}/CameraUpdateQueue.h +0 -0
- /package/ios/{MLRN → components/camera}/CameraUpdateQueue.m +0 -0
- /package/ios/{MLRN → components/images}/MLRNImageQueue.h +0 -0
- /package/ios/{MLRN → components/images}/MLRNImageQueue.m +0 -0
- /package/ios/{MLRN → components/images}/MLRNImageQueueOperation.h +0 -0
- /package/ios/{MLRN → components/images}/MLRNImageQueueOperation.m +0 -0
- /package/ios/{MLRN → components/images}/MLRNImageUtils.h +0 -0
- /package/ios/{MLRN → components/images}/MLRNImageUtils.m +0 -0
- /package/ios/{MLRN → components/images}/MLRNImagesManager.h +0 -0
- /package/ios/{MLRN → components/images}/MLRNImagesManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNBackgroundLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNBackgroundLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNBackgroundLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNBackgroundLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNCircleLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNCircleLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNCircleLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNCircleLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillExtrusionLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillExtrusionLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillExtrusionLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillExtrusionLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNFillLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNHeatmapLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNHeatmapLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNHeatmapLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNHeatmapLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNLineLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNLineLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNLineLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNLineLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNRasterLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNRasterLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNRasterLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNRasterLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNSymbolLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNSymbolLayer.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNSymbolLayerManager.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNSymbolLayerManager.m +0 -0
- /package/ios/{MLRN → components/layers}/MLRNVectorLayer.h +0 -0
- /package/ios/{MLRN → components/layers}/MLRNVectorLayer.m +0 -0
- /package/ios/{MLRN → components/layers/style}/MLRNStyle.h +0 -0
- /package/ios/{MLRN → components/layers/style}/MLRNStyleValue.h +0 -0
- /package/ios/{MLRN → components/layers/style}/MLRNStyleValue.m +0 -0
- /package/ios/{MLRN → components/light}/MLRNLight.m +0 -0
- /package/ios/{MLRN → components/light}/MLRNLightManager.h +0 -0
- /package/ios/{MLRN → components/light}/MLRNLightManager.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNImageSource.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNImageSource.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNImageSourceManager.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNImageSourceManager.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNRasterSource.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNRasterSource.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNRasterSourceManager.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNRasterSourceManager.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNShapeSource.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNShapeSourceManager.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNShapeSourceManager.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNSource.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNTileSource.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNTileSource.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNVectorSource.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNVectorSource.m +0 -0
- /package/ios/{MLRN → components/sources}/MLRNVectorSourceManager.h +0 -0
- /package/ios/{MLRN → components/sources}/MLRNVectorSourceManager.m +0 -0
- /package/ios/{MLRN → components/user-location}/MLRNNativeUserLocation.h +0 -0
- /package/ios/{MLRN → components/user-location}/MLRNNativeUserLocationManager.h +0 -0
- /package/ios/{MLRN → components/user-location}/MLRNNativeUserLocationManager.m +0 -0
- /package/ios/{MLRN → components/user-location}/MLRNUserLocation.h +0 -0
- /package/ios/{MLRN → components/user-location}/MLRNUserLocation.m +0 -0
- /package/ios/{MLRN → modules/location}/MLRNLocation.h +0 -0
- /package/ios/{MLRN → modules/location}/MLRNLocation.m +0 -0
- /package/ios/{MLRN → modules/location}/MLRNLocationManager.h +0 -0
- /package/ios/{MLRN → modules/location}/MLRNLocationManager.m +0 -0
- /package/ios/{MLRN → modules/location}/MLRNLocationManagerDelegate.h +0 -0
- /package/ios/{MLRN → modules/location}/MLRNLocationModule.h +0 -0
- /package/ios/{MLRN → modules/logging}/MLRNLogging.h +0 -0
- /package/ios/{MLRN → modules/logging}/MLRNLogging.m +0 -0
- /package/ios/{MLRN → modules/mlrn}/MLRNCustomHeaders.h +0 -0
- /package/ios/{MLRN → modules/mlrn}/MLRNCustomHeaders.m +0 -0
- /package/ios/{MLRN → modules/mlrn}/MLRNModule.h +0 -0
- /package/ios/{MLRN → utils}/FilterParser.h +0 -0
- /package/ios/{MLRN → utils}/FilterParser.m +0 -0
- /package/ios/{MLRN → utils}/MLRNEvent.h +0 -0
- /package/ios/{MLRN → utils}/MLRNEventProtocol.h +0 -0
- /package/lib/commonjs/components/{Callout.js → annotations/Callout.js} +0 -0
- /package/lib/commonjs/components/{NativeUserLocation.js → user-location/NativeUserLocation.js} +0 -0
- /package/lib/module/components/{Callout.js → annotations/Callout.js} +0 -0
- /package/lib/module/components/{NativeUserLocation.js → user-location/NativeUserLocation.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/commonjs/src/components/{NativeUserLocation.d.ts → user-location/NativeUserLocation.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/lib/typescript/module/src/components/{NativeUserLocation.d.ts → user-location/NativeUserLocation.d.ts} +0 -0
- /package/src/components/{Callout.tsx → annotations/Callout.tsx} +0 -0
- /package/src/components/{NativeUserLocation.tsx → user-location/NativeUserLocation.tsx} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["NativeEventEmitter","NativeModules","MLRNLogging","Logger","instance","sharedInstance","constructor","loggerEmitter","startedCount","logCallback","subscription","setLogCallback","setLogLevel","level","start","subscribe","stop","unsubscribe","addListener","log","onLog","remove","effectiveLevel","message","tag","startsWith","console","error","warn"],"sourceRoot":"../../../src","sources":["modules/Logger.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["TurboModuleRegistry","getEnforcing"],"sourceRoot":"../../../../src","sources":["modules/snapshot/NativeSnapshotModule.ts"],"mappings":";;AACA,SAASA,mBAAmB,QAAQ,cAAc;AAqBlD,eAAeA,mBAAmB,CAACC,YAAY,CAAO,oBAAoB,CAAC","ignoreList":[]}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import
|
|
3
|
+
import NativeSnapshotModule from "./NativeSnapshotModule.js";
|
|
4
4
|
import { SnapshotOptions } from "./SnapshotOptions.js";
|
|
5
|
-
const MLRNSnapshotModule = NativeModules.MLRNSnapshotModule;
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* The SnapshotManager generates static raster images of the map.
|
|
@@ -52,7 +51,7 @@ class SnapshotManager {
|
|
|
52
51
|
*/
|
|
53
52
|
async takeSnap(options = {}) {
|
|
54
53
|
const snapshotOptions = new SnapshotOptions(options);
|
|
55
|
-
const uri = await
|
|
54
|
+
const uri = await NativeSnapshotModule.takeSnap(snapshotOptions.toJSON());
|
|
56
55
|
return uri;
|
|
57
56
|
}
|
|
58
57
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["NativeSnapshotModule","SnapshotOptions","SnapshotManager","takeSnap","options","snapshotOptions","uri","toJSON","snapshotManager"],"sourceRoot":"../../../../src","sources":["modules/snapshot/SnapshotManager.ts"],"mappings":";;AAAA,OAAOA,oBAAoB,MAAM,2BAAwB;AACzD,SAAoCC,eAAe,QAAQ,sBAAmB;;AAE9E;AACA;AACA;AACA;AACA;AACA,MAAMC,eAAe,CAAC;EACpB;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAMC,QAAQA,CAACC,OAA6B,GAAG,CAAC,CAAC,EAAmB;IAClE,MAAMC,eAAe,GAAG,IAAIJ,eAAe,CAACG,OAAO,CAAC;IAEpD,MAAME,GAAG,GAAG,MAAMN,oBAAoB,CAACG,QAAQ,CAACE,eAAe,CAACE,MAAM,CAAC,CAAC,CAAC;IACzE,OAAOD,GAAG;EACZ;AACF;AAEA,MAAME,eAAe,GAAG,IAAIN,eAAe,CAAC,CAAC;AAC7C,SAASM,eAAe,IAAIN,eAAe","ignoreList":[]}
|
|
@@ -18,10 +18,10 @@ export class SnapshotOptions {
|
|
|
18
18
|
this.writeToDisk = options.writeToDisk || false;
|
|
19
19
|
this.withLogo = options.withLogo === undefined ? true : options.withLogo;
|
|
20
20
|
if (options.centerCoordinate) {
|
|
21
|
-
this.centerCoordinate = this.
|
|
21
|
+
this.centerCoordinate = this.stringifyCenterCoordinate(options.centerCoordinate);
|
|
22
22
|
}
|
|
23
23
|
if (options.bounds) {
|
|
24
|
-
this.bounds = this.
|
|
24
|
+
this.bounds = this.stringifyBounds(options.bounds);
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
toJSON() {
|
|
@@ -38,10 +38,10 @@ export class SnapshotOptions {
|
|
|
38
38
|
withLogo: this.withLogo
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
|
-
|
|
41
|
+
stringifyCenterCoordinate(centerCoordinate) {
|
|
42
42
|
return toJSONString(point(centerCoordinate));
|
|
43
43
|
}
|
|
44
|
-
|
|
44
|
+
stringifyBounds(bounds) {
|
|
45
45
|
const features = [];
|
|
46
46
|
for (const bound of bounds) {
|
|
47
47
|
features.push(point(bound));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["featureCollection","point","NativeModules","toJSONString","MLRNModule","SnapshotOptions","constructor","options","centerCoordinate","bounds","Error","styleURL","StyleURL","Default","heading","pitch","zoomLevel","width","height","writeToDisk","withLogo","undefined","
|
|
1
|
+
{"version":3,"names":["featureCollection","point","NativeModules","toJSONString","MLRNModule","SnapshotOptions","constructor","options","centerCoordinate","bounds","Error","styleURL","StyleURL","Default","heading","pitch","zoomLevel","width","height","writeToDisk","withLogo","undefined","stringifyCenterCoordinate","stringifyBounds","toJSON","features","bound","push"],"sourceRoot":"../../../../src","sources":["modules/snapshot/SnapshotOptions.ts"],"mappings":";;AAAA,SAASA,iBAAiB,EAAEC,KAAK,QAAQ,eAAe;AACxD,SAASC,aAAa,QAAQ,cAAc;AAG5C,SAASC,YAAY,QAAQ,sBAAa;AAE1C,MAAMC,UAAU,GAAGF,aAAa,CAACE,UAAU;AAQ3C,OAAO,MAAMC,eAAe,CAAgC;EAY1DC,WAAWA,CAACC,OAA6B,EAAE;IACzC,IAAI,CAACA,OAAO,CAACC,gBAAgB,IAAI,CAACD,OAAO,CAACE,MAAM,EAAE;MAChD,MAAM,IAAIC,KAAK,CACb,0EACF,CAAC;IACH;IAEA,IAAI,CAACC,QAAQ,GAAGJ,OAAO,CAACI,QAAQ,IAAIP,UAAU,CAACQ,QAAQ,CAACC,OAAO;IAC/D,IAAI,CAACC,OAAO,GAAGP,OAAO,CAACO,OAAO,IAAI,GAAG;IACrC,IAAI,CAACC,KAAK,GAAGR,OAAO,CAACQ,KAAK,IAAI,GAAG;IACjC,IAAI,CAACC,SAAS,GAAGT,OAAO,CAACS,SAAS,IAAI,IAAI;IAC1C,IAAI,CAACC,KAAK,GAAGV,OAAO,CAACU,KAAK,IAAI,IAAI;IAClC,IAAI,CAACC,MAAM,GAAGX,OAAO,CAACW,MAAM,IAAI,IAAI;IACpC,IAAI,CAACC,WAAW,GAAGZ,OAAO,CAACY,WAAW,IAAI,KAAK;IAC/C,IAAI,CAACC,QAAQ,GAAGb,OAAO,CAACa,QAAQ,KAAKC,SAAS,GAAG,IAAI,GAAGd,OAAO,CAACa,QAAQ;IAExE,IAAIb,OAAO,CAACC,gBAAgB,EAAE;MAC5B,IAAI,CAACA,gBAAgB,GAAG,IAAI,CAACc,yBAAyB,CACpDf,OAAO,CAACC,gBACV,CAAC;IACH;IAEA,IAAID,OAAO,CAACE,MAAM,EAAE;MAClB,IAAI,CAACA,MAAM,GAAG,IAAI,CAACc,eAAe,CAAChB,OAAO,CAACE,MAAM,CAAC;IACpD;EACF;EAEAe,MAAMA,CAAA,EAAwB;IAC5B,OAAO;MACLb,QAAQ,EAAE,IAAI,CAACA,QAAQ;MACvBG,OAAO,EAAE,IAAI,CAACA,OAAO;MACrBC,KAAK,EAAE,IAAI,CAACA,KAAK;MACjBC,SAAS,EAAE,IAAI,CAACA,SAAS;MACzBC,KAAK,EAAE,IAAI,CAACA,KAAK;MACjBC,MAAM,EAAE,IAAI,CAACA,MAAM;MACnBC,WAAW,EAAE,IAAI,CAACA,WAAW;MAC7BX,gBAAgB,EAAE,IAAI,CAACA,gBAAgB;MACvCC,MAAM,EAAE,IAAI,CAACA,MAAM;MACnBW,QAAQ,EAAE,IAAI,CAACA;IACjB,CAAC;EACH;EAEQE,yBAAyBA,CAC/Bd,gBAAkC,EAC1B;IACR,OAAOL,YAAY,CAACF,KAAK,CAACO,gBAAgB,CAAC,CAAC;EAC9C;EAEQe,eAAeA,CAACd,MAA0B,EAAU;IAC1D,MAAMgB,QAAQ,GAAG,EAAE;IAEnB,KAAK,MAAMC,KAAK,IAAIjB,MAAM,EAAE;MAC1BgB,QAAQ,CAACE,IAAI,CAAC1B,KAAK,CAACyB,KAAK,CAAC,CAAC;IAC7B;IAEA,OAAOvB,YAAY,CAACH,iBAAiB,CAACyB,QAAQ,CAAC,CAAC;EAClD;AACF","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"module"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/Bounds.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/PressEvent.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/ViewPadding.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../../src","sources":["types/codegen/UnsafeMixed.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -5,15 +5,15 @@ import { AnimatedCoordinatesArray } from "./AnimatedCoordinatesArray.js";
|
|
|
5
5
|
import { AnimatedExtractCoordinateFromArray } from "./AnimatedExtractCoordinateFromArray.js";
|
|
6
6
|
import { AnimatedRouteCoordinatesArray } from "./AnimatedRouteCoordinatesArray.js";
|
|
7
7
|
import { AnimatedShape } from "./AnimatedShape.js";
|
|
8
|
-
import { BackgroundLayer } from "../../components/BackgroundLayer.js";
|
|
9
|
-
import { CircleLayer } from "../../components/CircleLayer.js";
|
|
10
|
-
import { FillExtrusionLayer } from "../../components/FillExtrusionLayer.js";
|
|
11
|
-
import { FillLayer } from "../../components/FillLayer.js";
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
8
|
+
import { BackgroundLayer } from "../../components/layers/BackgroundLayer.js";
|
|
9
|
+
import { CircleLayer } from "../../components/layers/CircleLayer.js";
|
|
10
|
+
import { FillExtrusionLayer } from "../../components/layers/FillExtrusionLayer.js";
|
|
11
|
+
import { FillLayer } from "../../components/layers/FillLayer.js";
|
|
12
|
+
import { LineLayer } from "../../components/layers/LineLayer.js";
|
|
13
|
+
import { RasterLayer } from "../../components/layers/RasterLayer.js";
|
|
14
|
+
import { SymbolLayer } from "../../components/layers/SymbolLayer.js";
|
|
15
|
+
import { ImageSource } from "../../components/sources/ImageSource.js";
|
|
16
|
+
import { ShapeSource } from "../../components/sources/ShapeSource.js";
|
|
17
17
|
export const Animated = {
|
|
18
18
|
// sources
|
|
19
19
|
ShapeSource: RNAnimated.createAnimatedComponent(ShapeSource),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Animated","RNAnimated","AnimatedCoordinatesArray","AnimatedExtractCoordinateFromArray","AnimatedRouteCoordinatesArray","AnimatedShape","BackgroundLayer","CircleLayer","FillExtrusionLayer","FillLayer","
|
|
1
|
+
{"version":3,"names":["Animated","RNAnimated","AnimatedCoordinatesArray","AnimatedExtractCoordinateFromArray","AnimatedRouteCoordinatesArray","AnimatedShape","BackgroundLayer","CircleLayer","FillExtrusionLayer","FillLayer","LineLayer","RasterLayer","SymbolLayer","ImageSource","ShapeSource","createAnimatedComponent","CoordinatesArray","RouteCoordinatesArray","Shape","ExtractCoordinateFromArray","AnimatedShapeSource"],"sourceRoot":"../../../../src","sources":["utils/animated/Animated.ts"],"mappings":";;AAKA,SAASA,QAAQ,IAAIC,UAAU,QAAQ,cAAc;AAErD,SAASC,wBAAwB,QAAQ,+BAA4B;AACrE,SAASC,kCAAkC,QAAQ,yCAAsC;AACzF,SAASC,6BAA6B,QAAQ,oCAAiC;AAC/E,SAASC,aAAa,QAAQ,oBAAiB;AAC/C,SAASC,eAAe,QAAQ,4CAAyC;AACzE,SAASC,WAAW,QAAQ,wCAAqC;AACjE,SAASC,kBAAkB,QAAQ,+CAA4C;AAC/E,SAASC,SAAS,QAAQ,sCAAmC;AAC7D,SAASC,SAAS,QAAQ,sCAAmC;AAC7D,SAASC,WAAW,QAAQ,wCAAqC;AACjE,SAASC,WAAW,QAAQ,wCAAqC;AACjE,SAASC,WAAW,QAAQ,yCAAsC;AAClE,SACEC,WAAW,QAGN,yCAAsC;AAE7C,OAAO,MAAMd,QAAQ,GAAG;EACtB;EACAc,WAAW,EAAEb,UAAU,CAACc,uBAAuB,CAACD,WAAW,CAAC;EAC5DD,WAAW,EAAEZ,UAAU,CAACc,uBAAuB,CAACF,WAAW,CAAC;EAE5D;EACAJ,SAAS,EAAER,UAAU,CAACc,uBAAuB,CAACN,SAAS,CAAC;EACxDD,kBAAkB,EAAEP,UAAU,CAACc,uBAAuB,CAACP,kBAAkB,CAAC;EAC1EE,SAAS,EAAET,UAAU,CAACc,uBAAuB,CAACL,SAAS,CAAC;EACxDH,WAAW,EAAEN,UAAU,CAACc,uBAAuB,CAACR,WAAW,CAAC;EAC5DK,WAAW,EAAEX,UAAU,CAACc,uBAAuB,CAACH,WAAW,CAAC;EAC5DD,WAAW,EAAEV,UAAU,CAACc,uBAAuB,CAACJ,WAAW,CAAC;EAC5DL,eAAe,EAAEL,UAAU,CAACc,uBAAuB,CAACT,eAAe,CAAC;EAEpE;EACAU,gBAAgB,EAAEd,wBAAwB;EAC1Ce,qBAAqB,EAAEb,6BAA6B;EACpDc,KAAK,EAAEb,aAAa;EACpBc,0BAA0B,EAAEhB;AAC9B,CAAC;AAWD;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMiB,mBAAmB,GAAGnB,UAAU,CAACc,uBAAuB,CACnED,WACF,CAA4B","ignoreList":[]}
|
|
@@ -94,13 +94,7 @@ export class AnimatedRouteCoordinatesArray extends AbstractAnimatedCoordinates {
|
|
|
94
94
|
const fullRouteLineString = lineString(fullRoute);
|
|
95
95
|
let to = undefined;
|
|
96
96
|
if ("along" in toValue.end) {
|
|
97
|
-
|
|
98
|
-
units
|
|
99
|
-
} = toValue;
|
|
100
|
-
if (units !== undefined) {
|
|
101
|
-
console.warn("RouteCoordinatesArray: `toValue.units` is deprecated, use `toValue.end.units` instead.");
|
|
102
|
-
}
|
|
103
|
-
to = length(fullRouteLineString) - convertLength(toValue.end.along, toValue.end.units ?? units);
|
|
97
|
+
to = length(fullRouteLineString) - convertLength(toValue.end.along, toValue.end.units);
|
|
104
98
|
} else {
|
|
105
99
|
const nearest = nearestPointOnLine(fullRouteLineString, toValue.end.point);
|
|
106
100
|
to = length(fullRouteLineString) - nearest.properties.location;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["distance","convertLength","lineString","point","length","nearestPointOnLine","AbstractAnimatedCoordinates","AnimatedRouteCoordinatesArray","onInitialState","coordinatesArray","fullRoute","map","coordinates","end","from","to","onGetValue","state","actRoute","onCalculate","progress","currentEnd","prevSum","actSum","i","start","distconf","slice","current","r","or","onStart","toValue","fullRouteLineString","undefined","
|
|
1
|
+
{"version":3,"names":["distance","convertLength","lineString","point","length","nearestPointOnLine","AbstractAnimatedCoordinates","AnimatedRouteCoordinatesArray","onInitialState","coordinatesArray","fullRoute","map","coordinates","end","from","to","onGetValue","state","actRoute","onCalculate","progress","currentEnd","prevSum","actSum","i","start","distconf","slice","current","r","or","onStart","toValue","fullRouteLineString","undefined","along","units","nearest","properties","location","originalRoute"],"sourceRoot":"../../../../src","sources":["utils/animated/AnimatedRouteCoordinatesArray.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -5,12 +5,6 @@ import { Image, NativeModules, findNodeHandle, Platform, UIManager } from "react
|
|
|
5
5
|
export function isAndroid() {
|
|
6
6
|
return Platform.OS === "android";
|
|
7
7
|
}
|
|
8
|
-
export function existenceChange(cur, next) {
|
|
9
|
-
if (!cur && !next) {
|
|
10
|
-
return false;
|
|
11
|
-
}
|
|
12
|
-
return !cur && next || cur && !next;
|
|
13
|
-
}
|
|
14
8
|
export function isFunction(fn) {
|
|
15
9
|
return typeof fn === "function";
|
|
16
10
|
}
|
|
@@ -26,9 +20,6 @@ export function isString(str) {
|
|
|
26
20
|
export function isBoolean(bool) {
|
|
27
21
|
return typeof bool === "boolean";
|
|
28
22
|
}
|
|
29
|
-
export function isPrimitive(value) {
|
|
30
|
-
return isString(value) || isNumber(value) || isBoolean(value);
|
|
31
|
-
}
|
|
32
23
|
export function runNativeCommand(module, name, nativeRef, args = []) {
|
|
33
24
|
const handle = findNodeHandle(nativeRef);
|
|
34
25
|
if (!handle) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Children","cloneElement","Image","NativeModules","findNodeHandle","Platform","UIManager","isAndroid","OS","
|
|
1
|
+
{"version":3,"names":["Children","cloneElement","Image","NativeModules","findNodeHandle","Platform","UIManager","isAndroid","OS","isFunction","fn","isNumber","num","Number","isNaN","isUndefined","obj","isString","str","isBoolean","bool","runNativeCommand","module","name","nativeRef","args","handle","Error","managerInstance","getViewManagerConfig","dispatchViewManagerCommand","Commands","cloneReactChildrenWithProps","children","propsToAdd","undefined","foundChildren","Array","isArray","filteredChildren","filter","child","map","resolveImagePath","imageRef","res","resolveAssetSource","uri","toJSONString","json","JSON","stringify"],"sourceRoot":"../../../src","sources":["utils/index.ts"],"mappings":";;AAAA,SAASA,QAAQ,EAAEC,YAAY,QAAsC,OAAO;AAC5E,SACEC,KAAK,EACLC,aAAa,EACbC,cAAc,EACdC,QAAQ,EAERC,SAAS,QACJ,cAAc;AAErB,OAAO,SAASC,SAASA,CAAA,EAAY;EACnC,OAAOF,QAAQ,CAACG,EAAE,KAAK,SAAS;AAClC;AAEA,OAAO,SAASC,UAAUA,CAACC,EAAW,EAAkB;EACtD,OAAO,OAAOA,EAAE,KAAK,UAAU;AACjC;AAEA,OAAO,SAASC,QAAQA,CAACC,GAAY,EAAiB;EACpD,OAAO,OAAOA,GAAG,KAAK,QAAQ,IAAI,CAACC,MAAM,CAACC,KAAK,CAACF,GAAG,CAAC;AACtD;AAEA,OAAO,SAASG,WAAWA,CAACC,GAAY,EAAoB;EAC1D,OAAO,OAAOA,GAAG,KAAK,WAAW;AACnC;AAEA,OAAO,SAASC,QAAQA,CAACC,GAAY,EAAiB;EACpD,OAAO,OAAOA,GAAG,KAAK,QAAQ;AAChC;AAEA,OAAO,SAASC,SAASA,CAACC,IAAa,EAAmB;EACxD,OAAO,OAAOA,IAAI,KAAK,SAAS;AAClC;AAUA,OAAO,SAASC,gBAAgBA,CAC9BC,MAAc,EACdC,IAAY,EACZC,SAAoB,EACpBC,IAAiB,GAAG,EAAE,EACV;EACZ,MAAMC,MAAM,GAAGtB,cAAc,CAACoB,SAAS,CAAC;EACxC,IAAI,CAACE,MAAM,EAAE;IACX,MAAM,IAAIC,KAAK,CAAC,wCAAwCL,MAAM,IAAIC,IAAI,EAAE,CAAC;EAC3E;EAEA,MAAMK,eAAe,GAAGrB,SAAS,CAAC,CAAC,GAC/BD,SAAS,CAACuB,oBAAoB,CAACP,MAAM,CAAC,GACtCnB,aAAa,CAACmB,MAAM,CAAC;EAEzB,IAAI,CAACM,eAAe,EAAE;IACpB,MAAM,IAAID,KAAK,CAAC,kBAAkBL,MAAM,EAAE,CAAC;EAC7C;EAEA,IAAIf,SAAS,CAAC,CAAC,EAAE;IACfD,SAAS,CAACwB,0BAA0B,CAClCJ,MAAM,EACNE,eAAe,CAACG,QAAQ,CAACR,IAAI,CAAC,EAC9BE,IACF,CAAC;;IAED;IACA,OAAO,IAAI;EACb;EAEA,OAAOG,eAAe,CAACL,IAAI,CAAC,CAACG,MAAM,EAAE,GAAGD,IAAI,CAAC;AAC/C;AAEA,OAAO,SAASO,2BAA2BA,CACzCC,QAA4C,EAC5CC,UAAqC,GAAG,CAAC,CAAC,EACd;EAC5B,IAAI,CAACD,QAAQ,EAAE;IACb,OAAOE,SAAS;EAClB;EAEA,IAAIC,aAAa,GAAG,IAAI;EAExB,IAAI,CAACC,KAAK,CAACC,OAAO,CAACL,QAAQ,CAAC,EAAE;IAC5BG,aAAa,GAAG,CAACH,QAAQ,CAAC;EAC5B,CAAC,MAAM;IACLG,aAAa,GAAGH,QAAQ;EAC1B;EAEA,MAAMM,gBAAgB,GAAGH,aAAa,CAACI,MAAM,CAAEC,KAAK,IAAK,CAAC,CAACA,KAAK,CAAC,CAAC,CAAC;EACnE,OAAOzC,QAAQ,CAAC0C,GAAG,CAACH,gBAAgB,EAAGE,KAAK,iBAC1CxC,YAAY,CAACwC,KAAK,EAAEP,UAAU,CAChC,CAAC;AACH;AAEA,OAAO,SAASS,gBAAgBA,CAACC,QAA6B,EAAU;EACtE,MAAMC,GAAG,GAAG3C,KAAK,CAAC4C,kBAAkB,CAACF,QAAQ,CAAC;EAC9C,OAAOC,GAAG,CAACE,GAAG;AAChB;AAEA,OAAO,SAASC,YAAYA,CAACC,IAAqB,GAAG,EAAE,EAAU;EAC/D,OAAOC,IAAI,CAACC,SAAS,CAACF,IAAI,CAAC;AAC7B","ignoreList":[]}
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const CameraModes: {
|
|
3
|
-
Flight: CameraMode.Flight;
|
|
4
|
-
Ease: CameraMode.Ease;
|
|
5
|
-
Linear: CameraMode.Linear;
|
|
6
|
-
None: CameraMode.None;
|
|
7
|
-
}, OfflinePackDownloadState: {
|
|
1
|
+
export declare const OfflinePackDownloadState: {
|
|
8
2
|
Inactive: string | number;
|
|
9
3
|
Active: string | number;
|
|
10
4
|
Complete: string | number;
|
|
@@ -13,5 +7,5 @@ export declare const CameraModes: {
|
|
|
13
7
|
DefaultSourceID: string;
|
|
14
8
|
}, StyleURL: {
|
|
15
9
|
Default: string;
|
|
16
|
-
},
|
|
10
|
+
}, addCustomHeader: (headerName: string, headerValue: string) => void, removeCustomHeader: (headerName: string) => void, setConnected: (connected: boolean) => void;
|
|
17
11
|
//# sourceMappingURL=MLRNModule.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MLRNModule.d.ts","sourceRoot":"","sources":["../../../../src/MLRNModule.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MLRNModule.d.ts","sourceRoot":"","sources":["../../../../src/MLRNModule.ts"],"names":[],"mappings":"AA0BA,eAAO,MACL,wBAAwB;cAvBZ,MAAM,GAAG,MAAM;YACjB,MAAM,GAAG,MAAM;cACb,MAAM,GAAG,MAAM;cACf,MAAM,GAAG,MAAM;GAqB3B,WAAW;qBAjBQ,MAAM;GAkBzB,QAAQ;aAdG,MAAM;GAgBjB,eAAe,eAba,MAAM,eAAe,MAAM,KAAG,IAAI,EAc9D,kBAAkB,eAba,MAAM,KAAG,IAAI,EAe5C,YAAY,cAbY,OAAO,KAAG,IActB,CAAC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { type ReactNode } from "react";
|
|
2
|
-
import { type ImageSourcePropType } from "react-native";
|
|
3
|
-
import type { ImageRequireSource, ImageURISource } from "react-native/Libraries/Image/ImageSource";
|
|
2
|
+
import { type ImageRequireSource, type ImageSourcePropType, type ImageURISource } from "react-native";
|
|
4
3
|
import { type BaseProps } from "../types/BaseProps";
|
|
5
4
|
export declare const NATIVE_MODULE_NAME = "MLRNImages";
|
|
6
5
|
type Without<T, U> = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Images.d.ts","sourceRoot":"","sources":["../../../../../src/components/Images.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAW,MAAM,OAAO,CAAC;AAChD,OAAO,
|
|
1
|
+
{"version":3,"file":"Images.d.ts","sourceRoot":"","sources":["../../../../../src/components/Images.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAW,MAAM,OAAO,CAAC;AAChD,OAAO,EAEL,KAAK,kBAAkB,EAEvB,KAAK,mBAAmB,EACxB,KAAK,cAAc,EAGpB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAEpD,eAAO,MAAM,kBAAkB,eAAe,CAAC;AAE/C,KAAK,OAAO,CAAC,CAAC,EAAE,CAAC,IAAI;KAAG,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK;CAAE,CAAC;AAClE,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,MAAM,GACjC,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GACzC,CAAC,GAAG,CAAC,CAAC;AAEV,MAAM,MAAM,kBAAkB,GAAG;IAC/B,MAAM,EAAE,mBAAmB,CAAC;IAC5B,GAAG,CAAC,EAAE,OAAO,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,UAAU,GAClB,MAAM,GACN,kBAAkB,GAClB,cAAc,EAAE,GAChB,GAAG,CAAC,cAAc,EAAE,kBAAkB,CAAC,CAAC;AAE5C,UAAU,WAAY,SAAQ,SAAS;IACrC;;;;OAIG;IACH,MAAM,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAA;KAAE,CAAC;IACvC;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC7B;;;OAGG;IACH,cAAc,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAE5C,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED;;GAEG;AACH,eAAO,MAAM,MAAM,GAAI,8DAMpB,WAAW,4CAoDb,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type ReactNode } from "react";
|
|
2
|
+
import { type NativeSyntheticEvent } from "react-native";
|
|
3
|
+
import { type SymbolLayerStyle } from "../../types/MapLibreRNStyles";
|
|
4
|
+
import { type PressEventWithFeatures } from "../../types/PressEvent";
|
|
5
|
+
interface AnnotationProps {
|
|
6
|
+
id: string;
|
|
7
|
+
animated?: boolean;
|
|
8
|
+
animationDuration?: number;
|
|
9
|
+
animationEasingFunction?: (x: number) => number;
|
|
10
|
+
coordinates?: number[];
|
|
11
|
+
onPress?: (event: NativeSyntheticEvent<PressEventWithFeatures>) => void;
|
|
12
|
+
children?: ReactNode;
|
|
13
|
+
style?: object;
|
|
14
|
+
icon?: string | number | object;
|
|
15
|
+
}
|
|
16
|
+
interface AnnotationRef {
|
|
17
|
+
symbolStyle: SymbolLayerStyle | undefined;
|
|
18
|
+
}
|
|
19
|
+
export declare const Annotation: import("react").ForwardRefExoticComponent<AnnotationProps & import("react").RefAttributes<AnnotationRef>>;
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=Annotation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Annotation.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/Annotation.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,SAAS,EAIf,MAAM,OAAO,CAAC;AACf,OAAO,EAGL,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAKrE,UAAU,eAAe;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,uBAAuB,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,CAAC;IAChD,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,CAAC,sBAAsB,CAAC,KAAK,IAAI,CAAC;IACxE,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC;CACjC;AAoBD,UAAU,aAAa;IACrB,WAAW,EAAE,gBAAgB,GAAG,SAAS,CAAC;CAC3C;AAED,eAAO,MAAM,UAAU,2GA2FtB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Callout.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/Callout.tsx"],"names":[],"mappings":"AACA,OAAO,EAOL,KAAK,SAAS,EACd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAEtB,eAAO,MAAM,kBAAkB,gBAAgB,CAAC;AAsChD,UAAU,YAAa,SAAQ,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC;IACrD;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB;AAMD;;GAEG;AACH,eAAO,MAAM,OAAO,GAAI,OAAO,YAAY,4CAoD1C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MarkerView.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/MarkerView.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,YAAY,EAAW,MAAM,OAAO,CAAC;AACnD,OAAO,EAAoC,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAKhF,eAAO,MAAM,kBAAkB,mBAAmB,CAAC;AAEnD,UAAU,eAAgB,SAAQ,SAAS;IACzC;;;OAGG;IACH,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB;;;;;;OAMG;IACH,MAAM,CAAC,EAAE;QACP;;WAEG;QACH,CAAC,EAAE,MAAM,CAAC;QACV;;WAEG;QACH,CAAC,EAAE,MAAM,CAAC;KACX,CAAC;IACF,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC;CACxB;AASD;;;;;;;GAOG;AACH,eAAO,MAAM,UAAU,GAAI,+CAKxB,eAAe,4CAqBjB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PointAnnotation.d.ts","sourceRoot":"","sources":["../../../../../../src/components/annotations/PointAnnotation.tsx"],"names":[],"mappings":"AACA,OAAO,EAML,KAAK,YAAY,EAClB,MAAM,OAAO,CAAC;AACf,OAAO,EAGL,KAAK,SAAS,EAEf,MAAM,cAAc,CAAC;AAKtB,eAAO,MAAM,kBAAkB,wBAAwB,CAAC;AAUxD,KAAK,cAAc,GAAG,OAAO,CAAC,OAAO,CACnC,OAAO,CAAC,KAAK,EACb;IACE,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;CACtB,CACF,CAAC;AAEF,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB;;;;;;OAMG;IACH,MAAM,CAAC,EAAE;QACP;;WAEG;QACH,CAAC,EAAE,MAAM,CAAC;QACV;;WAEG;QACH,CAAC,EAAE,MAAM,CAAC;KACX,CAAC;IACF;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,KAAK,IAAI,CAAC;IAC/C;;OAEG;IACH,YAAY,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,KAAK,IAAI,CAAC;IACjD;;OAEG;IACH,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,KAAK,IAAI,CAAC;IAChD;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,KAAK,IAAI,CAAC;IAC9C;;OAEG;IACH,MAAM,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,KAAK,IAAI,CAAC;IAE3C;;OAEG;IACH,QAAQ,EAAE,YAAY,GAAG,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;IAEtD,KAAK,CAAC,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;CAC5B;AAMD,MAAM,WAAW,kBAAkB;IACjC,OAAO,IAAI,IAAI,CAAC;CACjB;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe,qHA+G3B,CAAC"}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import { type NativeSyntheticEvent } from "react-native";
|
|
2
|
+
import { type BaseProps } from "../../types/BaseProps";
|
|
3
|
+
import type { Bounds } from "../../types/Bounds";
|
|
4
|
+
import type { ViewPadding } from "../../types/ViewPadding";
|
|
5
|
+
export interface CameraOptions {
|
|
6
|
+
/**
|
|
7
|
+
* The zoom level of the map.
|
|
8
|
+
*/
|
|
9
|
+
zoom?: number;
|
|
10
|
+
/**
|
|
11
|
+
* The bearing (rotation) of the map.
|
|
12
|
+
*/
|
|
13
|
+
bearing?: number;
|
|
14
|
+
/**
|
|
15
|
+
* The pitch of the map.
|
|
16
|
+
*/
|
|
17
|
+
pitch?: number;
|
|
18
|
+
/**
|
|
19
|
+
* The viewport padding in points.
|
|
20
|
+
*/
|
|
21
|
+
padding?: ViewPadding;
|
|
22
|
+
}
|
|
23
|
+
export type CameraEasing = undefined | "linear" | "ease" | "fly";
|
|
24
|
+
export interface CameraAnimationOptions {
|
|
25
|
+
/**
|
|
26
|
+
* The duration the map takes to animate to a new configuration.
|
|
27
|
+
*/
|
|
28
|
+
duration?: number;
|
|
29
|
+
/**
|
|
30
|
+
* The easing or path the camera uses to animate to a new configuration.
|
|
31
|
+
*/
|
|
32
|
+
easing?: CameraEasing;
|
|
33
|
+
}
|
|
34
|
+
export interface CameraCenterOptions {
|
|
35
|
+
longitude: number;
|
|
36
|
+
latitude: number;
|
|
37
|
+
}
|
|
38
|
+
export interface CameraBoundsOptions {
|
|
39
|
+
/**
|
|
40
|
+
* The corners of a box around which the map should bound.
|
|
41
|
+
*/
|
|
42
|
+
bounds: Bounds;
|
|
43
|
+
}
|
|
44
|
+
export type CameraCenterStop = CameraOptions & CameraAnimationOptions & CameraCenterOptions;
|
|
45
|
+
export type CameraBoundsStop = CameraOptions & CameraAnimationOptions & CameraBoundsOptions;
|
|
46
|
+
export type CameraStop = (CameraOptions & CameraAnimationOptions & {
|
|
47
|
+
longitude?: never;
|
|
48
|
+
latitude?: never;
|
|
49
|
+
bounds?: never;
|
|
50
|
+
}) | CameraCenterStop | CameraBoundsStop;
|
|
51
|
+
export type InitialViewState = (CameraOptions & {
|
|
52
|
+
longitude?: never;
|
|
53
|
+
latitude?: never;
|
|
54
|
+
bounds?: never;
|
|
55
|
+
}) | (CameraOptions & CameraCenterOptions) | (CameraOptions & CameraBoundsOptions);
|
|
56
|
+
export interface CameraRef {
|
|
57
|
+
/**
|
|
58
|
+
* Map camera will move to new coordinate at the same zoom level
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* cameraRef.current?.easeTo([lng, lat], 200) // eases camera to new location based on duration
|
|
62
|
+
* cameraRef.current?.easeTo([lng, lat]) // snaps camera to new location without any easing
|
|
63
|
+
*
|
|
64
|
+
* @param options.center Coordinates that map camera will move too
|
|
65
|
+
* @param options.duration Duration of camera animation
|
|
66
|
+
*/
|
|
67
|
+
jumpTo(options: {
|
|
68
|
+
center: CameraCenterOptions;
|
|
69
|
+
} & CameraOptions): void;
|
|
70
|
+
/**
|
|
71
|
+
* Map camera will move to new coordinate at the same zoom level
|
|
72
|
+
*
|
|
73
|
+
* @example
|
|
74
|
+
* cameraRef.current?.easeTo([lng, lat], 200) // eases camera to new location based on duration
|
|
75
|
+
* cameraRef.current?.easeTo([lng, lat]) // snaps camera to new location without any easing
|
|
76
|
+
*
|
|
77
|
+
* @param options.center Coordinates that map camera will move too
|
|
78
|
+
* @param options.duration Duration of camera animation
|
|
79
|
+
*/
|
|
80
|
+
easeTo(options: {
|
|
81
|
+
center: CameraCenterOptions;
|
|
82
|
+
} & CameraOptions & CameraAnimationOptions): void;
|
|
83
|
+
/**
|
|
84
|
+
* Map camera will fly to new coordinate
|
|
85
|
+
*
|
|
86
|
+
* @example
|
|
87
|
+
* cameraRef.current?.flyTo([lng, lat])
|
|
88
|
+
* cameraRef.current?.flyTo([lng, lat], 12000)
|
|
89
|
+
*
|
|
90
|
+
* @param options.center Coordinates that map camera will jump to
|
|
91
|
+
* @param options.duration Duration of camera animation
|
|
92
|
+
*/
|
|
93
|
+
flyTo(options: {
|
|
94
|
+
center: CameraCenterOptions;
|
|
95
|
+
} & CameraOptions & CameraAnimationOptions): void;
|
|
96
|
+
/**
|
|
97
|
+
* Map camera transitions to fit provided bounds
|
|
98
|
+
*
|
|
99
|
+
* @example
|
|
100
|
+
* cameraRef.current?.fitBounds([west, south, east, north])
|
|
101
|
+
* cameraRef.current?.fitBounds([west, south, east, north], { top: 20, right: 20, bottom: 20, left: 20 }, 1000)
|
|
102
|
+
*
|
|
103
|
+
* @param bounds
|
|
104
|
+
* @param options
|
|
105
|
+
* @param options.padding Padding for the bounds
|
|
106
|
+
* @param options.duration Duration of camera animation
|
|
107
|
+
*/
|
|
108
|
+
fitBounds(bounds: Bounds, options?: CameraOptions & CameraAnimationOptions): void;
|
|
109
|
+
/**
|
|
110
|
+
* Map camera will zoom to specified level
|
|
111
|
+
*
|
|
112
|
+
* @example
|
|
113
|
+
* cameraRef.current?.zoomTo(16)
|
|
114
|
+
* cameraRef.current?.zoomTo(16, 100)
|
|
115
|
+
*
|
|
116
|
+
* @param zoom Zoom level that the map camera will animate too
|
|
117
|
+
* @param options Options
|
|
118
|
+
* @param options.duration Duration of camera movement
|
|
119
|
+
*/
|
|
120
|
+
zoomTo(zoom: number, options?: CameraOptions & CameraAnimationOptions): void;
|
|
121
|
+
/**
|
|
122
|
+
* Map camera will perform updates based on provided config. Advanced use only!
|
|
123
|
+
*
|
|
124
|
+
* @example
|
|
125
|
+
* cameraRef.current?.setStop({
|
|
126
|
+
* centerCoordinate: [lng, lat],
|
|
127
|
+
* zoomLevel: 16,
|
|
128
|
+
* duration: 2000,
|
|
129
|
+
* })
|
|
130
|
+
*
|
|
131
|
+
* cameraRef.current?.setStop({
|
|
132
|
+
* stops: [
|
|
133
|
+
* { pitch: 45, duration: 200 },
|
|
134
|
+
* { heading: 180, duration: 300 },
|
|
135
|
+
* ]
|
|
136
|
+
* })
|
|
137
|
+
*
|
|
138
|
+
* @param stop Array of Camera stops
|
|
139
|
+
*/
|
|
140
|
+
setStop(stop: CameraStop): Promise<void>;
|
|
141
|
+
}
|
|
142
|
+
export type TrackUserLocation = "default" | "heading" | "course";
|
|
143
|
+
export type TrackUserLocationChangeEvent = {
|
|
144
|
+
trackUserLocation?: TrackUserLocation;
|
|
145
|
+
};
|
|
146
|
+
export type CameraProps = BaseProps & Partial<CameraStop> & {
|
|
147
|
+
/**
|
|
148
|
+
* Default view settings applied on camera
|
|
149
|
+
*/
|
|
150
|
+
initialViewState?: InitialViewState;
|
|
151
|
+
/**
|
|
152
|
+
* Minimum zoom level of the map
|
|
153
|
+
*/
|
|
154
|
+
minZoom?: number;
|
|
155
|
+
/**
|
|
156
|
+
* Maximum zoom level of the map
|
|
157
|
+
*/
|
|
158
|
+
maxZoom?: number;
|
|
159
|
+
/**
|
|
160
|
+
* Restrict map panning so that the center is within these bounds
|
|
161
|
+
*/
|
|
162
|
+
maxBounds?: Bounds;
|
|
163
|
+
/**
|
|
164
|
+
* The mode used to track the user location on the map:
|
|
165
|
+
*
|
|
166
|
+
* - undefined: The user's location is not tracked
|
|
167
|
+
* - "default": Centers the user's location
|
|
168
|
+
* - "heading": Centers the user's location and uses the compass for bearing
|
|
169
|
+
* - "course": Centers the user's location and uses the direction of travel for bearing
|
|
170
|
+
*
|
|
171
|
+
* @default undefined
|
|
172
|
+
*/
|
|
173
|
+
trackUserLocation?: TrackUserLocation;
|
|
174
|
+
/**
|
|
175
|
+
* Triggered when `trackUserLocation` changes
|
|
176
|
+
*/
|
|
177
|
+
onTrackUserLocationChange?: (event: NativeSyntheticEvent<TrackUserLocationChangeEvent>) => void;
|
|
178
|
+
};
|
|
179
|
+
export declare const Camera: import("react").NamedExoticComponent<CameraProps & import("react").RefAttributes<CameraRef>>;
|
|
180
|
+
//# sourceMappingURL=Camera.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Camera.d.ts","sourceRoot":"","sources":["../../../../../../src/components/camera/Camera.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { type CodegenTypes, type HostComponent, type ViewProps } from "react-native";
|
|
2
|
+
type NativeViewPadding = {
|
|
3
|
+
top?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
4
|
+
right?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
5
|
+
bottom?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
6
|
+
left?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
7
|
+
};
|
|
8
|
+
type NativeViewState = {
|
|
9
|
+
longitude?: CodegenTypes.WithDefault<CodegenTypes.Double, -360>;
|
|
10
|
+
latitude?: CodegenTypes.WithDefault<CodegenTypes.Double, -360>;
|
|
11
|
+
bounds?: CodegenTypes.Double[];
|
|
12
|
+
padding?: NativeViewPadding;
|
|
13
|
+
zoom?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
14
|
+
bearing?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
15
|
+
pitch?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
16
|
+
};
|
|
17
|
+
type NativeEasingMode = "none" | "linear" | "ease" | "fly";
|
|
18
|
+
type NativeCameraStop = NativeViewState & {
|
|
19
|
+
duration?: CodegenTypes.WithDefault<CodegenTypes.Int32, -1>;
|
|
20
|
+
easing?: CodegenTypes.WithDefault<NativeEasingMode, "none">;
|
|
21
|
+
};
|
|
22
|
+
type NativeTrackUserLocationMode = "none" | "default" | "heading" | "course";
|
|
23
|
+
type TrackUserLocationChangeEvent = {
|
|
24
|
+
trackUserLocation?: string;
|
|
25
|
+
};
|
|
26
|
+
export interface NativeProps extends ViewProps {
|
|
27
|
+
stop?: NativeCameraStop;
|
|
28
|
+
initialViewState?: NativeViewState;
|
|
29
|
+
minZoom?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
30
|
+
maxZoom?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
31
|
+
maxBounds?: CodegenTypes.Double[];
|
|
32
|
+
trackUserLocation?: CodegenTypes.WithDefault<NativeTrackUserLocationMode, "none">;
|
|
33
|
+
onTrackUserLocationChange?: CodegenTypes.DirectEventHandler<TrackUserLocationChangeEvent>;
|
|
34
|
+
}
|
|
35
|
+
declare const _default: HostComponent<NativeProps>;
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=CameraNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CameraNativeComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/components/camera/CameraNativeComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,aAAa,EAClB,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAGtB,KAAK,iBAAiB,GAAG;IACvB,GAAG,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;IACtD,KAAK,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;IACxD,MAAM,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;IACzD,IAAI,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;CACxD,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,SAAS,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IAChE,QAAQ,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IAE/D,MAAM,CAAC,EAAE,YAAY,CAAC,MAAM,EAAE,CAAC;IAE/B,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B,IAAI,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IACzD,OAAO,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5D,KAAK,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;CAC3D,CAAC;AAEF,KAAK,gBAAgB,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,CAAC;AAE3D,KAAK,gBAAgB,GAAG,eAAe,GAAG;IACxC,QAAQ,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5D,MAAM,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAC;CAC7D,CAAC;AAGF,KAAK,2BAA2B,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;AAE7E,KAAK,4BAA4B,GAAG;IAClC,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC;AAEF,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAExB,gBAAgB,CAAC,EAAE,eAAe,CAAC;IAEnC,OAAO,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5D,OAAO,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5D,SAAS,CAAC,EAAE,YAAY,CAAC,MAAM,EAAE,CAAC;IAElC,iBAAiB,CAAC,EAAE,YAAY,CAAC,WAAW,CAC1C,2BAA2B,EAC3B,MAAM,CACP,CAAC;IAEF,yBAAyB,CAAC,EAAE,YAAY,CAAC,kBAAkB,CAAC,4BAA4B,CAAC,CAAC;CAC3F;wBAII,aAAa,CAAC,WAAW,CAAC;AAF/B,wBAEgC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { type CodegenTypes, type TurboModule } from "react-native";
|
|
2
|
+
type NativeViewPadding = {
|
|
3
|
+
top?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
4
|
+
right?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
5
|
+
bottom?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
6
|
+
left?: CodegenTypes.WithDefault<CodegenTypes.Int32, 0>;
|
|
7
|
+
};
|
|
8
|
+
type NativeViewState = {
|
|
9
|
+
longitude?: CodegenTypes.WithDefault<CodegenTypes.Double, -360>;
|
|
10
|
+
latitude?: CodegenTypes.WithDefault<CodegenTypes.Double, -360>;
|
|
11
|
+
bounds?: CodegenTypes.Double[];
|
|
12
|
+
padding?: NativeViewPadding;
|
|
13
|
+
zoom?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
14
|
+
bearing?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
15
|
+
pitch?: CodegenTypes.WithDefault<CodegenTypes.Double, -1>;
|
|
16
|
+
};
|
|
17
|
+
type NativeEasingMode = "none" | "linear" | "ease" | "fly";
|
|
18
|
+
type NativeCameraStop = NativeViewState & {
|
|
19
|
+
duration?: CodegenTypes.WithDefault<CodegenTypes.Int32, -1>;
|
|
20
|
+
easing?: CodegenTypes.WithDefault<NativeEasingMode, "none">;
|
|
21
|
+
};
|
|
22
|
+
export interface Spec extends TurboModule {
|
|
23
|
+
setStop(reactTag: CodegenTypes.Int32, stop: NativeCameraStop): Promise<void>;
|
|
24
|
+
}
|
|
25
|
+
declare const _default: Spec;
|
|
26
|
+
export default _default;
|
|
27
|
+
//# sourceMappingURL=NativeCameraModule.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeCameraModule.d.ts","sourceRoot":"","sources":["../../../../../../src/components/camera/NativeCameraModule.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,WAAW,EACjB,MAAM,cAAc,CAAC;AAGtB,KAAK,iBAAiB,GAAG;IACvB,GAAG,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;IACtD,KAAK,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;IACxD,MAAM,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;IACzD,IAAI,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;CACxD,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,SAAS,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IAChE,QAAQ,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IAE/D,MAAM,CAAC,EAAE,YAAY,CAAC,MAAM,EAAE,CAAC;IAE/B,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B,IAAI,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IACzD,OAAO,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5D,KAAK,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;CAC3D,CAAC;AAEF,KAAK,gBAAgB,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,CAAC;AAE3D,KAAK,gBAAgB,GAAG,eAAe,GAAG;IACxC,QAAQ,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5D,MAAM,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAC;CAC7D,CAAC;AAGF,MAAM,WAAW,IAAK,SAAQ,WAAW;IACvC,OAAO,CAAC,QAAQ,EAAE,YAAY,CAAC,KAAK,EAAE,IAAI,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC9E;;AAED,wBAA0E"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type BaseLayerProps } from "../../hooks/useAbstractLayer";
|
|
2
|
+
import { type BaseProps } from "../../types/BaseProps";
|
|
3
|
+
import { type BackgroundLayerStyle } from "../../types/MapLibreRNStyles";
|
|
4
|
+
export declare const NATIVE_MODULE_NAME = "MLRNBackgroundLayer";
|
|
5
|
+
export interface BackgroundLayerProps extends BaseProps, BaseLayerProps {
|
|
6
|
+
/**
|
|
7
|
+
* Customizable style attributes
|
|
8
|
+
*/
|
|
9
|
+
style?: BackgroundLayerStyle;
|
|
10
|
+
}
|
|
11
|
+
export declare const BackgroundLayer: ({ sourceID, ...props }: BackgroundLayerProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
//# sourceMappingURL=BackgroundLayer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BackgroundLayer.d.ts","sourceRoot":"","sources":["../../../../../../src/components/layers/BackgroundLayer.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,KAAK,cAAc,EAEpB,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAIzE,eAAO,MAAM,kBAAkB,wBAAwB,CAAC;AAExD,MAAM,WAAW,oBAAqB,SAAQ,SAAS,EAAE,cAAc;IACrE;;OAEG;IACH,KAAK,CAAC,EAAE,oBAAoB,CAAC;CAC9B;AASD,eAAO,MAAM,eAAe,GAAI,wBAG7B,oBAAoB,4CAgBtB,CAAC"}
|