@maplibre/maplibre-react-native 10.0.0-beta.9 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -54
- package/android/build.gradle +35 -12
- package/android/gradle.properties +14 -6
- package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCamera.java +37 -48
- package/android/src/main/java/org/maplibre/reactnative/components/location/LocationComponentManager.java +16 -9
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java +11 -13
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java +4 -11
- package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java +1 -4
- package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFactory.java +10 -11
- package/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java +7 -11
- package/android/src/main/java/org/maplibre/reactnative/location/engine/DefaultLocationEngineProvider.java +18 -0
- package/android/src/main/java/org/maplibre/reactnative/location/engine/LocationEngineProvidable.java +9 -0
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java +27 -148
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java +1 -3
- package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java +49 -24
- package/android/src/main/location-engine-default/org/maplibre/reactnative/location/engine/LocationEngineProvider.java +12 -0
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/GoogleLocationEngineImpl.java +151 -0
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/GoogleLocationEngineProvider.java +24 -0
- package/android/src/main/location-engine-google/org/maplibre/reactnative/location/engine/LocationEngineProvider.java +12 -0
- package/app.plugin.js +1 -1
- package/ios/MLRN/MLRNCamera.m +6 -7
- package/ios/MLRN/MLRNMapView.h +1 -1
- package/ios/MLRN/MLRNMapView.m +7 -7
- package/ios/MLRN/MLRNMapViewManager.m +1 -1
- package/ios/MLRN/MLRNModule.m +8 -139
- package/ios/MLRN/MLRNStyle.m +0 -40
- package/lib/commonjs/MLRNModule.js +3 -5
- package/lib/commonjs/MLRNModule.js.map +1 -1
- package/lib/commonjs/MapLibreRN.js +77 -59
- package/lib/commonjs/MapLibreRN.js.map +1 -1
- package/lib/commonjs/components/Annotation.js +7 -9
- package/lib/commonjs/components/Annotation.js.map +1 -1
- package/lib/commonjs/components/BackgroundLayer.js +6 -8
- package/lib/commonjs/components/BackgroundLayer.js.map +1 -1
- package/lib/commonjs/components/Callout.js +2 -2
- package/lib/commonjs/components/Callout.js.map +1 -1
- package/lib/commonjs/components/Camera.js +111 -63
- package/lib/commonjs/components/Camera.js.map +1 -1
- package/lib/commonjs/components/CircleLayer.js +6 -8
- package/lib/commonjs/components/CircleLayer.js.map +1 -1
- package/lib/commonjs/components/FillExtrusionLayer.js +6 -8
- package/lib/commonjs/components/FillExtrusionLayer.js.map +1 -1
- package/lib/commonjs/components/FillLayer.js +6 -8
- package/lib/commonjs/components/FillLayer.js.map +1 -1
- package/lib/commonjs/components/HeadingIndicator.js +4 -4
- package/lib/commonjs/components/HeadingIndicator.js.map +1 -1
- package/lib/commonjs/components/HeatmapLayer.js +6 -8
- package/lib/commonjs/components/HeatmapLayer.js.map +1 -1
- package/lib/commonjs/components/ImageSource.js +4 -5
- package/lib/commonjs/components/ImageSource.js.map +1 -1
- package/lib/commonjs/components/Images.js +2 -2
- package/lib/commonjs/components/Images.js.map +1 -1
- package/lib/commonjs/components/Light.js +4 -6
- package/lib/commonjs/components/Light.js.map +1 -1
- package/lib/commonjs/components/LineLayer.js +6 -8
- package/lib/commonjs/components/LineLayer.js.map +1 -1
- package/lib/commonjs/components/MapView.js +69 -76
- package/lib/commonjs/components/MapView.js.map +1 -1
- package/lib/commonjs/components/MarkerView.js +4 -5
- package/lib/commonjs/components/MarkerView.js.map +1 -1
- package/lib/commonjs/components/NativeUserLocation.js +2 -2
- package/lib/commonjs/components/NativeUserLocation.js.map +1 -1
- package/lib/commonjs/components/PointAnnotation.js +7 -10
- package/lib/commonjs/components/PointAnnotation.js.map +1 -1
- package/lib/commonjs/components/RasterLayer.js +6 -8
- package/lib/commonjs/components/RasterLayer.js.map +1 -1
- package/lib/commonjs/components/RasterSource.js +8 -10
- package/lib/commonjs/components/RasterSource.js.map +1 -1
- package/lib/commonjs/components/ShapeSource.js +6 -8
- package/lib/commonjs/components/ShapeSource.js.map +1 -1
- package/lib/commonjs/components/SymbolLayer.js +6 -7
- package/lib/commonjs/components/SymbolLayer.js.map +1 -1
- package/lib/commonjs/components/UserLocation.js +21 -23
- package/lib/commonjs/components/UserLocation.js.map +1 -1
- package/lib/commonjs/components/VectorSource.js +8 -10
- package/lib/commonjs/components/VectorSource.js.map +1 -1
- package/lib/commonjs/hooks/useAbstractLayer.js +1 -1
- package/lib/commonjs/hooks/useAbstractLayer.js.map +1 -1
- package/lib/commonjs/hooks/useAbstractSource.js +1 -1
- package/lib/commonjs/hooks/useAbstractSource.js.map +1 -1
- package/lib/commonjs/hooks/useNativeBridge.js +2 -2
- package/lib/commonjs/hooks/useNativeBridge.js.map +1 -1
- package/lib/commonjs/hooks/useOnce.js +2 -2
- package/lib/commonjs/hooks/useOnce.js.map +1 -1
- package/lib/commonjs/index.js +3 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/modules/location/{locationManager.js → LocationManager.js} +10 -10
- package/lib/commonjs/modules/location/LocationManager.js.map +1 -0
- package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js +2 -2
- package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js.map +1 -1
- package/lib/commonjs/modules/offline/{offlineManager.js → OfflineManager.js} +34 -36
- package/lib/commonjs/modules/offline/OfflineManager.js.map +1 -0
- package/lib/commonjs/modules/offline/OfflinePack.js +2 -2
- package/lib/commonjs/modules/offline/OfflinePack.js.map +1 -1
- package/lib/commonjs/modules/snapshot/{snapshotManager.js → SnapshotManager.js} +12 -14
- package/lib/commonjs/modules/snapshot/SnapshotManager.js.map +1 -0
- package/lib/commonjs/modules/snapshot/SnapshotOptions.js +3 -4
- package/lib/commonjs/modules/snapshot/SnapshotOptions.js.map +1 -1
- package/lib/commonjs/plugin/MapLibrePluginProps.js +2 -0
- package/lib/commonjs/plugin/MapLibrePluginProps.js.map +1 -0
- package/lib/commonjs/plugin/android.js +41 -0
- package/lib/commonjs/plugin/android.js.map +1 -0
- package/lib/commonjs/plugin/ios.js +131 -0
- package/lib/commonjs/plugin/ios.js.map +1 -0
- package/lib/commonjs/plugin/withMapLibre.js +31 -0
- package/lib/commonjs/plugin/withMapLibre.js.map +1 -0
- package/lib/commonjs/types/MapLibreRNStyles.js +6 -0
- package/lib/commonjs/types/MapLibreRNStyles.js.map +1 -0
- package/lib/commonjs/utils/BridgeValue.js +2 -2
- package/lib/commonjs/utils/BridgeValue.js.map +1 -1
- package/lib/commonjs/utils/Logger.js +2 -2
- package/lib/commonjs/utils/Logger.js.map +1 -1
- package/lib/commonjs/utils/StyleValue.js +4 -5
- package/lib/commonjs/utils/StyleValue.js.map +1 -1
- package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js +2 -2
- package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js.map +1 -1
- package/lib/commonjs/utils/animated/Animated.js +29 -31
- package/lib/commonjs/utils/animated/Animated.js.map +1 -1
- package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js +4 -5
- package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js.map +1 -1
- package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js +2 -2
- package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -1
- package/lib/commonjs/utils/animated/AnimatedPoint.js +1 -2
- package/lib/commonjs/utils/animated/AnimatedPoint.js.map +1 -1
- package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +4 -4
- package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -1
- package/lib/commonjs/utils/animated/AnimatedShape.js +2 -2
- package/lib/commonjs/utils/animated/AnimatedShape.js.map +1 -1
- package/lib/commonjs/utils/getStylePropertyType.js +252 -0
- package/lib/commonjs/utils/getStylePropertyType.js.map +1 -0
- package/lib/module/MLRNModule.js +1 -2
- package/lib/module/MLRNModule.js.map +1 -1
- package/lib/module/MapLibreRN.js +40 -28
- package/lib/module/MapLibreRN.js.map +1 -1
- package/lib/module/components/Annotation.js +5 -6
- package/lib/module/components/Annotation.js.map +1 -1
- package/lib/module/components/BackgroundLayer.js +4 -6
- package/lib/module/components/BackgroundLayer.js.map +1 -1
- package/lib/module/components/Callout.js +2 -3
- package/lib/module/components/Callout.js.map +1 -1
- package/lib/module/components/Camera.js +112 -64
- package/lib/module/components/Camera.js.map +1 -1
- package/lib/module/components/CircleLayer.js +4 -6
- package/lib/module/components/CircleLayer.js.map +1 -1
- package/lib/module/components/FillExtrusionLayer.js +4 -6
- package/lib/module/components/FillExtrusionLayer.js.map +1 -1
- package/lib/module/components/FillLayer.js +4 -6
- package/lib/module/components/FillLayer.js.map +1 -1
- package/lib/module/components/HeadingIndicator.js +2 -3
- package/lib/module/components/HeadingIndicator.js.map +1 -1
- package/lib/module/components/HeatmapLayer.js +4 -6
- package/lib/module/components/HeatmapLayer.js.map +1 -1
- package/lib/module/components/ImageSource.js +2 -3
- package/lib/module/components/ImageSource.js.map +1 -1
- package/lib/module/components/Images.js +2 -3
- package/lib/module/components/Images.js.map +1 -1
- package/lib/module/components/Light.js +2 -4
- package/lib/module/components/Light.js.map +1 -1
- package/lib/module/components/LineLayer.js +4 -6
- package/lib/module/components/LineLayer.js.map +1 -1
- package/lib/module/components/MapView.js +65 -72
- package/lib/module/components/MapView.js.map +1 -1
- package/lib/module/components/MarkerView.js +2 -3
- package/lib/module/components/MarkerView.js.map +1 -1
- package/lib/module/components/NativeUserLocation.js +1 -2
- package/lib/module/components/NativeUserLocation.js.map +1 -1
- package/lib/module/components/PointAnnotation.js +5 -7
- package/lib/module/components/PointAnnotation.js.map +1 -1
- package/lib/module/components/RasterLayer.js +4 -6
- package/lib/module/components/RasterLayer.js.map +1 -1
- package/lib/module/components/RasterSource.js +5 -7
- package/lib/module/components/RasterSource.js.map +1 -1
- package/lib/module/components/ShapeSource.js +4 -5
- package/lib/module/components/ShapeSource.js.map +1 -1
- package/lib/module/components/SymbolLayer.js +4 -5
- package/lib/module/components/SymbolLayer.js.map +1 -1
- package/lib/module/components/UserLocation.js +14 -15
- package/lib/module/components/UserLocation.js.map +1 -1
- package/lib/module/components/VectorSource.js +5 -6
- package/lib/module/components/VectorSource.js.map +1 -1
- package/lib/module/hooks/useAbstractLayer.js +1 -1
- package/lib/module/hooks/useAbstractLayer.js.map +1 -1
- package/lib/module/hooks/useAbstractSource.js +1 -1
- package/lib/module/hooks/useAbstractSource.js.map +1 -1
- package/lib/module/hooks/useNativeBridge.js +1 -2
- package/lib/module/hooks/useNativeBridge.js.map +1 -1
- package/lib/module/hooks/useNativeRef.js.map +1 -1
- package/lib/module/hooks/useOnce.js +1 -2
- package/lib/module/hooks/useOnce.js.map +1 -1
- package/lib/module/index.js +4 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/modules/location/{locationManager.js → LocationManager.js} +10 -9
- package/lib/module/modules/location/LocationManager.js.map +1 -0
- package/lib/module/modules/offline/OfflineCreatePackOptions.js +1 -2
- package/lib/module/modules/offline/OfflineCreatePackOptions.js.map +1 -1
- package/lib/module/modules/offline/{offlineManager.js → OfflineManager.js} +30 -30
- package/lib/module/modules/offline/OfflineManager.js.map +1 -0
- package/lib/module/modules/offline/OfflinePack.js +1 -2
- package/lib/module/modules/offline/OfflinePack.js.map +1 -1
- package/lib/module/modules/snapshot/{snapshotManager.js → SnapshotManager.js} +10 -10
- package/lib/module/modules/snapshot/{snapshotManager.js.map → SnapshotManager.js.map} +1 -1
- package/lib/module/modules/snapshot/SnapshotOptions.js +2 -3
- package/lib/module/modules/snapshot/SnapshotOptions.js.map +1 -1
- package/lib/module/plugin/MapLibrePluginProps.js +2 -0
- package/lib/module/plugin/MapLibrePluginProps.js.map +1 -0
- package/lib/module/plugin/android.js +34 -0
- package/lib/module/plugin/android.js.map +1 -0
- package/lib/module/plugin/ios.js +123 -0
- package/lib/module/plugin/ios.js.map +1 -0
- package/lib/module/plugin/withMapLibre.js +27 -0
- package/lib/module/plugin/withMapLibre.js.map +1 -0
- package/lib/module/types/MapLibreRNStyles.js +4 -0
- package/lib/module/types/MapLibreRNStyles.js.map +1 -0
- package/lib/module/utils/BridgeValue.js +1 -1
- package/lib/module/utils/BridgeValue.js.map +1 -1
- package/lib/module/utils/Logger.js +1 -2
- package/lib/module/utils/Logger.js.map +1 -1
- package/lib/module/utils/StyleValue.js +3 -3
- package/lib/module/utils/StyleValue.js.map +1 -1
- package/lib/module/utils/animated/AbstractAnimatedCoordinates.js +1 -2
- package/lib/module/utils/animated/AbstractAnimatedCoordinates.js.map +1 -1
- package/lib/module/utils/animated/Animated.js +14 -15
- package/lib/module/utils/animated/Animated.js.map +1 -1
- package/lib/module/utils/animated/AnimatedCoordinatesArray.js +2 -3
- package/lib/module/utils/animated/AnimatedCoordinatesArray.js.map +1 -1
- package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js +1 -1
- package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -1
- package/lib/module/utils/animated/AnimatedPoint.js +0 -1
- package/lib/module/utils/animated/AnimatedPoint.js.map +1 -1
- package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +2 -2
- package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -1
- package/lib/module/utils/animated/AnimatedShape.js +1 -2
- package/lib/module/utils/animated/AnimatedShape.js.map +1 -1
- package/lib/module/utils/getStylePropertyType.js +248 -0
- package/lib/module/utils/getStylePropertyType.js.map +1 -0
- package/lib/typescript/commonjs/src/MLRNModule.d.ts +2 -6
- package/lib/typescript/commonjs/src/MLRNModule.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/MapLibreRN.d.ts +43 -30
- package/lib/typescript/commonjs/src/MapLibreRN.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Annotation.d.ts +6 -6
- package/lib/typescript/commonjs/src/components/Annotation.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts +3 -5
- package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Callout.d.ts +3 -4
- package/lib/typescript/commonjs/src/components/Callout.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Camera.d.ts +4 -4
- package/lib/typescript/commonjs/src/components/Camera.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/CircleLayer.d.ts +3 -5
- package/lib/typescript/commonjs/src/components/CircleLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts +3 -5
- package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/FillLayer.d.ts +3 -5
- package/lib/typescript/commonjs/src/components/FillLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts +2 -3
- package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts +3 -5
- package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/ImageSource.d.ts +3 -4
- package/lib/typescript/commonjs/src/components/ImageSource.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Images.d.ts +5 -5
- package/lib/typescript/commonjs/src/components/Images.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Light.d.ts +4 -5
- package/lib/typescript/commonjs/src/components/Light.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/LineLayer.d.ts +3 -5
- package/lib/typescript/commonjs/src/components/LineLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/MapView.d.ts +12 -15
- package/lib/typescript/commonjs/src/components/MapView.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/MarkerView.d.ts +3 -3
- package/lib/typescript/commonjs/src/components/MarkerView.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts +2 -3
- package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts +7 -8
- package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/RasterLayer.d.ts +3 -5
- package/lib/typescript/commonjs/src/components/RasterLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/RasterSource.d.ts +4 -4
- package/lib/typescript/commonjs/src/components/RasterSource.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/ShapeSource.d.ts +8 -15
- package/lib/typescript/commonjs/src/components/ShapeSource.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts +3 -4
- package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/UserLocation.d.ts +6 -6
- package/lib/typescript/commonjs/src/components/UserLocation.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/VectorSource.d.ts +4 -8
- package/lib/typescript/commonjs/src/components/VectorSource.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts +5 -4
- package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts +4 -3
- package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts +5 -5
- package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts +2 -2
- package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/hooks/useOnce.d.ts +1 -2
- package/lib/typescript/commonjs/src/hooks/useOnce.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/modules/location/LocationManager.d.ts +33 -0
- package/lib/typescript/commonjs/src/modules/location/LocationManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts +1 -2
- package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/modules/offline/{offlineManager.d.ts → OfflineManager.d.ts} +25 -25
- package/lib/typescript/commonjs/src/modules/offline/OfflineManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts +2 -3
- package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts.map +1 -1
- package/lib/typescript/{module/src/modules/snapshot/snapshotManager.d.ts → commonjs/src/modules/snapshot/SnapshotManager.d.ts} +9 -9
- package/lib/typescript/commonjs/src/modules/snapshot/SnapshotManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts +1 -1
- package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/plugin/MapLibrePluginProps.d.ts +77 -0
- package/lib/typescript/commonjs/src/plugin/MapLibrePluginProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/plugin/android.d.ts +16 -0
- package/lib/typescript/commonjs/src/plugin/android.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/plugin/ios.d.ts +17 -0
- package/lib/typescript/commonjs/src/plugin/ios.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/plugin/withMapLibre.d.ts +5 -0
- package/lib/typescript/commonjs/src/plugin/withMapLibre.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts +960 -0
- package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts +1 -1
- package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/Logger.d.ts +2 -2
- package/lib/typescript/commonjs/src/utils/Logger.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/StyleValue.d.ts +2 -2
- package/lib/typescript/commonjs/src/utils/StyleValue.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts +2 -2
- package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts +19 -19
- package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts +3 -3
- package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +2 -2
- package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts +5 -5
- package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/filterUtils.d.ts +1 -1
- package/lib/typescript/commonjs/src/utils/filterUtils.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/utils/getStylePropertyType.d.ts +35 -0
- package/lib/typescript/commonjs/src/utils/getStylePropertyType.d.ts.map +1 -0
- package/lib/typescript/module/src/MLRNModule.d.ts +2 -6
- package/lib/typescript/module/src/MLRNModule.d.ts.map +1 -1
- package/lib/typescript/module/src/MapLibreRN.d.ts +43 -30
- package/lib/typescript/module/src/MapLibreRN.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Annotation.d.ts +6 -6
- package/lib/typescript/module/src/components/Annotation.d.ts.map +1 -1
- package/lib/typescript/module/src/components/BackgroundLayer.d.ts +3 -5
- package/lib/typescript/module/src/components/BackgroundLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Callout.d.ts +3 -4
- package/lib/typescript/module/src/components/Callout.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Camera.d.ts +4 -4
- package/lib/typescript/module/src/components/Camera.d.ts.map +1 -1
- package/lib/typescript/module/src/components/CircleLayer.d.ts +3 -5
- package/lib/typescript/module/src/components/CircleLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts +3 -5
- package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/FillLayer.d.ts +3 -5
- package/lib/typescript/module/src/components/FillLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/HeadingIndicator.d.ts +2 -3
- package/lib/typescript/module/src/components/HeadingIndicator.d.ts.map +1 -1
- package/lib/typescript/module/src/components/HeatmapLayer.d.ts +3 -5
- package/lib/typescript/module/src/components/HeatmapLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/ImageSource.d.ts +3 -4
- package/lib/typescript/module/src/components/ImageSource.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Images.d.ts +5 -5
- package/lib/typescript/module/src/components/Images.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Light.d.ts +4 -5
- package/lib/typescript/module/src/components/Light.d.ts.map +1 -1
- package/lib/typescript/module/src/components/LineLayer.d.ts +3 -5
- package/lib/typescript/module/src/components/LineLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/MapView.d.ts +12 -15
- package/lib/typescript/module/src/components/MapView.d.ts.map +1 -1
- package/lib/typescript/module/src/components/MarkerView.d.ts +3 -3
- package/lib/typescript/module/src/components/MarkerView.d.ts.map +1 -1
- package/lib/typescript/module/src/components/NativeUserLocation.d.ts +2 -3
- package/lib/typescript/module/src/components/NativeUserLocation.d.ts.map +1 -1
- package/lib/typescript/module/src/components/PointAnnotation.d.ts +7 -8
- package/lib/typescript/module/src/components/PointAnnotation.d.ts.map +1 -1
- package/lib/typescript/module/src/components/RasterLayer.d.ts +3 -5
- package/lib/typescript/module/src/components/RasterLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/RasterSource.d.ts +4 -4
- package/lib/typescript/module/src/components/RasterSource.d.ts.map +1 -1
- package/lib/typescript/module/src/components/ShapeSource.d.ts +8 -15
- package/lib/typescript/module/src/components/ShapeSource.d.ts.map +1 -1
- package/lib/typescript/module/src/components/SymbolLayer.d.ts +3 -4
- package/lib/typescript/module/src/components/SymbolLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/components/UserLocation.d.ts +6 -6
- package/lib/typescript/module/src/components/UserLocation.d.ts.map +1 -1
- package/lib/typescript/module/src/components/VectorSource.d.ts +4 -8
- package/lib/typescript/module/src/components/VectorSource.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts +5 -4
- package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/useAbstractSource.d.ts +4 -3
- package/lib/typescript/module/src/hooks/useAbstractSource.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/useNativeBridge.d.ts +5 -5
- package/lib/typescript/module/src/hooks/useNativeBridge.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/useNativeRef.d.ts +2 -2
- package/lib/typescript/module/src/hooks/useNativeRef.d.ts.map +1 -1
- package/lib/typescript/module/src/hooks/useOnce.d.ts +1 -2
- package/lib/typescript/module/src/hooks/useOnce.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +3 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/modules/location/LocationManager.d.ts +33 -0
- package/lib/typescript/module/src/modules/location/LocationManager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts +1 -2
- package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -1
- package/lib/typescript/module/src/modules/offline/{offlineManager.d.ts → OfflineManager.d.ts} +25 -25
- package/lib/typescript/module/src/modules/offline/OfflineManager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts +2 -3
- package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts.map +1 -1
- package/lib/typescript/{commonjs/src/modules/snapshot/snapshotManager.d.ts → module/src/modules/snapshot/SnapshotManager.d.ts} +9 -9
- package/lib/typescript/module/src/modules/snapshot/SnapshotManager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts +1 -1
- package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -1
- package/lib/typescript/module/src/plugin/MapLibrePluginProps.d.ts +77 -0
- package/lib/typescript/module/src/plugin/MapLibrePluginProps.d.ts.map +1 -0
- package/lib/typescript/module/src/plugin/android.d.ts +16 -0
- package/lib/typescript/module/src/plugin/android.d.ts.map +1 -0
- package/lib/typescript/module/src/plugin/ios.d.ts +17 -0
- package/lib/typescript/module/src/plugin/ios.d.ts.map +1 -0
- package/lib/typescript/module/src/plugin/withMapLibre.d.ts +5 -0
- package/lib/typescript/module/src/plugin/withMapLibre.d.ts.map +1 -0
- package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts +960 -0
- package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/BridgeValue.d.ts +1 -1
- package/lib/typescript/module/src/utils/BridgeValue.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/Logger.d.ts +2 -2
- package/lib/typescript/module/src/utils/Logger.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/StyleValue.d.ts +2 -2
- package/lib/typescript/module/src/utils/StyleValue.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts +2 -2
- package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/Animated.d.ts +19 -19
- package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts +3 -3
- package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +2 -2
- package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts +5 -5
- package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/filterUtils.d.ts +1 -1
- package/lib/typescript/module/src/utils/filterUtils.d.ts.map +1 -1
- package/lib/typescript/module/src/utils/getStylePropertyType.d.ts +35 -0
- package/lib/typescript/module/src/utils/getStylePropertyType.d.ts.map +1 -0
- package/maplibre-react-native.podspec +15 -14
- package/package.json +17 -14
- package/src/MLRNModule.ts +15 -10
- package/src/MapLibreRN.ts +59 -41
- package/src/components/Annotation.tsx +12 -14
- package/src/components/BackgroundLayer.tsx +7 -9
- package/src/components/Callout.tsx +8 -10
- package/src/components/Camera.tsx +154 -78
- package/src/components/CircleLayer.tsx +7 -9
- package/src/components/FillExtrusionLayer.tsx +7 -9
- package/src/components/FillLayer.tsx +7 -9
- package/src/components/HeadingIndicator.tsx +2 -6
- package/src/components/HeatmapLayer.tsx +7 -9
- package/src/components/ImageSource.tsx +4 -6
- package/src/components/Images.tsx +7 -9
- package/src/components/Light.tsx +5 -7
- package/src/components/LineLayer.tsx +7 -9
- package/src/components/MapView.tsx +85 -94
- package/src/components/MarkerView.tsx +4 -6
- package/src/components/NativeUserLocation.tsx +1 -4
- package/src/components/PointAnnotation.tsx +10 -11
- package/src/components/RasterLayer.tsx +7 -9
- package/src/components/RasterSource.tsx +7 -9
- package/src/components/ShapeSource.tsx +17 -22
- package/src/components/SymbolLayer.tsx +7 -8
- package/src/components/UserLocation.tsx +21 -22
- package/src/components/VectorSource.tsx +8 -15
- package/src/hooks/useAbstractLayer.ts +8 -8
- package/src/hooks/useAbstractSource.ts +6 -6
- package/src/hooks/useNativeBridge.ts +9 -6
- package/src/hooks/useNativeRef.ts +2 -2
- package/src/hooks/useOnce.ts +3 -3
- package/src/index.ts +3 -0
- package/src/modules/location/{locationManager.ts → LocationManager.ts} +16 -15
- package/src/modules/offline/OfflineCreatePackOptions.ts +1 -3
- package/src/modules/offline/{offlineManager.ts → OfflineManager.ts} +30 -29
- package/src/modules/offline/OfflinePack.ts +2 -4
- package/src/modules/snapshot/{snapshotManager.ts → SnapshotManager.ts} +9 -9
- package/src/modules/snapshot/SnapshotOptions.ts +2 -4
- package/src/plugin/MapLibrePluginProps.ts +83 -0
- package/src/plugin/android.ts +64 -0
- package/src/plugin/ios.ts +166 -0
- package/src/plugin/withMapLibre.ts +30 -0
- package/src/{utils/MapLibreRNStyles.d.ts → types/MapLibreRNStyles.ts} +86 -406
- package/src/utils/BridgeValue.ts +1 -1
- package/src/utils/Logger.ts +1 -3
- package/src/utils/StyleValue.ts +6 -5
- package/src/utils/animated/AbstractAnimatedCoordinates.ts +3 -3
- package/src/utils/animated/Animated.ts +23 -21
- package/src/utils/animated/AnimatedCoordinatesArray.ts +3 -4
- package/src/utils/animated/AnimatedExtractCoordinateFromArray.ts +1 -1
- package/src/utils/animated/AnimatedPoint.ts +0 -2
- package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +3 -2
- package/src/utils/animated/AnimatedShape.ts +4 -6
- package/src/utils/filterUtils.ts +1 -1
- package/src/utils/getStylePropertyType.ts +265 -0
- package/lib/commonjs/modules/location/locationManager.js.map +0 -1
- package/lib/commonjs/modules/offline/offlineManager.js.map +0 -1
- package/lib/commonjs/modules/snapshot/snapshotManager.js.map +0 -1
- package/lib/commonjs/types/StyleURL.js +0 -11
- package/lib/commonjs/types/StyleURL.js.map +0 -1
- package/lib/commonjs/utils/MapLibreRNStyles.d.js +0 -181
- package/lib/commonjs/utils/MapLibreRNStyles.d.js.map +0 -1
- package/lib/commonjs/utils/styleMap.js +0 -255
- package/lib/commonjs/utils/styleMap.js.map +0 -1
- package/lib/module/modules/location/locationManager.js.map +0 -1
- package/lib/module/modules/offline/offlineManager.js.map +0 -1
- package/lib/module/types/StyleURL.js +0 -7
- package/lib/module/types/StyleURL.js.map +0 -1
- package/lib/module/utils/MapLibreRNStyles.d.js +0 -180
- package/lib/module/utils/MapLibreRNStyles.d.js.map +0 -1
- package/lib/module/utils/styleMap.js +0 -249
- package/lib/module/utils/styleMap.js.map +0 -1
- package/lib/typescript/commonjs/jest.config.d.ts +0 -2
- package/lib/typescript/commonjs/jest.config.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts +0 -64
- package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/offline/offlineManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/snapshot/snapshotManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/StyleURL.d.ts +0 -4
- package/lib/typescript/commonjs/src/types/StyleURL.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/styleMap.d.ts +0 -231
- package/lib/typescript/commonjs/src/utils/styleMap.d.ts.map +0 -1
- package/lib/typescript/module/jest.config.d.ts +0 -2
- package/lib/typescript/module/jest.config.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/location/locationManager.d.ts +0 -64
- package/lib/typescript/module/src/modules/location/locationManager.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/offline/offlineManager.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/snapshot/snapshotManager.d.ts.map +0 -1
- package/lib/typescript/module/src/types/StyleURL.d.ts +0 -4
- package/lib/typescript/module/src/types/StyleURL.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/styleMap.d.ts +0 -231
- package/lib/typescript/module/src/utils/styleMap.d.ts.map +0 -1
- package/plugin/build/withMapLibre.d.ts +0 -12
- package/plugin/build/withMapLibre.js +0 -148
- package/src/types/StyleURL.ts +0 -3
- package/src/utils/styleMap.ts +0 -265
|
@@ -1,181 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.VisibilityEnum = exports.TextWritingModeEnum = exports.TextVariableAnchorEnum = exports.TextTranslateAnchorEnum = exports.TextTransformEnum = exports.TextRotationAlignmentEnum = exports.TextPitchAlignmentEnum = exports.TextJustifyEnum = exports.TextAnchorEnum = exports.SymbolZOrderEnum = exports.SymbolPlacementEnum = exports.RasterResamplingEnum = exports.LineTranslateAnchorEnum = exports.LineJoinEnum = exports.LineCapEnum = exports.IconTranslateAnchorEnum = exports.IconTextFitEnum = exports.IconRotationAlignmentEnum = exports.IconPitchAlignmentEnum = exports.IconAnchorEnum = exports.HillshadeIlluminationAnchorEnum = exports.FillTranslateAnchorEnum = exports.FillExtrusionTranslateAnchorEnum = exports.CircleTranslateAnchorEnum = exports.CirclePitchScaleEnum = exports.CirclePitchAlignmentEnum = exports.AnchorEnum = void 0;
|
|
7
|
-
// DO NOT MODIFY
|
|
8
|
-
// This file is auto-generated from scripts/templates/MapLibreRNStyles.ts.ejs
|
|
9
|
-
/* TODO */
|
|
10
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
11
|
-
let VisibilityEnum = exports.VisibilityEnum = /*#__PURE__*/function (VisibilityEnum) {
|
|
12
|
-
VisibilityEnum["Visible"] = "visible";
|
|
13
|
-
VisibilityEnum["None"] = "none";
|
|
14
|
-
return VisibilityEnum;
|
|
15
|
-
}({});
|
|
16
|
-
let FillTranslateAnchorEnum = exports.FillTranslateAnchorEnum = /*#__PURE__*/function (FillTranslateAnchorEnum) {
|
|
17
|
-
FillTranslateAnchorEnum["Map"] = "map";
|
|
18
|
-
FillTranslateAnchorEnum["Viewport"] = "viewport";
|
|
19
|
-
return FillTranslateAnchorEnum;
|
|
20
|
-
}({});
|
|
21
|
-
let LineCapEnum = exports.LineCapEnum = /*#__PURE__*/function (LineCapEnum) {
|
|
22
|
-
LineCapEnum["Butt"] = "butt";
|
|
23
|
-
LineCapEnum["Round"] = "round";
|
|
24
|
-
LineCapEnum["Square"] = "square";
|
|
25
|
-
return LineCapEnum;
|
|
26
|
-
}({});
|
|
27
|
-
let LineJoinEnum = exports.LineJoinEnum = /*#__PURE__*/function (LineJoinEnum) {
|
|
28
|
-
LineJoinEnum["Bevel"] = "bevel";
|
|
29
|
-
LineJoinEnum["Round"] = "round";
|
|
30
|
-
LineJoinEnum["Miter"] = "miter";
|
|
31
|
-
return LineJoinEnum;
|
|
32
|
-
}({});
|
|
33
|
-
let LineTranslateAnchorEnum = exports.LineTranslateAnchorEnum = /*#__PURE__*/function (LineTranslateAnchorEnum) {
|
|
34
|
-
LineTranslateAnchorEnum["Map"] = "map";
|
|
35
|
-
LineTranslateAnchorEnum["Viewport"] = "viewport";
|
|
36
|
-
return LineTranslateAnchorEnum;
|
|
37
|
-
}({});
|
|
38
|
-
let SymbolPlacementEnum = exports.SymbolPlacementEnum = /*#__PURE__*/function (SymbolPlacementEnum) {
|
|
39
|
-
SymbolPlacementEnum["Point"] = "point";
|
|
40
|
-
SymbolPlacementEnum["Line"] = "line";
|
|
41
|
-
SymbolPlacementEnum["LineCenter"] = "line-center";
|
|
42
|
-
return SymbolPlacementEnum;
|
|
43
|
-
}({});
|
|
44
|
-
let SymbolZOrderEnum = exports.SymbolZOrderEnum = /*#__PURE__*/function (SymbolZOrderEnum) {
|
|
45
|
-
SymbolZOrderEnum["Auto"] = "auto";
|
|
46
|
-
SymbolZOrderEnum["ViewportY"] = "viewport-y";
|
|
47
|
-
SymbolZOrderEnum["Source"] = "source";
|
|
48
|
-
return SymbolZOrderEnum;
|
|
49
|
-
}({});
|
|
50
|
-
let IconRotationAlignmentEnum = exports.IconRotationAlignmentEnum = /*#__PURE__*/function (IconRotationAlignmentEnum) {
|
|
51
|
-
IconRotationAlignmentEnum["Map"] = "map";
|
|
52
|
-
IconRotationAlignmentEnum["Viewport"] = "viewport";
|
|
53
|
-
IconRotationAlignmentEnum["Auto"] = "auto";
|
|
54
|
-
return IconRotationAlignmentEnum;
|
|
55
|
-
}({});
|
|
56
|
-
let IconTextFitEnum = exports.IconTextFitEnum = /*#__PURE__*/function (IconTextFitEnum) {
|
|
57
|
-
IconTextFitEnum["None"] = "none";
|
|
58
|
-
IconTextFitEnum["Width"] = "width";
|
|
59
|
-
IconTextFitEnum["Height"] = "height";
|
|
60
|
-
IconTextFitEnum["Both"] = "both";
|
|
61
|
-
return IconTextFitEnum;
|
|
62
|
-
}({});
|
|
63
|
-
let IconAnchorEnum = exports.IconAnchorEnum = /*#__PURE__*/function (IconAnchorEnum) {
|
|
64
|
-
IconAnchorEnum["Center"] = "center";
|
|
65
|
-
IconAnchorEnum["Left"] = "left";
|
|
66
|
-
IconAnchorEnum["Right"] = "right";
|
|
67
|
-
IconAnchorEnum["Top"] = "top";
|
|
68
|
-
IconAnchorEnum["Bottom"] = "bottom";
|
|
69
|
-
IconAnchorEnum["TopLeft"] = "top-left";
|
|
70
|
-
IconAnchorEnum["TopRight"] = "top-right";
|
|
71
|
-
IconAnchorEnum["BottomLeft"] = "bottom-left";
|
|
72
|
-
IconAnchorEnum["BottomRight"] = "bottom-right";
|
|
73
|
-
return IconAnchorEnum;
|
|
74
|
-
}({});
|
|
75
|
-
let IconPitchAlignmentEnum = exports.IconPitchAlignmentEnum = /*#__PURE__*/function (IconPitchAlignmentEnum) {
|
|
76
|
-
IconPitchAlignmentEnum["Map"] = "map";
|
|
77
|
-
IconPitchAlignmentEnum["Viewport"] = "viewport";
|
|
78
|
-
IconPitchAlignmentEnum["Auto"] = "auto";
|
|
79
|
-
return IconPitchAlignmentEnum;
|
|
80
|
-
}({});
|
|
81
|
-
let TextPitchAlignmentEnum = exports.TextPitchAlignmentEnum = /*#__PURE__*/function (TextPitchAlignmentEnum) {
|
|
82
|
-
TextPitchAlignmentEnum["Map"] = "map";
|
|
83
|
-
TextPitchAlignmentEnum["Viewport"] = "viewport";
|
|
84
|
-
TextPitchAlignmentEnum["Auto"] = "auto";
|
|
85
|
-
return TextPitchAlignmentEnum;
|
|
86
|
-
}({});
|
|
87
|
-
let TextRotationAlignmentEnum = exports.TextRotationAlignmentEnum = /*#__PURE__*/function (TextRotationAlignmentEnum) {
|
|
88
|
-
TextRotationAlignmentEnum["Map"] = "map";
|
|
89
|
-
TextRotationAlignmentEnum["Viewport"] = "viewport";
|
|
90
|
-
TextRotationAlignmentEnum["ViewportGlyph"] = "viewport-glyph";
|
|
91
|
-
TextRotationAlignmentEnum["Auto"] = "auto";
|
|
92
|
-
return TextRotationAlignmentEnum;
|
|
93
|
-
}({});
|
|
94
|
-
let TextJustifyEnum = exports.TextJustifyEnum = /*#__PURE__*/function (TextJustifyEnum) {
|
|
95
|
-
TextJustifyEnum["Auto"] = "auto";
|
|
96
|
-
TextJustifyEnum["Left"] = "left";
|
|
97
|
-
TextJustifyEnum["Center"] = "center";
|
|
98
|
-
TextJustifyEnum["Right"] = "right";
|
|
99
|
-
return TextJustifyEnum;
|
|
100
|
-
}({});
|
|
101
|
-
let TextVariableAnchorEnum = exports.TextVariableAnchorEnum = /*#__PURE__*/function (TextVariableAnchorEnum) {
|
|
102
|
-
TextVariableAnchorEnum["Center"] = "center";
|
|
103
|
-
TextVariableAnchorEnum["Left"] = "left";
|
|
104
|
-
TextVariableAnchorEnum["Right"] = "right";
|
|
105
|
-
TextVariableAnchorEnum["Top"] = "top";
|
|
106
|
-
TextVariableAnchorEnum["Bottom"] = "bottom";
|
|
107
|
-
TextVariableAnchorEnum["TopLeft"] = "top-left";
|
|
108
|
-
TextVariableAnchorEnum["TopRight"] = "top-right";
|
|
109
|
-
TextVariableAnchorEnum["BottomLeft"] = "bottom-left";
|
|
110
|
-
TextVariableAnchorEnum["BottomRight"] = "bottom-right";
|
|
111
|
-
return TextVariableAnchorEnum;
|
|
112
|
-
}({});
|
|
113
|
-
let TextAnchorEnum = exports.TextAnchorEnum = /*#__PURE__*/function (TextAnchorEnum) {
|
|
114
|
-
TextAnchorEnum["Center"] = "center";
|
|
115
|
-
TextAnchorEnum["Left"] = "left";
|
|
116
|
-
TextAnchorEnum["Right"] = "right";
|
|
117
|
-
TextAnchorEnum["Top"] = "top";
|
|
118
|
-
TextAnchorEnum["Bottom"] = "bottom";
|
|
119
|
-
TextAnchorEnum["TopLeft"] = "top-left";
|
|
120
|
-
TextAnchorEnum["TopRight"] = "top-right";
|
|
121
|
-
TextAnchorEnum["BottomLeft"] = "bottom-left";
|
|
122
|
-
TextAnchorEnum["BottomRight"] = "bottom-right";
|
|
123
|
-
return TextAnchorEnum;
|
|
124
|
-
}({});
|
|
125
|
-
let TextWritingModeEnum = exports.TextWritingModeEnum = /*#__PURE__*/function (TextWritingModeEnum) {
|
|
126
|
-
TextWritingModeEnum["Horizontal"] = "horizontal";
|
|
127
|
-
TextWritingModeEnum["Vertical"] = "vertical";
|
|
128
|
-
return TextWritingModeEnum;
|
|
129
|
-
}({});
|
|
130
|
-
let TextTransformEnum = exports.TextTransformEnum = /*#__PURE__*/function (TextTransformEnum) {
|
|
131
|
-
TextTransformEnum["None"] = "none";
|
|
132
|
-
TextTransformEnum["Uppercase"] = "uppercase";
|
|
133
|
-
TextTransformEnum["Lowercase"] = "lowercase";
|
|
134
|
-
return TextTransformEnum;
|
|
135
|
-
}({});
|
|
136
|
-
let IconTranslateAnchorEnum = exports.IconTranslateAnchorEnum = /*#__PURE__*/function (IconTranslateAnchorEnum) {
|
|
137
|
-
IconTranslateAnchorEnum["Map"] = "map";
|
|
138
|
-
IconTranslateAnchorEnum["Viewport"] = "viewport";
|
|
139
|
-
return IconTranslateAnchorEnum;
|
|
140
|
-
}({});
|
|
141
|
-
let TextTranslateAnchorEnum = exports.TextTranslateAnchorEnum = /*#__PURE__*/function (TextTranslateAnchorEnum) {
|
|
142
|
-
TextTranslateAnchorEnum["Map"] = "map";
|
|
143
|
-
TextTranslateAnchorEnum["Viewport"] = "viewport";
|
|
144
|
-
return TextTranslateAnchorEnum;
|
|
145
|
-
}({});
|
|
146
|
-
let CircleTranslateAnchorEnum = exports.CircleTranslateAnchorEnum = /*#__PURE__*/function (CircleTranslateAnchorEnum) {
|
|
147
|
-
CircleTranslateAnchorEnum["Map"] = "map";
|
|
148
|
-
CircleTranslateAnchorEnum["Viewport"] = "viewport";
|
|
149
|
-
return CircleTranslateAnchorEnum;
|
|
150
|
-
}({});
|
|
151
|
-
let CirclePitchScaleEnum = exports.CirclePitchScaleEnum = /*#__PURE__*/function (CirclePitchScaleEnum) {
|
|
152
|
-
CirclePitchScaleEnum["Map"] = "map";
|
|
153
|
-
CirclePitchScaleEnum["Viewport"] = "viewport";
|
|
154
|
-
return CirclePitchScaleEnum;
|
|
155
|
-
}({});
|
|
156
|
-
let CirclePitchAlignmentEnum = exports.CirclePitchAlignmentEnum = /*#__PURE__*/function (CirclePitchAlignmentEnum) {
|
|
157
|
-
CirclePitchAlignmentEnum["Map"] = "map";
|
|
158
|
-
CirclePitchAlignmentEnum["Viewport"] = "viewport";
|
|
159
|
-
return CirclePitchAlignmentEnum;
|
|
160
|
-
}({});
|
|
161
|
-
let FillExtrusionTranslateAnchorEnum = exports.FillExtrusionTranslateAnchorEnum = /*#__PURE__*/function (FillExtrusionTranslateAnchorEnum) {
|
|
162
|
-
FillExtrusionTranslateAnchorEnum["Map"] = "map";
|
|
163
|
-
FillExtrusionTranslateAnchorEnum["Viewport"] = "viewport";
|
|
164
|
-
return FillExtrusionTranslateAnchorEnum;
|
|
165
|
-
}({});
|
|
166
|
-
let RasterResamplingEnum = exports.RasterResamplingEnum = /*#__PURE__*/function (RasterResamplingEnum) {
|
|
167
|
-
RasterResamplingEnum["Linear"] = "linear";
|
|
168
|
-
RasterResamplingEnum["Nearest"] = "nearest";
|
|
169
|
-
return RasterResamplingEnum;
|
|
170
|
-
}({});
|
|
171
|
-
let HillshadeIlluminationAnchorEnum = exports.HillshadeIlluminationAnchorEnum = /*#__PURE__*/function (HillshadeIlluminationAnchorEnum) {
|
|
172
|
-
HillshadeIlluminationAnchorEnum["Map"] = "map";
|
|
173
|
-
HillshadeIlluminationAnchorEnum["Viewport"] = "viewport";
|
|
174
|
-
return HillshadeIlluminationAnchorEnum;
|
|
175
|
-
}({});
|
|
176
|
-
let AnchorEnum = exports.AnchorEnum = /*#__PURE__*/function (AnchorEnum) {
|
|
177
|
-
AnchorEnum["Map"] = "map";
|
|
178
|
-
AnchorEnum["Viewport"] = "viewport";
|
|
179
|
-
return AnchorEnum;
|
|
180
|
-
}({});
|
|
181
|
-
//# sourceMappingURL=MapLibreRNStyles.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["VisibilityEnum","exports","FillTranslateAnchorEnum","LineCapEnum","LineJoinEnum","LineTranslateAnchorEnum","SymbolPlacementEnum","SymbolZOrderEnum","IconRotationAlignmentEnum","IconTextFitEnum","IconAnchorEnum","IconPitchAlignmentEnum","TextPitchAlignmentEnum","TextRotationAlignmentEnum","TextJustifyEnum","TextVariableAnchorEnum","TextAnchorEnum","TextWritingModeEnum","TextTransformEnum","IconTranslateAnchorEnum","TextTranslateAnchorEnum","CircleTranslateAnchorEnum","CirclePitchScaleEnum","CirclePitchAlignmentEnum","FillExtrusionTranslateAnchorEnum","RasterResamplingEnum","HillshadeIlluminationAnchorEnum","AnchorEnum"],"sourceRoot":"../../../src","sources":["utils/MapLibreRNStyles.d.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,255 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = exports.StyleTypes = void 0;
|
|
7
|
-
exports.getStyleType = getStyleType;
|
|
8
|
-
exports.styleExtras = void 0;
|
|
9
|
-
var _index = require("./index.js");
|
|
10
|
-
/* eslint-disable */
|
|
11
|
-
// DO NOT MODIFY
|
|
12
|
-
// This file is auto-generated from scripts/templates/styleMap.ts.ejs
|
|
13
|
-
|
|
14
|
-
const StyleTypes = exports.StyleTypes = {
|
|
15
|
-
Constant: "constant",
|
|
16
|
-
Color: "color",
|
|
17
|
-
Transition: "transition",
|
|
18
|
-
Translation: "translation",
|
|
19
|
-
Function: "function",
|
|
20
|
-
Image: "image",
|
|
21
|
-
Enum: "enum"
|
|
22
|
-
};
|
|
23
|
-
function getStyleType(styleProp) {
|
|
24
|
-
if (!(0, _index.isAndroid)() && styleExtras[styleProp]) {
|
|
25
|
-
return styleExtras[styleProp].iosType;
|
|
26
|
-
}
|
|
27
|
-
if (styleMap[styleProp]) {
|
|
28
|
-
return styleMap[styleProp];
|
|
29
|
-
}
|
|
30
|
-
throw new Error(`${styleProp} is not a valid MapLibre layer style`);
|
|
31
|
-
}
|
|
32
|
-
const styleMap = {
|
|
33
|
-
fillSortKey: StyleTypes.Constant,
|
|
34
|
-
fillAntialias: StyleTypes.Constant,
|
|
35
|
-
fillOpacity: StyleTypes.Constant,
|
|
36
|
-
fillOpacityTransition: StyleTypes.Transition,
|
|
37
|
-
fillColor: StyleTypes.Color,
|
|
38
|
-
fillColorTransition: StyleTypes.Transition,
|
|
39
|
-
fillOutlineColor: StyleTypes.Color,
|
|
40
|
-
fillOutlineColorTransition: StyleTypes.Transition,
|
|
41
|
-
fillTranslate: StyleTypes.Translation,
|
|
42
|
-
fillTranslateTransition: StyleTypes.Transition,
|
|
43
|
-
fillTranslateAnchor: StyleTypes.Enum,
|
|
44
|
-
fillPattern: StyleTypes.Image,
|
|
45
|
-
fillPatternTransition: StyleTypes.Transition,
|
|
46
|
-
lineCap: StyleTypes.Enum,
|
|
47
|
-
lineJoin: StyleTypes.Enum,
|
|
48
|
-
lineMiterLimit: StyleTypes.Constant,
|
|
49
|
-
lineRoundLimit: StyleTypes.Constant,
|
|
50
|
-
lineSortKey: StyleTypes.Constant,
|
|
51
|
-
lineOpacity: StyleTypes.Constant,
|
|
52
|
-
lineOpacityTransition: StyleTypes.Transition,
|
|
53
|
-
lineColor: StyleTypes.Color,
|
|
54
|
-
lineColorTransition: StyleTypes.Transition,
|
|
55
|
-
lineTranslate: StyleTypes.Translation,
|
|
56
|
-
lineTranslateTransition: StyleTypes.Transition,
|
|
57
|
-
lineTranslateAnchor: StyleTypes.Enum,
|
|
58
|
-
lineWidth: StyleTypes.Constant,
|
|
59
|
-
lineWidthTransition: StyleTypes.Transition,
|
|
60
|
-
lineGapWidth: StyleTypes.Constant,
|
|
61
|
-
lineGapWidthTransition: StyleTypes.Transition,
|
|
62
|
-
lineOffset: StyleTypes.Constant,
|
|
63
|
-
lineOffsetTransition: StyleTypes.Transition,
|
|
64
|
-
lineBlur: StyleTypes.Constant,
|
|
65
|
-
lineBlurTransition: StyleTypes.Transition,
|
|
66
|
-
lineDasharray: StyleTypes.Constant,
|
|
67
|
-
lineDasharrayTransition: StyleTypes.Transition,
|
|
68
|
-
linePattern: StyleTypes.Image,
|
|
69
|
-
linePatternTransition: StyleTypes.Transition,
|
|
70
|
-
lineGradient: StyleTypes.Color,
|
|
71
|
-
symbolPlacement: StyleTypes.Enum,
|
|
72
|
-
symbolSpacing: StyleTypes.Constant,
|
|
73
|
-
symbolAvoidEdges: StyleTypes.Constant,
|
|
74
|
-
symbolSortKey: StyleTypes.Constant,
|
|
75
|
-
symbolZOrder: StyleTypes.Enum,
|
|
76
|
-
iconAllowOverlap: StyleTypes.Constant,
|
|
77
|
-
iconIgnorePlacement: StyleTypes.Constant,
|
|
78
|
-
iconOptional: StyleTypes.Constant,
|
|
79
|
-
iconRotationAlignment: StyleTypes.Enum,
|
|
80
|
-
iconSize: StyleTypes.Constant,
|
|
81
|
-
iconTextFit: StyleTypes.Enum,
|
|
82
|
-
iconTextFitPadding: StyleTypes.Constant,
|
|
83
|
-
iconImage: StyleTypes.Image,
|
|
84
|
-
iconRotate: StyleTypes.Constant,
|
|
85
|
-
iconPadding: StyleTypes.Constant,
|
|
86
|
-
iconKeepUpright: StyleTypes.Constant,
|
|
87
|
-
iconOffset: StyleTypes.Constant,
|
|
88
|
-
iconAnchor: StyleTypes.Enum,
|
|
89
|
-
iconPitchAlignment: StyleTypes.Enum,
|
|
90
|
-
textPitchAlignment: StyleTypes.Enum,
|
|
91
|
-
textRotationAlignment: StyleTypes.Enum,
|
|
92
|
-
textField: StyleTypes.Constant,
|
|
93
|
-
textFont: StyleTypes.Constant,
|
|
94
|
-
textSize: StyleTypes.Constant,
|
|
95
|
-
textMaxWidth: StyleTypes.Constant,
|
|
96
|
-
textLineHeight: StyleTypes.Constant,
|
|
97
|
-
textLetterSpacing: StyleTypes.Constant,
|
|
98
|
-
textJustify: StyleTypes.Enum,
|
|
99
|
-
textRadialOffset: StyleTypes.Constant,
|
|
100
|
-
textVariableAnchor: StyleTypes.Constant,
|
|
101
|
-
textAnchor: StyleTypes.Enum,
|
|
102
|
-
textMaxAngle: StyleTypes.Constant,
|
|
103
|
-
textWritingMode: StyleTypes.Constant,
|
|
104
|
-
textRotate: StyleTypes.Constant,
|
|
105
|
-
textPadding: StyleTypes.Constant,
|
|
106
|
-
textKeepUpright: StyleTypes.Constant,
|
|
107
|
-
textTransform: StyleTypes.Enum,
|
|
108
|
-
textOffset: StyleTypes.Constant,
|
|
109
|
-
textAllowOverlap: StyleTypes.Constant,
|
|
110
|
-
textIgnorePlacement: StyleTypes.Constant,
|
|
111
|
-
textOptional: StyleTypes.Constant,
|
|
112
|
-
iconOpacity: StyleTypes.Constant,
|
|
113
|
-
iconOpacityTransition: StyleTypes.Transition,
|
|
114
|
-
iconColor: StyleTypes.Color,
|
|
115
|
-
iconColorTransition: StyleTypes.Transition,
|
|
116
|
-
iconHaloColor: StyleTypes.Color,
|
|
117
|
-
iconHaloColorTransition: StyleTypes.Transition,
|
|
118
|
-
iconHaloWidth: StyleTypes.Constant,
|
|
119
|
-
iconHaloWidthTransition: StyleTypes.Transition,
|
|
120
|
-
iconHaloBlur: StyleTypes.Constant,
|
|
121
|
-
iconHaloBlurTransition: StyleTypes.Transition,
|
|
122
|
-
iconTranslate: StyleTypes.Translation,
|
|
123
|
-
iconTranslateTransition: StyleTypes.Transition,
|
|
124
|
-
iconTranslateAnchor: StyleTypes.Enum,
|
|
125
|
-
textOpacity: StyleTypes.Constant,
|
|
126
|
-
textOpacityTransition: StyleTypes.Transition,
|
|
127
|
-
textColor: StyleTypes.Color,
|
|
128
|
-
textColorTransition: StyleTypes.Transition,
|
|
129
|
-
textHaloColor: StyleTypes.Color,
|
|
130
|
-
textHaloColorTransition: StyleTypes.Transition,
|
|
131
|
-
textHaloWidth: StyleTypes.Constant,
|
|
132
|
-
textHaloWidthTransition: StyleTypes.Transition,
|
|
133
|
-
textHaloBlur: StyleTypes.Constant,
|
|
134
|
-
textHaloBlurTransition: StyleTypes.Transition,
|
|
135
|
-
textTranslate: StyleTypes.Translation,
|
|
136
|
-
textTranslateTransition: StyleTypes.Transition,
|
|
137
|
-
textTranslateAnchor: StyleTypes.Enum,
|
|
138
|
-
circleSortKey: StyleTypes.Constant,
|
|
139
|
-
circleRadius: StyleTypes.Constant,
|
|
140
|
-
circleRadiusTransition: StyleTypes.Transition,
|
|
141
|
-
circleColor: StyleTypes.Color,
|
|
142
|
-
circleColorTransition: StyleTypes.Transition,
|
|
143
|
-
circleBlur: StyleTypes.Constant,
|
|
144
|
-
circleBlurTransition: StyleTypes.Transition,
|
|
145
|
-
circleOpacity: StyleTypes.Constant,
|
|
146
|
-
circleOpacityTransition: StyleTypes.Transition,
|
|
147
|
-
circleTranslate: StyleTypes.Translation,
|
|
148
|
-
circleTranslateTransition: StyleTypes.Transition,
|
|
149
|
-
circleTranslateAnchor: StyleTypes.Enum,
|
|
150
|
-
circlePitchScale: StyleTypes.Enum,
|
|
151
|
-
circlePitchAlignment: StyleTypes.Enum,
|
|
152
|
-
circleStrokeWidth: StyleTypes.Constant,
|
|
153
|
-
circleStrokeWidthTransition: StyleTypes.Transition,
|
|
154
|
-
circleStrokeColor: StyleTypes.Color,
|
|
155
|
-
circleStrokeColorTransition: StyleTypes.Transition,
|
|
156
|
-
circleStrokeOpacity: StyleTypes.Constant,
|
|
157
|
-
circleStrokeOpacityTransition: StyleTypes.Transition,
|
|
158
|
-
heatmapRadius: StyleTypes.Constant,
|
|
159
|
-
heatmapRadiusTransition: StyleTypes.Transition,
|
|
160
|
-
heatmapWeight: StyleTypes.Constant,
|
|
161
|
-
heatmapIntensity: StyleTypes.Constant,
|
|
162
|
-
heatmapIntensityTransition: StyleTypes.Transition,
|
|
163
|
-
heatmapColor: StyleTypes.Color,
|
|
164
|
-
heatmapOpacity: StyleTypes.Constant,
|
|
165
|
-
heatmapOpacityTransition: StyleTypes.Transition,
|
|
166
|
-
fillExtrusionOpacity: StyleTypes.Constant,
|
|
167
|
-
fillExtrusionOpacityTransition: StyleTypes.Transition,
|
|
168
|
-
fillExtrusionColor: StyleTypes.Color,
|
|
169
|
-
fillExtrusionColorTransition: StyleTypes.Transition,
|
|
170
|
-
fillExtrusionTranslate: StyleTypes.Translation,
|
|
171
|
-
fillExtrusionTranslateTransition: StyleTypes.Transition,
|
|
172
|
-
fillExtrusionTranslateAnchor: StyleTypes.Enum,
|
|
173
|
-
fillExtrusionPattern: StyleTypes.Image,
|
|
174
|
-
fillExtrusionPatternTransition: StyleTypes.Transition,
|
|
175
|
-
fillExtrusionHeight: StyleTypes.Constant,
|
|
176
|
-
fillExtrusionHeightTransition: StyleTypes.Transition,
|
|
177
|
-
fillExtrusionBase: StyleTypes.Constant,
|
|
178
|
-
fillExtrusionBaseTransition: StyleTypes.Transition,
|
|
179
|
-
fillExtrusionVerticalGradient: StyleTypes.Constant,
|
|
180
|
-
rasterOpacity: StyleTypes.Constant,
|
|
181
|
-
rasterOpacityTransition: StyleTypes.Transition,
|
|
182
|
-
rasterHueRotate: StyleTypes.Constant,
|
|
183
|
-
rasterHueRotateTransition: StyleTypes.Transition,
|
|
184
|
-
rasterBrightnessMin: StyleTypes.Constant,
|
|
185
|
-
rasterBrightnessMinTransition: StyleTypes.Transition,
|
|
186
|
-
rasterBrightnessMax: StyleTypes.Constant,
|
|
187
|
-
rasterBrightnessMaxTransition: StyleTypes.Transition,
|
|
188
|
-
rasterSaturation: StyleTypes.Constant,
|
|
189
|
-
rasterSaturationTransition: StyleTypes.Transition,
|
|
190
|
-
rasterContrast: StyleTypes.Constant,
|
|
191
|
-
rasterContrastTransition: StyleTypes.Transition,
|
|
192
|
-
rasterResampling: StyleTypes.Enum,
|
|
193
|
-
rasterFadeDuration: StyleTypes.Constant,
|
|
194
|
-
hillshadeIlluminationDirection: StyleTypes.Constant,
|
|
195
|
-
hillshadeIlluminationAnchor: StyleTypes.Enum,
|
|
196
|
-
hillshadeExaggeration: StyleTypes.Constant,
|
|
197
|
-
hillshadeExaggerationTransition: StyleTypes.Transition,
|
|
198
|
-
hillshadeShadowColor: StyleTypes.Color,
|
|
199
|
-
hillshadeShadowColorTransition: StyleTypes.Transition,
|
|
200
|
-
hillshadeHighlightColor: StyleTypes.Color,
|
|
201
|
-
hillshadeHighlightColorTransition: StyleTypes.Transition,
|
|
202
|
-
hillshadeAccentColor: StyleTypes.Color,
|
|
203
|
-
hillshadeAccentColorTransition: StyleTypes.Transition,
|
|
204
|
-
backgroundColor: StyleTypes.Color,
|
|
205
|
-
backgroundColorTransition: StyleTypes.Transition,
|
|
206
|
-
backgroundPattern: StyleTypes.Image,
|
|
207
|
-
backgroundPatternTransition: StyleTypes.Transition,
|
|
208
|
-
backgroundOpacity: StyleTypes.Constant,
|
|
209
|
-
backgroundOpacityTransition: StyleTypes.Transition,
|
|
210
|
-
anchor: StyleTypes.Enum,
|
|
211
|
-
position: StyleTypes.Constant,
|
|
212
|
-
positionTransition: StyleTypes.Transition,
|
|
213
|
-
color: StyleTypes.Color,
|
|
214
|
-
colorTransition: StyleTypes.Transition,
|
|
215
|
-
intensity: StyleTypes.Constant,
|
|
216
|
-
intensityTransition: StyleTypes.Transition,
|
|
217
|
-
visibility: StyleTypes.Constant
|
|
218
|
-
};
|
|
219
|
-
const styleExtras = exports.styleExtras = {
|
|
220
|
-
// padding
|
|
221
|
-
iconTextFitPadding: {
|
|
222
|
-
iosType: "edgeinsets"
|
|
223
|
-
},
|
|
224
|
-
// offsets
|
|
225
|
-
iconOffset: {
|
|
226
|
-
iosType: "vector"
|
|
227
|
-
},
|
|
228
|
-
textOffset: {
|
|
229
|
-
iosType: "vector"
|
|
230
|
-
},
|
|
231
|
-
lineOffset: {
|
|
232
|
-
iosType: "vector"
|
|
233
|
-
},
|
|
234
|
-
// translates
|
|
235
|
-
fillTranslate: {
|
|
236
|
-
iosType: "vector"
|
|
237
|
-
},
|
|
238
|
-
lineTranslate: {
|
|
239
|
-
iosType: "vector"
|
|
240
|
-
},
|
|
241
|
-
iconTranslate: {
|
|
242
|
-
iosType: "vector"
|
|
243
|
-
},
|
|
244
|
-
textTranslate: {
|
|
245
|
-
iosType: "vector"
|
|
246
|
-
},
|
|
247
|
-
circleTranslate: {
|
|
248
|
-
iosType: "vector"
|
|
249
|
-
},
|
|
250
|
-
fillExtrusionTranslate: {
|
|
251
|
-
iosType: "vector"
|
|
252
|
-
}
|
|
253
|
-
};
|
|
254
|
-
var _default = exports.default = styleMap;
|
|
255
|
-
//# sourceMappingURL=styleMap.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_index","require","StyleTypes","exports","Constant","Color","Transition","Translation","Function","Image","Enum","getStyleType","styleProp","isAndroid","styleExtras","iosType","styleMap","Error","fillSortKey","fillAntialias","fillOpacity","fillOpacityTransition","fillColor","fillColorTransition","fillOutlineColor","fillOutlineColorTransition","fillTranslate","fillTranslateTransition","fillTranslateAnchor","fillPattern","fillPatternTransition","lineCap","lineJoin","lineMiterLimit","lineRoundLimit","lineSortKey","lineOpacity","lineOpacityTransition","lineColor","lineColorTransition","lineTranslate","lineTranslateTransition","lineTranslateAnchor","lineWidth","lineWidthTransition","lineGapWidth","lineGapWidthTransition","lineOffset","lineOffsetTransition","lineBlur","lineBlurTransition","lineDasharray","lineDasharrayTransition","linePattern","linePatternTransition","lineGradient","symbolPlacement","symbolSpacing","symbolAvoidEdges","symbolSortKey","symbolZOrder","iconAllowOverlap","iconIgnorePlacement","iconOptional","iconRotationAlignment","iconSize","iconTextFit","iconTextFitPadding","iconImage","iconRotate","iconPadding","iconKeepUpright","iconOffset","iconAnchor","iconPitchAlignment","textPitchAlignment","textRotationAlignment","textField","textFont","textSize","textMaxWidth","textLineHeight","textLetterSpacing","textJustify","textRadialOffset","textVariableAnchor","textAnchor","textMaxAngle","textWritingMode","textRotate","textPadding","textKeepUpright","textTransform","textOffset","textAllowOverlap","textIgnorePlacement","textOptional","iconOpacity","iconOpacityTransition","iconColor","iconColorTransition","iconHaloColor","iconHaloColorTransition","iconHaloWidth","iconHaloWidthTransition","iconHaloBlur","iconHaloBlurTransition","iconTranslate","iconTranslateTransition","iconTranslateAnchor","textOpacity","textOpacityTransition","textColor","textColorTransition","textHaloColor","textHaloColorTransition","textHaloWidth","textHaloWidthTransition","textHaloBlur","textHaloBlurTransition","textTranslate","textTranslateTransition","textTranslateAnchor","circleSortKey","circleRadius","circleRadiusTransition","circleColor","circleColorTransition","circleBlur","circleBlurTransition","circleOpacity","circleOpacityTransition","circleTranslate","circleTranslateTransition","circleTranslateAnchor","circlePitchScale","circlePitchAlignment","circleStrokeWidth","circleStrokeWidthTransition","circleStrokeColor","circleStrokeColorTransition","circleStrokeOpacity","circleStrokeOpacityTransition","heatmapRadius","heatmapRadiusTransition","heatmapWeight","heatmapIntensity","heatmapIntensityTransition","heatmapColor","heatmapOpacity","heatmapOpacityTransition","fillExtrusionOpacity","fillExtrusionOpacityTransition","fillExtrusionColor","fillExtrusionColorTransition","fillExtrusionTranslate","fillExtrusionTranslateTransition","fillExtrusionTranslateAnchor","fillExtrusionPattern","fillExtrusionPatternTransition","fillExtrusionHeight","fillExtrusionHeightTransition","fillExtrusionBase","fillExtrusionBaseTransition","fillExtrusionVerticalGradient","rasterOpacity","rasterOpacityTransition","rasterHueRotate","rasterHueRotateTransition","rasterBrightnessMin","rasterBrightnessMinTransition","rasterBrightnessMax","rasterBrightnessMaxTransition","rasterSaturation","rasterSaturationTransition","rasterContrast","rasterContrastTransition","rasterResampling","rasterFadeDuration","hillshadeIlluminationDirection","hillshadeIlluminationAnchor","hillshadeExaggeration","hillshadeExaggerationTransition","hillshadeShadowColor","hillshadeShadowColorTransition","hillshadeHighlightColor","hillshadeHighlightColorTransition","hillshadeAccentColor","hillshadeAccentColorTransition","backgroundColor","backgroundColorTransition","backgroundPattern","backgroundPatternTransition","backgroundOpacity","backgroundOpacityTransition","anchor","position","positionTransition","color","colorTransition","intensity","intensityTransition","visibility","_default","default"],"sourceRoot":"../../../src","sources":["utils/styleMap.ts"],"mappings":";;;;;;;;AAIA,IAAAA,MAAA,GAAAC,OAAA;AAJA;AACA;AACA;;AAIO,MAAMC,UAAU,GAAAC,OAAA,CAAAD,UAAA,GAAG;EACxBE,QAAQ,EAAE,UAAU;EACpBC,KAAK,EAAE,OAAO;EACdC,UAAU,EAAE,YAAY;EACxBC,WAAW,EAAE,aAAa;EAC1BC,QAAQ,EAAE,UAAU;EACpBC,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE;AACR,CAAC;AAEM,SAASC,YAAYA,CAACC,SAAmC,EAAU;EACxE,IAAI,CAAC,IAAAC,gBAAS,EAAC,CAAC,IAAIC,WAAW,CAACF,SAAS,CAAC,EAAE;IAC1C,OAAOE,WAAW,CAACF,SAAS,CAAC,CAACG,OAAO;EACvC;EAEA,IAAIC,QAAQ,CAACJ,SAAS,CAAC,EAAE;IACvB,OAAOI,QAAQ,CAACJ,SAAS,CAAC;EAC5B;EAEA,MAAM,IAAIK,KAAK,CAAC,GAAGL,SAAS,sCAAsC,CAAC;AACrE;AAEA,MAAMI,QAAQ,GAAG;EACfE,WAAW,EAAEhB,UAAU,CAACE,QAAQ;EAChCe,aAAa,EAAEjB,UAAU,CAACE,QAAQ;EAClCgB,WAAW,EAAElB,UAAU,CAACE,QAAQ;EAChCiB,qBAAqB,EAAEnB,UAAU,CAACI,UAAU;EAC5CgB,SAAS,EAAEpB,UAAU,CAACG,KAAK;EAC3BkB,mBAAmB,EAAErB,UAAU,CAACI,UAAU;EAC1CkB,gBAAgB,EAAEtB,UAAU,CAACG,KAAK;EAClCoB,0BAA0B,EAAEvB,UAAU,CAACI,UAAU;EACjDoB,aAAa,EAAExB,UAAU,CAACK,WAAW;EACrCoB,uBAAuB,EAAEzB,UAAU,CAACI,UAAU;EAC9CsB,mBAAmB,EAAE1B,UAAU,CAACQ,IAAI;EACpCmB,WAAW,EAAE3B,UAAU,CAACO,KAAK;EAC7BqB,qBAAqB,EAAE5B,UAAU,CAACI,UAAU;EAE5CyB,OAAO,EAAE7B,UAAU,CAACQ,IAAI;EACxBsB,QAAQ,EAAE9B,UAAU,CAACQ,IAAI;EACzBuB,cAAc,EAAE/B,UAAU,CAACE,QAAQ;EACnC8B,cAAc,EAAEhC,UAAU,CAACE,QAAQ;EACnC+B,WAAW,EAAEjC,UAAU,CAACE,QAAQ;EAChCgC,WAAW,EAAElC,UAAU,CAACE,QAAQ;EAChCiC,qBAAqB,EAAEnC,UAAU,CAACI,UAAU;EAC5CgC,SAAS,EAAEpC,UAAU,CAACG,KAAK;EAC3BkC,mBAAmB,EAAErC,UAAU,CAACI,UAAU;EAC1CkC,aAAa,EAAEtC,UAAU,CAACK,WAAW;EACrCkC,uBAAuB,EAAEvC,UAAU,CAACI,UAAU;EAC9CoC,mBAAmB,EAAExC,UAAU,CAACQ,IAAI;EACpCiC,SAAS,EAAEzC,UAAU,CAACE,QAAQ;EAC9BwC,mBAAmB,EAAE1C,UAAU,CAACI,UAAU;EAC1CuC,YAAY,EAAE3C,UAAU,CAACE,QAAQ;EACjC0C,sBAAsB,EAAE5C,UAAU,CAACI,UAAU;EAC7CyC,UAAU,EAAE7C,UAAU,CAACE,QAAQ;EAC/B4C,oBAAoB,EAAE9C,UAAU,CAACI,UAAU;EAC3C2C,QAAQ,EAAE/C,UAAU,CAACE,QAAQ;EAC7B8C,kBAAkB,EAAEhD,UAAU,CAACI,UAAU;EACzC6C,aAAa,EAAEjD,UAAU,CAACE,QAAQ;EAClCgD,uBAAuB,EAAElD,UAAU,CAACI,UAAU;EAC9C+C,WAAW,EAAEnD,UAAU,CAACO,KAAK;EAC7B6C,qBAAqB,EAAEpD,UAAU,CAACI,UAAU;EAC5CiD,YAAY,EAAErD,UAAU,CAACG,KAAK;EAE9BmD,eAAe,EAAEtD,UAAU,CAACQ,IAAI;EAChC+C,aAAa,EAAEvD,UAAU,CAACE,QAAQ;EAClCsD,gBAAgB,EAAExD,UAAU,CAACE,QAAQ;EACrCuD,aAAa,EAAEzD,UAAU,CAACE,QAAQ;EAClCwD,YAAY,EAAE1D,UAAU,CAACQ,IAAI;EAC7BmD,gBAAgB,EAAE3D,UAAU,CAACE,QAAQ;EACrC0D,mBAAmB,EAAE5D,UAAU,CAACE,QAAQ;EACxC2D,YAAY,EAAE7D,UAAU,CAACE,QAAQ;EACjC4D,qBAAqB,EAAE9D,UAAU,CAACQ,IAAI;EACtCuD,QAAQ,EAAE/D,UAAU,CAACE,QAAQ;EAC7B8D,WAAW,EAAEhE,UAAU,CAACQ,IAAI;EAC5ByD,kBAAkB,EAAEjE,UAAU,CAACE,QAAQ;EACvCgE,SAAS,EAAElE,UAAU,CAACO,KAAK;EAC3B4D,UAAU,EAAEnE,UAAU,CAACE,QAAQ;EAC/BkE,WAAW,EAAEpE,UAAU,CAACE,QAAQ;EAChCmE,eAAe,EAAErE,UAAU,CAACE,QAAQ;EACpCoE,UAAU,EAAEtE,UAAU,CAACE,QAAQ;EAC/BqE,UAAU,EAAEvE,UAAU,CAACQ,IAAI;EAC3BgE,kBAAkB,EAAExE,UAAU,CAACQ,IAAI;EACnCiE,kBAAkB,EAAEzE,UAAU,CAACQ,IAAI;EACnCkE,qBAAqB,EAAE1E,UAAU,CAACQ,IAAI;EACtCmE,SAAS,EAAE3E,UAAU,CAACE,QAAQ;EAC9B0E,QAAQ,EAAE5E,UAAU,CAACE,QAAQ;EAC7B2E,QAAQ,EAAE7E,UAAU,CAACE,QAAQ;EAC7B4E,YAAY,EAAE9E,UAAU,CAACE,QAAQ;EACjC6E,cAAc,EAAE/E,UAAU,CAACE,QAAQ;EACnC8E,iBAAiB,EAAEhF,UAAU,CAACE,QAAQ;EACtC+E,WAAW,EAAEjF,UAAU,CAACQ,IAAI;EAC5B0E,gBAAgB,EAAElF,UAAU,CAACE,QAAQ;EACrCiF,kBAAkB,EAAEnF,UAAU,CAACE,QAAQ;EACvCkF,UAAU,EAAEpF,UAAU,CAACQ,IAAI;EAC3B6E,YAAY,EAAErF,UAAU,CAACE,QAAQ;EACjCoF,eAAe,EAAEtF,UAAU,CAACE,QAAQ;EACpCqF,UAAU,EAAEvF,UAAU,CAACE,QAAQ;EAC/BsF,WAAW,EAAExF,UAAU,CAACE,QAAQ;EAChCuF,eAAe,EAAEzF,UAAU,CAACE,QAAQ;EACpCwF,aAAa,EAAE1F,UAAU,CAACQ,IAAI;EAC9BmF,UAAU,EAAE3F,UAAU,CAACE,QAAQ;EAC/B0F,gBAAgB,EAAE5F,UAAU,CAACE,QAAQ;EACrC2F,mBAAmB,EAAE7F,UAAU,CAACE,QAAQ;EACxC4F,YAAY,EAAE9F,UAAU,CAACE,QAAQ;EACjC6F,WAAW,EAAE/F,UAAU,CAACE,QAAQ;EAChC8F,qBAAqB,EAAEhG,UAAU,CAACI,UAAU;EAC5C6F,SAAS,EAAEjG,UAAU,CAACG,KAAK;EAC3B+F,mBAAmB,EAAElG,UAAU,CAACI,UAAU;EAC1C+F,aAAa,EAAEnG,UAAU,CAACG,KAAK;EAC/BiG,uBAAuB,EAAEpG,UAAU,CAACI,UAAU;EAC9CiG,aAAa,EAAErG,UAAU,CAACE,QAAQ;EAClCoG,uBAAuB,EAAEtG,UAAU,CAACI,UAAU;EAC9CmG,YAAY,EAAEvG,UAAU,CAACE,QAAQ;EACjCsG,sBAAsB,EAAExG,UAAU,CAACI,UAAU;EAC7CqG,aAAa,EAAEzG,UAAU,CAACK,WAAW;EACrCqG,uBAAuB,EAAE1G,UAAU,CAACI,UAAU;EAC9CuG,mBAAmB,EAAE3G,UAAU,CAACQ,IAAI;EACpCoG,WAAW,EAAE5G,UAAU,CAACE,QAAQ;EAChC2G,qBAAqB,EAAE7G,UAAU,CAACI,UAAU;EAC5C0G,SAAS,EAAE9G,UAAU,CAACG,KAAK;EAC3B4G,mBAAmB,EAAE/G,UAAU,CAACI,UAAU;EAC1C4G,aAAa,EAAEhH,UAAU,CAACG,KAAK;EAC/B8G,uBAAuB,EAAEjH,UAAU,CAACI,UAAU;EAC9C8G,aAAa,EAAElH,UAAU,CAACE,QAAQ;EAClCiH,uBAAuB,EAAEnH,UAAU,CAACI,UAAU;EAC9CgH,YAAY,EAAEpH,UAAU,CAACE,QAAQ;EACjCmH,sBAAsB,EAAErH,UAAU,CAACI,UAAU;EAC7CkH,aAAa,EAAEtH,UAAU,CAACK,WAAW;EACrCkH,uBAAuB,EAAEvH,UAAU,CAACI,UAAU;EAC9CoH,mBAAmB,EAAExH,UAAU,CAACQ,IAAI;EAEpCiH,aAAa,EAAEzH,UAAU,CAACE,QAAQ;EAClCwH,YAAY,EAAE1H,UAAU,CAACE,QAAQ;EACjCyH,sBAAsB,EAAE3H,UAAU,CAACI,UAAU;EAC7CwH,WAAW,EAAE5H,UAAU,CAACG,KAAK;EAC7B0H,qBAAqB,EAAE7H,UAAU,CAACI,UAAU;EAC5C0H,UAAU,EAAE9H,UAAU,CAACE,QAAQ;EAC/B6H,oBAAoB,EAAE/H,UAAU,CAACI,UAAU;EAC3C4H,aAAa,EAAEhI,UAAU,CAACE,QAAQ;EAClC+H,uBAAuB,EAAEjI,UAAU,CAACI,UAAU;EAC9C8H,eAAe,EAAElI,UAAU,CAACK,WAAW;EACvC8H,yBAAyB,EAAEnI,UAAU,CAACI,UAAU;EAChDgI,qBAAqB,EAAEpI,UAAU,CAACQ,IAAI;EACtC6H,gBAAgB,EAAErI,UAAU,CAACQ,IAAI;EACjC8H,oBAAoB,EAAEtI,UAAU,CAACQ,IAAI;EACrC+H,iBAAiB,EAAEvI,UAAU,CAACE,QAAQ;EACtCsI,2BAA2B,EAAExI,UAAU,CAACI,UAAU;EAClDqI,iBAAiB,EAAEzI,UAAU,CAACG,KAAK;EACnCuI,2BAA2B,EAAE1I,UAAU,CAACI,UAAU;EAClDuI,mBAAmB,EAAE3I,UAAU,CAACE,QAAQ;EACxC0I,6BAA6B,EAAE5I,UAAU,CAACI,UAAU;EAEpDyI,aAAa,EAAE7I,UAAU,CAACE,QAAQ;EAClC4I,uBAAuB,EAAE9I,UAAU,CAACI,UAAU;EAC9C2I,aAAa,EAAE/I,UAAU,CAACE,QAAQ;EAClC8I,gBAAgB,EAAEhJ,UAAU,CAACE,QAAQ;EACrC+I,0BAA0B,EAAEjJ,UAAU,CAACI,UAAU;EACjD8I,YAAY,EAAElJ,UAAU,CAACG,KAAK;EAC9BgJ,cAAc,EAAEnJ,UAAU,CAACE,QAAQ;EACnCkJ,wBAAwB,EAAEpJ,UAAU,CAACI,UAAU;EAE/CiJ,oBAAoB,EAAErJ,UAAU,CAACE,QAAQ;EACzCoJ,8BAA8B,EAAEtJ,UAAU,CAACI,UAAU;EACrDmJ,kBAAkB,EAAEvJ,UAAU,CAACG,KAAK;EACpCqJ,4BAA4B,EAAExJ,UAAU,CAACI,UAAU;EACnDqJ,sBAAsB,EAAEzJ,UAAU,CAACK,WAAW;EAC9CqJ,gCAAgC,EAAE1J,UAAU,CAACI,UAAU;EACvDuJ,4BAA4B,EAAE3J,UAAU,CAACQ,IAAI;EAC7CoJ,oBAAoB,EAAE5J,UAAU,CAACO,KAAK;EACtCsJ,8BAA8B,EAAE7J,UAAU,CAACI,UAAU;EACrD0J,mBAAmB,EAAE9J,UAAU,CAACE,QAAQ;EACxC6J,6BAA6B,EAAE/J,UAAU,CAACI,UAAU;EACpD4J,iBAAiB,EAAEhK,UAAU,CAACE,QAAQ;EACtC+J,2BAA2B,EAAEjK,UAAU,CAACI,UAAU;EAClD8J,6BAA6B,EAAElK,UAAU,CAACE,QAAQ;EAElDiK,aAAa,EAAEnK,UAAU,CAACE,QAAQ;EAClCkK,uBAAuB,EAAEpK,UAAU,CAACI,UAAU;EAC9CiK,eAAe,EAAErK,UAAU,CAACE,QAAQ;EACpCoK,yBAAyB,EAAEtK,UAAU,CAACI,UAAU;EAChDmK,mBAAmB,EAAEvK,UAAU,CAACE,QAAQ;EACxCsK,6BAA6B,EAAExK,UAAU,CAACI,UAAU;EACpDqK,mBAAmB,EAAEzK,UAAU,CAACE,QAAQ;EACxCwK,6BAA6B,EAAE1K,UAAU,CAACI,UAAU;EACpDuK,gBAAgB,EAAE3K,UAAU,CAACE,QAAQ;EACrC0K,0BAA0B,EAAE5K,UAAU,CAACI,UAAU;EACjDyK,cAAc,EAAE7K,UAAU,CAACE,QAAQ;EACnC4K,wBAAwB,EAAE9K,UAAU,CAACI,UAAU;EAC/C2K,gBAAgB,EAAE/K,UAAU,CAACQ,IAAI;EACjCwK,kBAAkB,EAAEhL,UAAU,CAACE,QAAQ;EAEvC+K,8BAA8B,EAAEjL,UAAU,CAACE,QAAQ;EACnDgL,2BAA2B,EAAElL,UAAU,CAACQ,IAAI;EAC5C2K,qBAAqB,EAAEnL,UAAU,CAACE,QAAQ;EAC1CkL,+BAA+B,EAAEpL,UAAU,CAACI,UAAU;EACtDiL,oBAAoB,EAAErL,UAAU,CAACG,KAAK;EACtCmL,8BAA8B,EAAEtL,UAAU,CAACI,UAAU;EACrDmL,uBAAuB,EAAEvL,UAAU,CAACG,KAAK;EACzCqL,iCAAiC,EAAExL,UAAU,CAACI,UAAU;EACxDqL,oBAAoB,EAAEzL,UAAU,CAACG,KAAK;EACtCuL,8BAA8B,EAAE1L,UAAU,CAACI,UAAU;EAErDuL,eAAe,EAAE3L,UAAU,CAACG,KAAK;EACjCyL,yBAAyB,EAAE5L,UAAU,CAACI,UAAU;EAChDyL,iBAAiB,EAAE7L,UAAU,CAACO,KAAK;EACnCuL,2BAA2B,EAAE9L,UAAU,CAACI,UAAU;EAClD2L,iBAAiB,EAAE/L,UAAU,CAACE,QAAQ;EACtC8L,2BAA2B,EAAEhM,UAAU,CAACI,UAAU;EAElD6L,MAAM,EAAEjM,UAAU,CAACQ,IAAI;EACvB0L,QAAQ,EAAElM,UAAU,CAACE,QAAQ;EAC7BiM,kBAAkB,EAAEnM,UAAU,CAACI,UAAU;EACzCgM,KAAK,EAAEpM,UAAU,CAACG,KAAK;EACvBkM,eAAe,EAAErM,UAAU,CAACI,UAAU;EACtCkM,SAAS,EAAEtM,UAAU,CAACE,QAAQ;EAC9BqM,mBAAmB,EAAEvM,UAAU,CAACI,UAAU;EAE1CoM,UAAU,EAAExM,UAAU,CAACE;AACzB,CAAC;AAEM,MAAMU,WAAW,GAAAX,OAAA,CAAAW,WAAA,GAAG;EACzB;EACAqD,kBAAkB,EAAE;IAClBpD,OAAO,EAAE;EACX,CAAC;EAED;EACAyD,UAAU,EAAE;IACVzD,OAAO,EAAE;EACX,CAAC;EACD8E,UAAU,EAAE;IACV9E,OAAO,EAAE;EACX,CAAC;EACDgC,UAAU,EAAE;IACVhC,OAAO,EAAE;EACX,CAAC;EAED;EACAW,aAAa,EAAE;IACbX,OAAO,EAAE;EACX,CAAC;EACDyB,aAAa,EAAE;IACbzB,OAAO,EAAE;EACX,CAAC;EACD4F,aAAa,EAAE;IACb5F,OAAO,EAAE;EACX,CAAC;EACDyG,aAAa,EAAE;IACbzG,OAAO,EAAE;EACX,CAAC;EACDqH,eAAe,EAAE;IACfrH,OAAO,EAAE;EACX,CAAC;EACD4I,sBAAsB,EAAE;IACtB5I,OAAO,EAAE;EACX;AACF,CAAC;AAAC,IAAA4L,QAAA,GAAAxM,OAAA,CAAAyM,OAAA,GAEa5L,QAAQ","ignoreList":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["NativeModules","NativeEventEmitter","MapLibreRN","MLRNModule","MLRNLocationModule","LocationModuleEventEmitter","LocationManager","constructor","_listeners","_lastKnownLocation","_isListening","onUpdate","bind","subscription","getLastKnownLocation","lastKnownLocation","error","console","log","addListener","listener","start","includes","push","removeListener","filter","l","length","stop","removeAllListeners","displacement","LocationCallbackName","Update","remove","setMinDisplacement","minDisplacement","location","forEach"],"sourceRoot":"../../../../src","sources":["modules/location/locationManager.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["NativeModules","NativeEventEmitter","OfflineCreatePackOptions","OfflinePack","isUndefined","isFunction","isAndroid","MapLibreRN","MLRNModule","MLRNOfflineModule","OfflineModuleEventEmitter","OfflineManager","constructor","_hasInitialized","_offlinePacks","_progressListeners","_errorListeners","_onProgress","bind","_onError","subscriptionProgress","subscriptionError","createPack","options","progressListener","errorListener","_initialize","packOptions","name","Error","subscribe","nativeOfflinePack","invalidatePack","offlinePack","deletePack","invalidateAmbientCache","clearAmbientCache","setMaximumAmbientCacheSize","size","resetDatabase","getPacks","Object","keys","map","filter","pack","getPack","mergeOfflineRegions","path","setTileCountLimit","limit","setProgressEventThrottle","throttleValue","packName","totalProgressListeners","length","addListener","OfflineCallbackName","Progress","totalErrorListeners","setPackObserver","e","console","log","unsubscribe","remove","nativeOfflinePacks","state","payload","_hasListeners","OfflinePackDownloadState","Complete","listenerMap","offlineManager"],"sourceRoot":"../../../../src","sources":["modules/offline/offlineManager.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["StyleURL"],"sourceRoot":"../../../src","sources":["types/StyleURL.ts"],"mappings":";;AAAA,WAAYA,QAAQ,0BAARA,QAAQ;EAARA,QAAQ;EAAA,OAARA,QAAQ;AAAA","ignoreList":[]}
|