@maplibre/maplibre-react-native 11.0.0-beta.8 → 11.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/MapLibreReactNative.podspec +1 -1
- package/README.md +0 -5
- package/android/build.gradle +3 -1
- package/android/gradle.properties +2 -2
- package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.kt +14 -1
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/markerview/MLRNMarkerView.kt +35 -29
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/markerview/MLRNMarkerViewManager.kt +8 -1
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/markerview/MarkerViewManager.kt +8 -5
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/pointannotation/MLRNPointAnnotation.kt +45 -25
- package/android/src/main/java/org/maplibre/reactnative/components/annotations/pointannotation/MLRNPointAnnotationManager.kt +2 -1
- package/android/src/main/java/org/maplibre/reactnative/components/layer/MLRNLayer.kt +8 -8
- package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyle.kt +60 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyleFactory.kt +3005 -0
- package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyleValue.kt +159 -0
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.kt +234 -128
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.kt +37 -3
- package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewModule.kt +3 -1
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLogModule.kt +2 -0
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNNetworkModule.kt +0 -42
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.kt +27 -4
- package/android/src/main/java/org/maplibre/reactnative/modules/MLRNTransformRequestModule.kt +144 -0
- package/android/src/main/java/org/maplibre/reactnative/modules/TransformRequestInterceptor.kt +184 -0
- package/ios/components/annotations/point-annotation/MLRNPointAnnotation.h +3 -2
- package/ios/components/annotations/point-annotation/MLRNPointAnnotation.m +65 -2
- package/ios/components/annotations/point-annotation/MLRNPointAnnotationComponentView.mm +27 -19
- package/ios/components/camera/MLRNCameraComponentView.mm +5 -4
- package/ios/components/images/MLRNImageLoader.h +27 -0
- package/ios/components/images/MLRNImageLoader.m +85 -0
- package/ios/components/images/MLRNImageQueue.h +2 -2
- package/ios/components/images/MLRNImageQueue.m +2 -2
- package/ios/components/images/MLRNImageQueueOperation.h +2 -2
- package/ios/components/images/MLRNImageQueueOperation.m +3 -3
- package/ios/components/images/MLRNImages.h +0 -3
- package/ios/components/images/MLRNImages.m +6 -6
- package/ios/components/images/MLRNImagesComponentView.mm +0 -3
- package/ios/components/images/MLRNImagesModule.h +6 -0
- package/ios/components/images/MLRNImagesModule.mm +23 -0
- package/ios/components/layer/MLRNLayer.h +0 -3
- package/ios/components/layer/MLRNLayer.m +0 -1
- package/ios/components/layer/MLRNLayerComponentView.mm +12 -11
- package/ios/components/layer/style/MLRNStyle.h +1 -3
- package/ios/components/layer/style/MLRNStyle.m +68 -71
- package/ios/components/map-view/MLRNMapView.h +8 -1
- package/ios/components/map-view/MLRNMapView.m +106 -24
- package/ios/components/map-view/MLRNMapViewComponentView.mm +29 -5
- package/ios/components/sources/geojson-source/MLRNGeoJSONSource.h +0 -3
- package/ios/components/sources/image-source/MLRNImageSourceComponentView.mm +1 -1
- package/ios/components/sources/tile-sources/raster-source/MLRNRasterSourceComponentView.mm +2 -3
- package/ios/components/sources/tile-sources/vector-source/MLRNVectorSourceComponentView.mm +2 -3
- package/ios/modules/logging/MLRNLogging.h +4 -0
- package/ios/modules/logging/MLRNLogging.m +8 -0
- package/ios/modules/network/MLRNNetworkModule.mm +0 -10
- package/ios/modules/offline/MLRNOfflineModule.h +1 -2
- package/ios/modules/offline/MLRNOfflineModule.mm +9 -9
- package/ios/modules/transform-request/MLRNTransformRequest.h +38 -0
- package/ios/modules/transform-request/MLRNTransformRequest.m +413 -0
- package/ios/modules/transform-request/MLRNTransformRequestModule.h +9 -0
- package/ios/modules/transform-request/MLRNTransformRequestModule.mm +72 -0
- package/ios/utils/MLRNUtils.h +0 -14
- package/ios/utils/MLRNUtils.m +0 -71
- package/lib/commonjs/components/annotations/callout/Callout.js +2 -1
- package/lib/commonjs/components/annotations/callout/Callout.js.map +1 -1
- package/lib/commonjs/components/annotations/marker/Marker.js +17 -3
- package/lib/commonjs/components/annotations/marker/Marker.js.map +1 -1
- package/lib/commonjs/components/annotations/marker/MarkerViewNativeComponent.ts +10 -0
- package/lib/commonjs/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +3 -2
- package/lib/commonjs/components/annotations/view-annotation/ViewAnnotation.js +20 -17
- package/lib/commonjs/components/annotations/view-annotation/ViewAnnotation.js.map +1 -1
- package/lib/commonjs/components/camera/Camera.js +52 -3
- package/lib/commonjs/components/camera/Camera.js.map +1 -1
- package/lib/commonjs/components/images/Images.js +12 -2
- package/lib/commonjs/components/images/Images.js.map +1 -1
- package/lib/commonjs/components/images/NativeImagesModule.js +10 -0
- package/lib/commonjs/components/images/NativeImagesModule.js.map +1 -0
- package/lib/commonjs/components/layer/Layer.js +18 -8
- package/lib/commonjs/components/layer/Layer.js.map +1 -1
- package/lib/commonjs/components/map/AndroidTextureMapViewNativeComponent.ts +7 -2
- package/lib/commonjs/components/map/Map.js +29 -4
- package/lib/commonjs/components/map/Map.js.map +1 -1
- package/lib/commonjs/components/map/MapViewNativeComponent.ts +6 -1
- package/lib/commonjs/components/sources/geojson-source/GeoJSONSource.js +6 -5
- package/lib/commonjs/components/sources/geojson-source/GeoJSONSource.js.map +1 -1
- package/lib/commonjs/components/sources/image-source/ImageSource.js +3 -2
- package/lib/commonjs/components/sources/image-source/ImageSource.js.map +1 -1
- package/lib/commonjs/components/sources/raster-source/RasterSource.js +4 -3
- package/lib/commonjs/components/sources/raster-source/RasterSource.js.map +1 -1
- package/lib/commonjs/components/sources/vector-source/VectorSource.js +8 -5
- package/lib/commonjs/components/sources/vector-source/VectorSource.js.map +1 -1
- package/lib/commonjs/components/user-location/NativeUserLocation.js.map +1 -1
- package/lib/commonjs/components/user-location/UserLocation.js.map +1 -1
- package/lib/commonjs/index.js +7 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/modules/log/LogManager.js +5 -4
- package/lib/commonjs/modules/log/LogManager.js.map +1 -1
- package/lib/commonjs/modules/network/NativeNetworkModule.js.map +1 -1
- package/lib/commonjs/modules/network/NetworkManager.js +6 -44
- package/lib/commonjs/modules/network/NetworkManager.js.map +1 -1
- package/lib/commonjs/modules/offline/OfflineManager.js +109 -62
- package/lib/commonjs/modules/offline/OfflineManager.js.map +1 -1
- package/lib/commonjs/modules/static-map/StaticMapManager.js +13 -5
- package/lib/commonjs/modules/static-map/StaticMapManager.js.map +1 -1
- package/lib/commonjs/modules/transform-request/NativeTransformRequestModule.js +9 -0
- package/lib/commonjs/modules/transform-request/NativeTransformRequestModule.js.map +1 -0
- package/lib/commonjs/modules/transform-request/TransformRequestManager.js +233 -0
- package/lib/commonjs/modules/transform-request/TransformRequestManager.js.map +1 -0
- package/lib/commonjs/plugin/ios.js +28 -15
- package/lib/commonjs/plugin/ios.js.map +1 -1
- package/lib/commonjs/types/Anchor.js +5 -6
- package/lib/commonjs/types/Anchor.js.map +1 -1
- package/lib/commonjs/types/PressableSourceProps.js.map +1 -0
- package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js +2 -2
- package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js +6 -6
- package/lib/commonjs/utils/animated/AnimatedGeoJSON.js +2 -1
- package/lib/commonjs/utils/animated/AnimatedGeoJSON.js.map +1 -1
- package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +6 -6
- package/lib/commonjs/utils/convertStyleSpec.js +4 -4
- package/lib/commonjs/utils/getStylePropertyType.js +1 -1
- package/lib/module/components/annotations/callout/Callout.js +2 -1
- package/lib/module/components/annotations/callout/Callout.js.map +1 -1
- package/lib/module/components/annotations/marker/Marker.js +17 -3
- package/lib/module/components/annotations/marker/Marker.js.map +1 -1
- package/lib/module/components/annotations/marker/MarkerViewNativeComponent.ts +10 -0
- package/lib/module/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +3 -2
- package/lib/module/components/annotations/view-annotation/ViewAnnotation.js +20 -17
- package/lib/module/components/annotations/view-annotation/ViewAnnotation.js.map +1 -1
- package/lib/module/components/camera/Camera.js +53 -4
- package/lib/module/components/camera/Camera.js.map +1 -1
- package/lib/module/components/images/Images.js +12 -2
- package/lib/module/components/images/Images.js.map +1 -1
- package/lib/module/components/images/NativeImagesModule.js +7 -0
- package/lib/module/components/images/NativeImagesModule.js.map +1 -0
- package/lib/module/components/layer/Layer.js +18 -8
- package/lib/module/components/layer/Layer.js.map +1 -1
- package/lib/module/components/map/AndroidTextureMapViewNativeComponent.ts +7 -2
- package/lib/module/components/map/Map.js +30 -5
- package/lib/module/components/map/Map.js.map +1 -1
- package/lib/module/components/map/MapViewNativeComponent.ts +6 -1
- package/lib/module/components/sources/geojson-source/GeoJSONSource.js +7 -6
- package/lib/module/components/sources/geojson-source/GeoJSONSource.js.map +1 -1
- package/lib/module/components/sources/image-source/ImageSource.js +3 -2
- package/lib/module/components/sources/image-source/ImageSource.js.map +1 -1
- package/lib/module/components/sources/raster-source/RasterSource.js +4 -3
- package/lib/module/components/sources/raster-source/RasterSource.js.map +1 -1
- package/lib/module/components/sources/vector-source/VectorSource.js +9 -6
- package/lib/module/components/sources/vector-source/VectorSource.js.map +1 -1
- package/lib/module/components/user-location/NativeUserLocation.js.map +1 -1
- package/lib/module/components/user-location/UserLocation.js.map +1 -1
- package/lib/module/index.js +1 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/modules/log/LogManager.js +5 -4
- package/lib/module/modules/log/LogManager.js.map +1 -1
- package/lib/module/modules/network/NativeNetworkModule.js.map +1 -1
- package/lib/module/modules/network/NetworkManager.js +6 -44
- package/lib/module/modules/network/NetworkManager.js.map +1 -1
- package/lib/module/modules/offline/OfflineManager.js +109 -62
- package/lib/module/modules/offline/OfflineManager.js.map +1 -1
- package/lib/module/modules/static-map/StaticMapManager.js +13 -5
- package/lib/module/modules/static-map/StaticMapManager.js.map +1 -1
- package/lib/module/modules/transform-request/NativeTransformRequestModule.js +5 -0
- package/lib/module/modules/transform-request/NativeTransformRequestModule.js.map +1 -0
- package/lib/module/modules/transform-request/TransformRequestManager.js +230 -0
- package/lib/module/modules/transform-request/TransformRequestManager.js.map +1 -0
- package/lib/module/plugin/ios.js +28 -15
- package/lib/module/plugin/ios.js.map +1 -1
- package/lib/module/types/Anchor.js +5 -6
- package/lib/module/types/Anchor.js.map +1 -1
- package/lib/module/types/PressableSourceProps.js.map +1 -0
- package/lib/module/utils/animated/AbstractAnimatedCoordinates.js +2 -2
- package/lib/module/utils/animated/AnimatedCoordinatesArray.js +6 -6
- package/lib/module/utils/animated/AnimatedGeoJSON.js +2 -1
- package/lib/module/utils/animated/AnimatedGeoJSON.js.map +1 -1
- package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +6 -6
- package/lib/module/utils/convertStyleSpec.js +4 -4
- package/lib/module/utils/getStylePropertyType.js +1 -1
- package/lib/typescript/commonjs/components/annotations/LayerAnnotation.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/annotations/callout/Callout.d.ts +3 -2
- package/lib/typescript/commonjs/components/annotations/callout/Callout.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/annotations/callout/CalloutNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/components/annotations/marker/Marker.d.ts +29 -22
- package/lib/typescript/commonjs/components/annotations/marker/Marker.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/annotations/marker/MarkerViewNativeComponent.d.ts +10 -0
- package/lib/typescript/commonjs/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts +3 -2
- package/lib/typescript/commonjs/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/annotations/view-annotation/ViewAnnotation.d.ts +35 -29
- package/lib/typescript/commonjs/components/annotations/view-annotation/ViewAnnotation.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/camera/Camera.d.ts +85 -43
- package/lib/typescript/commonjs/components/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/camera/CameraNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/camera/NativeCameraModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/images/Images.d.ts +20 -12
- package/lib/typescript/commonjs/components/images/Images.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/images/ImagesNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/images/NativeImagesModule.d.ts +6 -0
- package/lib/typescript/commonjs/components/images/NativeImagesModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/layer/Layer.d.ts +18 -8
- package/lib/typescript/commonjs/components/layer/Layer.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/LayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/map/AndroidTextureMapViewNativeComponent.d.ts +5 -1
- package/lib/typescript/commonjs/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/map/Map.d.ts +151 -75
- package/lib/typescript/commonjs/components/map/Map.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/components/map/MapViewNativeComponent.d.ts +5 -1
- package/lib/typescript/commonjs/components/map/MapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/map/NativeMapViewModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/sources/geojson-source/GeoJSONSource.d.ts +47 -44
- package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/sources/image-source/ImageSource.d.ts +5 -3
- package/lib/typescript/commonjs/components/sources/image-source/ImageSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/sources/raster-source/RasterSource.d.ts +20 -15
- package/lib/typescript/commonjs/components/sources/raster-source/RasterSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/vector-source/VectorSource.d.ts +75 -0
- package/lib/typescript/commonjs/components/sources/vector-source/VectorSource.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/components/user-location/NativeUserLocation.d.ts +9 -6
- package/lib/typescript/commonjs/components/user-location/NativeUserLocation.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocation.d.ts +4 -2
- package/lib/typescript/commonjs/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationPuck.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/hooks → hooks}/useCurrentPosition.d.ts +2 -2
- package/lib/typescript/commonjs/hooks/useCurrentPosition.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/useFrozenId.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/useNativeBridge.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/index.d.ts → index.d.ts} +3 -2
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/location/LocationManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/location/NativeLocationModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/modules → modules}/log/LogManager.d.ts +5 -4
- package/lib/typescript/commonjs/modules/log/LogManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/log/NativeLogModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/modules → modules}/network/NativeNetworkModule.d.ts +0 -2
- package/lib/typescript/commonjs/modules/network/NativeNetworkModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/network/NetworkManager.d.ts +24 -0
- package/lib/typescript/commonjs/modules/network/NetworkManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/offline/NativeOfflineModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/modules → modules}/offline/OfflineManager.d.ts +110 -63
- package/lib/typescript/commonjs/modules/offline/OfflineManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/offline/OfflinePack.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/static-map/NativeStaticMapModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/modules → modules}/static-map/StaticMapManager.d.ts +15 -7
- package/lib/typescript/commonjs/modules/static-map/StaticMapManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/transform-request/NativeTransformRequestModule.d.ts +15 -0
- package/lib/typescript/commonjs/modules/transform-request/NativeTransformRequestModule.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/transform-request/TransformRequestManager.d.ts +213 -0
- package/lib/typescript/commonjs/modules/transform-request/TransformRequestManager.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/plugin/MapLibrePluginProps.d.ts +10 -15
- package/lib/typescript/commonjs/plugin/MapLibrePluginProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/plugin/android.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/plugin → plugin}/ios.d.ts +2 -2
- package/lib/typescript/commonjs/plugin/ios.d.ts.map +1 -0
- package/lib/typescript/commonjs/plugin/withMapLibre.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/Anchor.d.ts +16 -0
- package/lib/typescript/commonjs/types/Anchor.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/BaseProps.d.ts +7 -0
- package/lib/typescript/commonjs/types/BaseProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/LngLat.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/types → types}/LngLatBounds.d.ts +2 -1
- package/lib/typescript/commonjs/types/LngLatBounds.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/types → types}/MapLibreRNStyles.d.ts +316 -132
- package/lib/typescript/commonjs/types/MapLibreRNStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/PixelPoint.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/PixelPointBounds.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/types/PressEvent.d.ts +3 -0
- package/lib/typescript/commonjs/types/PressEvent.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/types → types}/PressEventWithFeatures.d.ts +3 -0
- package/lib/typescript/commonjs/types/PressEventWithFeatures.d.ts.map +1 -0
- package/lib/typescript/{module/src/types/sources → commonjs/types}/PressableSourceProps.d.ts +6 -4
- package/lib/typescript/commonjs/types/PressableSourceProps.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/types/ViewPadding.d.ts +3 -0
- package/lib/typescript/commonjs/types/ViewPadding.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/codegen/UnsafeMixed.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/BridgeValue.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/StyleValue.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/utils/animated/AbstractAnimatedCoordinates.d.ts +2 -2
- package/lib/typescript/commonjs/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/utils/animated/Animated.d.ts +1 -1
- package/lib/typescript/commonjs/utils/animated/Animated.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedCoordinatesArray.d.ts +6 -6
- package/lib/typescript/commonjs/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedGeoJSON.d.ts +2 -1
- package/lib/typescript/commonjs/utils/animated/AnimatedGeoJSON.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/animated/AnimatedPoint.d.ts.map +1 -0
- package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedRouteCoordinatesArray.d.ts +6 -6
- package/lib/typescript/commonjs/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/{module/src → commonjs}/utils/convertStyleSpec.d.ts +4 -4
- package/lib/typescript/commonjs/utils/convertStyleSpec.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/findNodeHandle.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/getNativeFilter.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/getStylePropertyType.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/index.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/LayerAnnotation.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/annotations/callout/Callout.d.ts +3 -2
- package/lib/typescript/module/components/annotations/callout/Callout.d.ts.map +1 -0
- package/lib/typescript/module/components/annotations/callout/CalloutNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/components/annotations/marker/Marker.d.ts +29 -22
- package/lib/typescript/module/components/annotations/marker/Marker.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/annotations/marker/MarkerViewNativeComponent.d.ts +10 -0
- package/lib/typescript/module/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts +3 -2
- package/lib/typescript/module/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/annotations/view-annotation/ViewAnnotation.d.ts +35 -29
- package/lib/typescript/module/components/annotations/view-annotation/ViewAnnotation.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/camera/Camera.d.ts +85 -43
- package/lib/typescript/module/components/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/module/components/camera/CameraNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/camera/NativeCameraModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/images/Images.d.ts +20 -12
- package/lib/typescript/module/components/images/Images.d.ts.map +1 -0
- package/lib/typescript/module/components/images/ImagesNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/images/NativeImagesModule.d.ts +6 -0
- package/lib/typescript/module/components/images/NativeImagesModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/layer/Layer.d.ts +18 -8
- package/lib/typescript/module/components/layer/Layer.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/LayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/map/AndroidTextureMapViewNativeComponent.d.ts +5 -1
- package/lib/typescript/module/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/map/Map.d.ts +151 -75
- package/lib/typescript/module/components/map/Map.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/components/map/MapViewNativeComponent.d.ts +5 -1
- package/lib/typescript/module/components/map/MapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/map/NativeMapViewModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/sources/geojson-source/GeoJSONSource.d.ts +47 -44
- package/lib/typescript/module/components/sources/geojson-source/GeoJSONSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/sources/image-source/ImageSource.d.ts +5 -3
- package/lib/typescript/module/components/sources/image-source/ImageSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/sources/raster-source/RasterSource.d.ts +20 -15
- package/lib/typescript/module/components/sources/raster-source/RasterSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/vector-source/VectorSource.d.ts +75 -0
- package/lib/typescript/module/components/sources/vector-source/VectorSource.d.ts.map +1 -0
- package/lib/typescript/module/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/components/user-location/NativeUserLocation.d.ts +9 -6
- package/lib/typescript/module/components/user-location/NativeUserLocation.d.ts.map +1 -0
- package/lib/typescript/module/{src/components → components}/user-location/UserLocation.d.ts +4 -2
- package/lib/typescript/module/components/user-location/UserLocation.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/UserLocationPuck.d.ts.map +1 -0
- package/lib/typescript/module/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
- package/lib/typescript/module/{src/hooks → hooks}/useCurrentPosition.d.ts +2 -2
- package/lib/typescript/module/hooks/useCurrentPosition.d.ts.map +1 -0
- package/lib/typescript/module/hooks/useFrozenId.d.ts.map +1 -0
- package/lib/typescript/module/hooks/useNativeBridge.d.ts.map +1 -0
- package/lib/typescript/module/{src/index.d.ts → index.d.ts} +3 -2
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/modules/location/LocationManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/location/NativeLocationModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/modules → modules}/log/LogManager.d.ts +5 -4
- package/lib/typescript/module/modules/log/LogManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/log/NativeLogModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/modules → modules}/network/NativeNetworkModule.d.ts +0 -2
- package/lib/typescript/module/modules/network/NativeNetworkModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/network/NetworkManager.d.ts +24 -0
- package/lib/typescript/module/modules/network/NetworkManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/offline/NativeOfflineModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/modules → modules}/offline/OfflineManager.d.ts +110 -63
- package/lib/typescript/module/modules/offline/OfflineManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/offline/OfflinePack.d.ts.map +1 -0
- package/lib/typescript/module/modules/static-map/NativeStaticMapModule.d.ts.map +1 -0
- package/lib/typescript/module/{src/modules → modules}/static-map/StaticMapManager.d.ts +15 -7
- package/lib/typescript/module/modules/static-map/StaticMapManager.d.ts.map +1 -0
- package/lib/typescript/module/modules/transform-request/NativeTransformRequestModule.d.ts +15 -0
- package/lib/typescript/module/modules/transform-request/NativeTransformRequestModule.d.ts.map +1 -0
- package/lib/typescript/module/modules/transform-request/TransformRequestManager.d.ts +213 -0
- package/lib/typescript/module/modules/transform-request/TransformRequestManager.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/plugin/MapLibrePluginProps.d.ts +10 -15
- package/lib/typescript/module/plugin/MapLibrePluginProps.d.ts.map +1 -0
- package/lib/typescript/module/plugin/android.d.ts.map +1 -0
- package/lib/typescript/module/{src/plugin → plugin}/ios.d.ts +2 -2
- package/lib/typescript/module/plugin/ios.d.ts.map +1 -0
- package/lib/typescript/module/plugin/withMapLibre.d.ts.map +1 -0
- package/lib/typescript/module/types/Anchor.d.ts +16 -0
- package/lib/typescript/module/types/Anchor.d.ts.map +1 -0
- package/lib/typescript/module/types/BaseProps.d.ts +7 -0
- package/lib/typescript/module/types/BaseProps.d.ts.map +1 -0
- package/lib/typescript/module/types/LngLat.d.ts.map +1 -0
- package/lib/typescript/module/{src/types → types}/LngLatBounds.d.ts +2 -1
- package/lib/typescript/module/types/LngLatBounds.d.ts.map +1 -0
- package/lib/typescript/module/{src/types → types}/MapLibreRNStyles.d.ts +316 -132
- package/lib/typescript/module/types/MapLibreRNStyles.d.ts.map +1 -0
- package/lib/typescript/module/types/PixelPoint.d.ts.map +1 -0
- package/lib/typescript/module/types/PixelPointBounds.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/types/PressEvent.d.ts +3 -0
- package/lib/typescript/module/types/PressEvent.d.ts.map +1 -0
- package/lib/typescript/module/{src/types → types}/PressEventWithFeatures.d.ts +3 -0
- package/lib/typescript/module/types/PressEventWithFeatures.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src/types/sources → module/types}/PressableSourceProps.d.ts +6 -4
- package/lib/typescript/module/types/PressableSourceProps.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/types/ViewPadding.d.ts +3 -0
- package/lib/typescript/module/types/ViewPadding.d.ts.map +1 -0
- package/lib/typescript/module/types/codegen/UnsafeMixed.d.ts.map +1 -0
- package/lib/typescript/module/utils/BridgeValue.d.ts.map +1 -0
- package/lib/typescript/module/utils/StyleValue.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/utils/animated/AbstractAnimatedCoordinates.d.ts +2 -2
- package/lib/typescript/module/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/utils/animated/Animated.d.ts +1 -1
- package/lib/typescript/module/utils/animated/Animated.d.ts.map +1 -0
- package/lib/typescript/module/{src/utils → utils}/animated/AnimatedCoordinatesArray.d.ts +6 -6
- package/lib/typescript/module/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
- package/lib/typescript/module/{src/utils → utils}/animated/AnimatedGeoJSON.d.ts +2 -1
- package/lib/typescript/module/utils/animated/AnimatedGeoJSON.d.ts.map +1 -0
- package/lib/typescript/module/utils/animated/AnimatedPoint.d.ts.map +1 -0
- package/lib/typescript/module/{src/utils → utils}/animated/AnimatedRouteCoordinatesArray.d.ts +6 -6
- package/lib/typescript/module/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
- package/lib/typescript/{commonjs/src → module}/utils/convertStyleSpec.d.ts +4 -4
- package/lib/typescript/module/utils/convertStyleSpec.d.ts.map +1 -0
- package/lib/typescript/module/utils/findNodeHandle.d.ts.map +1 -0
- package/lib/typescript/module/utils/getNativeFilter.d.ts.map +1 -0
- package/lib/typescript/module/utils/getStylePropertyType.d.ts.map +1 -0
- package/lib/typescript/module/utils/index.d.ts.map +1 -0
- package/package.json +19 -40
- package/src/components/annotations/callout/Callout.tsx +3 -2
- package/src/components/annotations/marker/Marker.tsx +47 -30
- package/src/components/annotations/marker/MarkerViewNativeComponent.ts +10 -0
- package/src/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +3 -2
- package/src/components/annotations/view-annotation/ViewAnnotation.tsx +53 -47
- package/src/components/camera/Camera.tsx +148 -110
- package/src/components/images/Images.tsx +20 -12
- package/src/components/images/NativeImagesModule.ts +11 -0
- package/src/components/layer/Layer.tsx +18 -8
- package/src/components/map/AndroidTextureMapViewNativeComponent.ts +7 -2
- package/src/components/map/Map.tsx +296 -229
- package/src/components/map/MapViewNativeComponent.ts +6 -1
- package/src/components/sources/geojson-source/GeoJSONSource.tsx +105 -103
- package/src/components/sources/image-source/ImageSource.tsx +5 -3
- package/src/components/sources/raster-source/RasterSource.tsx +20 -15
- package/src/components/sources/vector-source/VectorSource.tsx +66 -58
- package/src/components/user-location/NativeUserLocation.tsx +9 -6
- package/src/components/user-location/UserLocation.tsx +4 -2
- package/src/hooks/useCurrentPosition.ts +2 -2
- package/src/index.ts +12 -3
- package/src/modules/log/LogManager.ts +5 -4
- package/src/modules/network/NativeNetworkModule.ts +0 -4
- package/src/modules/network/NetworkManager.ts +6 -52
- package/src/modules/offline/OfflineManager.ts +109 -62
- package/src/modules/static-map/StaticMapManager.ts +15 -7
- package/src/modules/transform-request/NativeTransformRequestModule.ts +41 -0
- package/src/modules/transform-request/TransformRequestManager.ts +304 -0
- package/src/plugin/MapLibrePluginProps.ts +10 -15
- package/src/plugin/ios.ts +43 -21
- package/src/types/Anchor.ts +5 -6
- package/src/types/BaseProps.ts +3 -0
- package/src/types/LngLatBounds.ts +2 -1
- package/src/types/MapLibreRNStyles.ts +326 -192
- package/src/types/PressEvent.ts +3 -0
- package/src/types/PressEventWithFeatures.ts +3 -0
- package/src/types/{sources/PressableSourceProps.ts → PressableSourceProps.ts} +6 -4
- package/src/types/ViewPadding.ts +3 -0
- package/src/utils/animated/AbstractAnimatedCoordinates.ts +2 -2
- package/src/utils/animated/AnimatedCoordinatesArray.ts +6 -6
- package/src/utils/animated/AnimatedGeoJSON.ts +2 -1
- package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +6 -6
- package/src/utils/convertStyleSpec.ts +4 -4
- package/src/utils/getStylePropertyType.ts +1 -1
- package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyle.java +0 -76
- package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyleFactory.java +0 -2285
- package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyleFunctionParser.java +0 -94
- package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyleValue.java +0 -207
- package/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java +0 -34
- package/android/src/main/java/org/maplibre/reactnative/http/RequestHeadersInterceptor.kt +0 -65
- package/android/src/main/res/layout/annotation.xml +0 -17
- package/ios/modules/network/MLRNNetworkHTTPHeaders.h +0 -14
- package/ios/modules/network/MLRNNetworkHTTPHeaders.m +0 -97
- package/lib/commonjs/types/sources/PressableSourceProps.js.map +0 -1
- package/lib/module/types/sources/PressableSourceProps.js.map +0 -1
- package/lib/typescript/commonjs/src/components/annotations/LayerAnnotation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/annotations/callout/Callout.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/annotations/callout/CalloutNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/annotations/marker/Marker.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/annotations/view-annotation/ViewAnnotation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/camera/Camera.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/camera/CameraNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/camera/NativeCameraModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/images/Images.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/images/ImagesNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/layer/Layer.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/layer/LayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/map/Map.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/map/MapViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/map/NativeMapViewModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/geojson-source/GeoJSONSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/image-source/ImageSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/raster-source/RasterSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/vector-source/VectorSource.d.ts +0 -66
- package/lib/typescript/commonjs/src/components/sources/vector-source/VectorSource.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/user-location/NativeUserLocation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/user-location/UserLocation.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/user-location/UserLocationNativeComponent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/user-location/UserLocationPuck.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/user-location/UserLocationPuckHeading.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/hooks/useCurrentPosition.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/hooks/useFrozenId.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/location/LocationManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/location/NativeLocationModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/log/LogManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/log/NativeLogModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/network/NativeNetworkModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/network/NetworkManager.d.ts +0 -56
- package/lib/typescript/commonjs/src/modules/network/NetworkManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/offline/NativeOfflineModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/offline/OfflineManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/static-map/NativeStaticMapModule.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/modules/static-map/StaticMapManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/plugin/MapLibrePluginProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/plugin/android.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/plugin/ios.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/plugin/withMapLibre.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/Anchor.d.ts +0 -17
- package/lib/typescript/commonjs/src/types/Anchor.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/BaseProps.d.ts +0 -4
- package/lib/typescript/commonjs/src/types/BaseProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/LngLat.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/LngLatBounds.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/PixelPoint.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/PixelPointBounds.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/PressEvent.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/PressEventWithFeatures.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/ViewPadding.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/codegen/UnsafeMixed.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/sources/PressableSourceProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/StyleValue.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedGeoJSON.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/convertStyleSpec.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/findNodeHandle.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/getNativeFilter.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/getStylePropertyType.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/utils/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/annotations/LayerAnnotation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/annotations/callout/Callout.d.ts.map +0 -1
- package/lib/typescript/module/src/components/annotations/callout/CalloutNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/annotations/marker/Marker.d.ts.map +0 -1
- package/lib/typescript/module/src/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/annotations/view-annotation/ViewAnnotation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/camera/Camera.d.ts.map +0 -1
- package/lib/typescript/module/src/components/camera/CameraNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/camera/NativeCameraModule.d.ts.map +0 -1
- package/lib/typescript/module/src/components/images/Images.d.ts.map +0 -1
- package/lib/typescript/module/src/components/images/ImagesNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/layer/Layer.d.ts.map +0 -1
- package/lib/typescript/module/src/components/layer/LayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/map/Map.d.ts.map +0 -1
- package/lib/typescript/module/src/components/map/MapViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/map/NativeMapViewModule.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/geojson-source/GeoJSONSource.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/image-source/ImageSource.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/raster-source/RasterSource.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/vector-source/VectorSource.d.ts +0 -66
- package/lib/typescript/module/src/components/sources/vector-source/VectorSource.d.ts.map +0 -1
- package/lib/typescript/module/src/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/user-location/NativeUserLocation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/user-location/UserLocation.d.ts.map +0 -1
- package/lib/typescript/module/src/components/user-location/UserLocationNativeComponent.d.ts.map +0 -1
- package/lib/typescript/module/src/components/user-location/UserLocationPuck.d.ts.map +0 -1
- package/lib/typescript/module/src/components/user-location/UserLocationPuckHeading.d.ts.map +0 -1
- package/lib/typescript/module/src/hooks/useCurrentPosition.d.ts.map +0 -1
- package/lib/typescript/module/src/hooks/useFrozenId.d.ts.map +0 -1
- package/lib/typescript/module/src/hooks/useNativeBridge.d.ts.map +0 -1
- package/lib/typescript/module/src/index.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/location/LocationManager.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/location/NativeLocationModule.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/log/LogManager.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/log/NativeLogModule.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/network/NativeNetworkModule.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/network/NetworkManager.d.ts +0 -56
- package/lib/typescript/module/src/modules/network/NetworkManager.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/offline/NativeOfflineModule.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/offline/OfflineManager.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/static-map/NativeStaticMapModule.d.ts.map +0 -1
- package/lib/typescript/module/src/modules/static-map/StaticMapManager.d.ts.map +0 -1
- package/lib/typescript/module/src/plugin/MapLibrePluginProps.d.ts.map +0 -1
- package/lib/typescript/module/src/plugin/android.d.ts.map +0 -1
- package/lib/typescript/module/src/plugin/ios.d.ts.map +0 -1
- package/lib/typescript/module/src/plugin/withMapLibre.d.ts.map +0 -1
- package/lib/typescript/module/src/types/Anchor.d.ts +0 -17
- package/lib/typescript/module/src/types/Anchor.d.ts.map +0 -1
- package/lib/typescript/module/src/types/BaseProps.d.ts +0 -4
- package/lib/typescript/module/src/types/BaseProps.d.ts.map +0 -1
- package/lib/typescript/module/src/types/LngLat.d.ts.map +0 -1
- package/lib/typescript/module/src/types/LngLatBounds.d.ts.map +0 -1
- package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts.map +0 -1
- package/lib/typescript/module/src/types/PixelPoint.d.ts.map +0 -1
- package/lib/typescript/module/src/types/PixelPointBounds.d.ts.map +0 -1
- package/lib/typescript/module/src/types/PressEvent.d.ts.map +0 -1
- package/lib/typescript/module/src/types/PressEventWithFeatures.d.ts.map +0 -1
- package/lib/typescript/module/src/types/ViewPadding.d.ts.map +0 -1
- package/lib/typescript/module/src/types/codegen/UnsafeMixed.d.ts.map +0 -1
- package/lib/typescript/module/src/types/sources/PressableSourceProps.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/BridgeValue.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/StyleValue.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/animated/AnimatedGeoJSON.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/convertStyleSpec.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/findNodeHandle.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/getNativeFilter.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/getStylePropertyType.d.ts.map +0 -1
- package/lib/typescript/module/src/utils/index.d.ts.map +0 -1
- /package/android/src/main/res/drawable-xxhdpi/{red_marker.png → default_marker.png} +0 -0
- /package/ios/{components/images → utils}/MLRNImageUtils.h +0 -0
- /package/ios/{components/images → utils}/MLRNImageUtils.m +0 -0
- /package/lib/commonjs/types/{sources/PressableSourceProps.js → PressableSourceProps.js} +0 -0
- /package/lib/module/types/{sources/PressableSourceProps.js → PressableSourceProps.js} +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/annotations/LayerAnnotation.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/annotations/callout/CalloutNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/camera/CameraNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/camera/NativeCameraModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/images/ImagesNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/layer/LayerNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/map/NativeMapViewModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/sources/geojson-source/NativeGeoJSONSourceModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/sources/image-source/ImageSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/sources/raster-source/RasterSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/sources/vector-source/NativeVectorSourceModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/sources/vector-source/VectorSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocationNativeComponent.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocationPuck.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocationPuckHeading.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/hooks → hooks}/useFrozenId.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/hooks → hooks}/useNativeBridge.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/modules → modules}/location/LocationManager.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/modules → modules}/location/NativeLocationModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/modules → modules}/log/NativeLogModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/modules → modules}/offline/NativeOfflineModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/modules → modules}/offline/OfflinePack.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/modules → modules}/static-map/NativeStaticMapModule.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/plugin → plugin}/android.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/plugin → plugin}/withMapLibre.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/types → types}/LngLat.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/types → types}/PixelPoint.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/types → types}/PixelPointBounds.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/types → types}/codegen/UnsafeMixed.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/BridgeValue.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/StyleValue.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedExtractCoordinateFromArray.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedPoint.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/findNodeHandle.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/getNativeFilter.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/getStylePropertyType.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/utils → utils}/index.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/annotations/LayerAnnotation.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/annotations/callout/CalloutNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/camera/CameraNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/camera/NativeCameraModule.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/images/ImagesNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/layer/LayerNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/map/NativeMapViewModule.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/sources/geojson-source/NativeGeoJSONSourceModule.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/sources/image-source/ImageSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/sources/raster-source/RasterSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/sources/vector-source/NativeVectorSourceModule.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/sources/vector-source/VectorSourceNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/user-location/UserLocationNativeComponent.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/user-location/UserLocationPuck.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/user-location/UserLocationPuckHeading.d.ts +0 -0
- /package/lib/typescript/module/{src/hooks → hooks}/useFrozenId.d.ts +0 -0
- /package/lib/typescript/module/{src/hooks → hooks}/useNativeBridge.d.ts +0 -0
- /package/lib/typescript/module/{src/modules → modules}/location/LocationManager.d.ts +0 -0
- /package/lib/typescript/module/{src/modules → modules}/location/NativeLocationModule.d.ts +0 -0
- /package/lib/typescript/module/{src/modules → modules}/log/NativeLogModule.d.ts +0 -0
- /package/lib/typescript/module/{src/modules → modules}/offline/NativeOfflineModule.d.ts +0 -0
- /package/lib/typescript/module/{src/modules → modules}/offline/OfflinePack.d.ts +0 -0
- /package/lib/typescript/module/{src/modules → modules}/static-map/NativeStaticMapModule.d.ts +0 -0
- /package/lib/typescript/module/{src/plugin → plugin}/android.d.ts +0 -0
- /package/lib/typescript/module/{src/plugin → plugin}/withMapLibre.d.ts +0 -0
- /package/lib/typescript/module/{src/types → types}/LngLat.d.ts +0 -0
- /package/lib/typescript/module/{src/types → types}/PixelPoint.d.ts +0 -0
- /package/lib/typescript/module/{src/types → types}/PixelPointBounds.d.ts +0 -0
- /package/lib/typescript/module/{src/types → types}/codegen/UnsafeMixed.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/BridgeValue.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/StyleValue.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/animated/AnimatedExtractCoordinateFromArray.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/animated/AnimatedPoint.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/findNodeHandle.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/getNativeFilter.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/getStylePropertyType.d.ts +0 -0
- /package/lib/typescript/module/{src/utils → utils}/index.d.ts +0 -0
|
@@ -6,10 +6,9 @@ import type {
|
|
|
6
6
|
import {
|
|
7
7
|
Component,
|
|
8
8
|
type ComponentProps,
|
|
9
|
-
forwardRef,
|
|
10
9
|
memo,
|
|
11
10
|
type ReactElement,
|
|
12
|
-
type
|
|
11
|
+
type Ref,
|
|
13
12
|
useImperativeHandle,
|
|
14
13
|
useLayoutEffect,
|
|
15
14
|
useMemo,
|
|
@@ -29,7 +28,7 @@ import AndroidTextureMapViewNativeComponent from "./AndroidTextureMapViewNativeC
|
|
|
29
28
|
import MapViewNativeComponent from "./MapViewNativeComponent";
|
|
30
29
|
import NativeMapViewModule from "./NativeMapViewModule";
|
|
31
30
|
import { LogManager } from "../../modules/log/LogManager";
|
|
32
|
-
import {
|
|
31
|
+
import type { BaseProps } from "../../types/BaseProps";
|
|
33
32
|
import type { LngLat } from "../../types/LngLat";
|
|
34
33
|
import type { LngLatBounds } from "../../types/LngLatBounds";
|
|
35
34
|
import type { PixelPoint } from "../../types/PixelPoint";
|
|
@@ -46,12 +45,19 @@ const styles = StyleSheet.create({
|
|
|
46
45
|
flex1: { flex: 1 },
|
|
47
46
|
});
|
|
48
47
|
|
|
48
|
+
/**
|
|
49
|
+
* Screen position for map ornaments (logo, compass, scale bar). Exactly one of
|
|
50
|
+
* `top` / `bottom` and one of `left` / `right` must be provided.
|
|
51
|
+
*/
|
|
49
52
|
export type OrnamentViewPosition =
|
|
50
53
|
| { top: number; left: number }
|
|
51
54
|
| { top: number; right: number }
|
|
52
55
|
| { bottom: number; right: number }
|
|
53
56
|
| { bottom: number; left: number };
|
|
54
57
|
|
|
58
|
+
/**
|
|
59
|
+
* Current viewport state of the map.
|
|
60
|
+
*/
|
|
55
61
|
export type ViewState = {
|
|
56
62
|
center: LngLat;
|
|
57
63
|
zoom: number;
|
|
@@ -60,11 +66,18 @@ export type ViewState = {
|
|
|
60
66
|
bounds: LngLatBounds;
|
|
61
67
|
};
|
|
62
68
|
|
|
69
|
+
/**
|
|
70
|
+
* Event emitted when the map viewport changes (pan, zoom, rotate, pitch).
|
|
71
|
+
*/
|
|
63
72
|
export type ViewStateChangeEvent = ViewState & {
|
|
64
73
|
animated: boolean;
|
|
65
74
|
userInteraction: boolean;
|
|
66
75
|
};
|
|
67
76
|
|
|
77
|
+
/**
|
|
78
|
+
* Options for querying rendered features at a screen point or within a bounding
|
|
79
|
+
* box.
|
|
80
|
+
*/
|
|
68
81
|
export type QueryRenderedFeaturesOptions = {
|
|
69
82
|
/**
|
|
70
83
|
* Filter expression to filter the queried features
|
|
@@ -81,98 +94,113 @@ export interface MapRef {
|
|
|
81
94
|
/**
|
|
82
95
|
* Returns the current center coordinates of the map
|
|
83
96
|
*
|
|
97
|
+
* @returns Current center coordinates of the map
|
|
98
|
+
*
|
|
84
99
|
* @example
|
|
100
|
+
* ```ts
|
|
85
101
|
* await mapRef.current?.getCenter();
|
|
86
|
-
*
|
|
87
|
-
* @return Current center coordinates of the map
|
|
102
|
+
* ```
|
|
88
103
|
*/
|
|
89
104
|
getCenter(): Promise<LngLat>;
|
|
90
105
|
|
|
91
106
|
/**
|
|
92
107
|
* Returns the current zoom level of the map
|
|
93
108
|
*
|
|
109
|
+
* @returns Current zoom level of the map
|
|
110
|
+
*
|
|
94
111
|
* @example
|
|
112
|
+
* ```ts
|
|
95
113
|
* await mapRef.current?.getZoom();
|
|
96
|
-
*
|
|
97
|
-
* @return Current zoom level of the map
|
|
114
|
+
* ```
|
|
98
115
|
*/
|
|
99
116
|
getZoom(): Promise<number>;
|
|
100
117
|
|
|
101
118
|
/**
|
|
102
119
|
* Returns the current bearing of the map
|
|
103
120
|
*
|
|
121
|
+
* @returns Current bearing of the map
|
|
122
|
+
*
|
|
104
123
|
* @example
|
|
124
|
+
* ```ts
|
|
105
125
|
* await mapRef.current?.getBearing();
|
|
106
|
-
*
|
|
107
|
-
* @return Current bearing of the map
|
|
126
|
+
* ```
|
|
108
127
|
*/
|
|
109
128
|
getBearing(): Promise<number>;
|
|
110
129
|
|
|
111
130
|
/**
|
|
112
131
|
* Returns the current pitch of the map
|
|
113
132
|
*
|
|
133
|
+
* @returns Current pitch of the map
|
|
134
|
+
*
|
|
114
135
|
* @example
|
|
136
|
+
* ```ts
|
|
115
137
|
* await mapRef.current?.getPitch();
|
|
116
|
-
*
|
|
117
|
-
* @return Current pitch of the map
|
|
138
|
+
* ```
|
|
118
139
|
*/
|
|
119
140
|
getPitch(): Promise<number>;
|
|
120
141
|
|
|
121
142
|
/**
|
|
122
143
|
* Returns the current bounds of the map
|
|
123
144
|
*
|
|
145
|
+
* @returns Current bounds of the map
|
|
146
|
+
*
|
|
124
147
|
* @example
|
|
148
|
+
* ```ts
|
|
125
149
|
* await mapRef.current?.getBounds();
|
|
126
|
-
*
|
|
127
|
-
* @return Current bounds of the map
|
|
150
|
+
* ```
|
|
128
151
|
*/
|
|
129
152
|
getBounds(): Promise<LngLatBounds>;
|
|
130
153
|
|
|
131
154
|
/**
|
|
132
155
|
* Returns the current view state of the map
|
|
133
156
|
*
|
|
157
|
+
* @returns Current view state of the map
|
|
158
|
+
*
|
|
134
159
|
* @example
|
|
160
|
+
* ```ts
|
|
135
161
|
* await mapRef.current?.getViewState();
|
|
136
|
-
*
|
|
137
|
-
* @return Current view state of the map
|
|
162
|
+
* ```
|
|
138
163
|
*/
|
|
139
164
|
getViewState(): Promise<ViewState>;
|
|
140
165
|
|
|
141
166
|
/**
|
|
142
167
|
* Converts geographic coordinates to pixel point of the view
|
|
143
168
|
*
|
|
169
|
+
* @param lngLat - Geographic coordinate
|
|
170
|
+
* @returns Pixel point
|
|
171
|
+
*
|
|
144
172
|
* @example
|
|
173
|
+
* ```ts
|
|
145
174
|
* await mapRef.current?.project([13.04214014753952, 47.80554907882145]);
|
|
146
|
-
*
|
|
147
|
-
* @param lngLat Geographic coordinate
|
|
148
|
-
* @return Pixel point
|
|
175
|
+
* ```
|
|
149
176
|
*/
|
|
150
177
|
project(lngLat: LngLat): Promise<PixelPoint>;
|
|
151
178
|
|
|
152
179
|
/**
|
|
153
180
|
* Converts a pixel point of the view to geographic coordinates.
|
|
154
181
|
*
|
|
182
|
+
* @param point - Pixel point
|
|
183
|
+
* @returns Geographic coordinate
|
|
184
|
+
*
|
|
155
185
|
* @example
|
|
186
|
+
* ```ts
|
|
156
187
|
* await mapRef.current?.unproject([280, 640]);
|
|
157
|
-
*
|
|
158
|
-
* @param point Pixel point
|
|
159
|
-
* @return Geographic coordinate
|
|
188
|
+
* ```
|
|
160
189
|
*/
|
|
161
190
|
unproject(point: PixelPoint): Promise<LngLat>;
|
|
162
191
|
|
|
163
192
|
/**
|
|
164
193
|
* Query rendered features at a point
|
|
165
194
|
*
|
|
166
|
-
* @
|
|
167
|
-
* await mapRef.current?.queryRenderedFeatures(
|
|
168
|
-
* [240, 640],
|
|
169
|
-
* {
|
|
170
|
-
* filter: ["==", "type", "Point"],
|
|
171
|
-
* layers: ["restaurants", "shops"],
|
|
172
|
-
* },
|
|
173
|
-
* );
|
|
195
|
+
* @returns Queried features
|
|
174
196
|
*
|
|
175
|
-
* @
|
|
197
|
+
* @example
|
|
198
|
+
* ```ts
|
|
199
|
+
* await mapRef.current?.queryRenderedFeatures([240, 640], {
|
|
200
|
+
* filter: ["==", "type", "Point"],
|
|
201
|
+
* layers: ["restaurants", "shops"],
|
|
202
|
+
* });
|
|
203
|
+
* ```
|
|
176
204
|
*/
|
|
177
205
|
queryRenderedFeatures(
|
|
178
206
|
pixelPoint: PixelPoint,
|
|
@@ -182,16 +210,15 @@ export interface MapRef {
|
|
|
182
210
|
/**
|
|
183
211
|
* Query rendered features within pixel bounds
|
|
184
212
|
*
|
|
185
|
-
* @
|
|
186
|
-
* await mapRef.current?.queryRenderedFeatures(
|
|
187
|
-
* [100, 100, 400, 400],
|
|
188
|
-
* {
|
|
189
|
-
* filter: ["==", "type", "Point"],
|
|
190
|
-
* layers: ["restaurants", "shops"],
|
|
191
|
-
* },
|
|
192
|
-
* );
|
|
213
|
+
* @returns Queried features
|
|
193
214
|
*
|
|
194
|
-
* @
|
|
215
|
+
* @example
|
|
216
|
+
* ```ts
|
|
217
|
+
* await mapRef.current?.queryRenderedFeatures([100, 100, 400, 400], {
|
|
218
|
+
* filter: ["==", "type", "Point"],
|
|
219
|
+
* layers: ["restaurants", "shops"],
|
|
220
|
+
* });
|
|
221
|
+
* ```
|
|
195
222
|
*/
|
|
196
223
|
queryRenderedFeatures(
|
|
197
224
|
pixelPointBounds: PixelPointBounds,
|
|
@@ -201,15 +228,15 @@ export interface MapRef {
|
|
|
201
228
|
/**
|
|
202
229
|
* Query rendered features within the current viewport
|
|
203
230
|
*
|
|
204
|
-
* @
|
|
205
|
-
* await mapRef.current?.queryRenderedFeatures(
|
|
206
|
-
* {
|
|
207
|
-
* filter: ["==", "type", "Point"],
|
|
208
|
-
* layers: ["restaurants", "shops"],
|
|
209
|
-
* },
|
|
210
|
-
* );
|
|
231
|
+
* @returns Queried features
|
|
211
232
|
*
|
|
212
|
-
* @
|
|
233
|
+
* @example
|
|
234
|
+
* ```ts
|
|
235
|
+
* await mapRef.current?.queryRenderedFeatures({
|
|
236
|
+
* filter: ["==", "type", "Point"],
|
|
237
|
+
* layers: ["restaurants", "shops"],
|
|
238
|
+
* });
|
|
239
|
+
* ```
|
|
213
240
|
*/
|
|
214
241
|
queryRenderedFeatures(
|
|
215
242
|
options?: QueryRenderedFeaturesOptions,
|
|
@@ -218,21 +245,22 @@ export interface MapRef {
|
|
|
218
245
|
/**
|
|
219
246
|
* Takes static-map image of the currently displayed map
|
|
220
247
|
*
|
|
221
|
-
* @
|
|
222
|
-
*
|
|
223
|
-
* @return Base64 encoded image or URI of image file
|
|
248
|
+
* @returns Base64 encoded image or URI of image file
|
|
224
249
|
*/
|
|
225
250
|
createStaticMapImage(options: { output: "base64" | "file" }): Promise<string>;
|
|
226
251
|
|
|
227
252
|
/**
|
|
228
|
-
* Sets the visibility of all the layers referencing the specified `source` and
|
|
229
|
-
*
|
|
230
|
-
* @example
|
|
231
|
-
* await mapRef.current?.setSourceVisibility(false, 'composite', 'building')
|
|
253
|
+
* Sets the visibility of all the layers referencing the specified `source` and
|
|
254
|
+
* optionally `sourceLayer`
|
|
232
255
|
*
|
|
233
256
|
* @param visible - Visibility of the layers
|
|
234
257
|
* @param source - Identifier of the target source (e.g. 'composite')
|
|
235
258
|
* @param sourceLayer - Identifier of the target source-layer (e.g. 'building')
|
|
259
|
+
*
|
|
260
|
+
* @example
|
|
261
|
+
* ```ts
|
|
262
|
+
* await mapRef.current?.setSourceVisibility(false, "composite", "building");
|
|
263
|
+
* ```
|
|
236
264
|
*/
|
|
237
265
|
setSourceVisibility(
|
|
238
266
|
visible: boolean,
|
|
@@ -248,20 +276,18 @@ export interface MapRef {
|
|
|
248
276
|
showAttribution(): Promise<void>;
|
|
249
277
|
}
|
|
250
278
|
|
|
251
|
-
export interface MapProps extends BaseProps {
|
|
252
|
-
children?: ReactNode;
|
|
253
|
-
|
|
279
|
+
export interface MapProps extends BaseProps, ViewProps {
|
|
254
280
|
/**
|
|
255
281
|
* Style for wrapping React Native View
|
|
256
282
|
*
|
|
257
|
-
* @
|
|
283
|
+
* @defaultValue { flex: 1 }
|
|
258
284
|
*/
|
|
259
285
|
style?: ViewProps["style"];
|
|
260
286
|
|
|
261
287
|
/**
|
|
262
288
|
* Maplibre style - either a URL or a Style JSON.
|
|
263
289
|
*
|
|
264
|
-
* @see https://maplibre.org/maplibre-style-spec/
|
|
290
|
+
* @see {@link https://maplibre.org/maplibre-style-spec/}
|
|
265
291
|
*/
|
|
266
292
|
mapStyle: string | StyleSpecification;
|
|
267
293
|
|
|
@@ -270,51 +296,73 @@ export interface MapProps extends BaseProps {
|
|
|
270
296
|
* Controls the light source for extruded geometries.
|
|
271
297
|
*
|
|
272
298
|
* @example
|
|
299
|
+
* ```tsx
|
|
273
300
|
* light={{ position: [1.5, 90, 80], color: "#ffffff", intensity: 0.5 }}
|
|
301
|
+
* ```
|
|
274
302
|
*/
|
|
275
303
|
light?: LightSpecification;
|
|
276
304
|
|
|
277
305
|
/**
|
|
278
|
-
* The distance from the edges of the map view's frame to the edges of the map
|
|
306
|
+
* The distance from the edges of the map view's frame to the edges of the map
|
|
307
|
+
* view's logical viewport.
|
|
279
308
|
*/
|
|
280
309
|
contentInset?: ViewPadding;
|
|
281
310
|
|
|
282
311
|
/**
|
|
283
|
-
* iOS
|
|
284
|
-
*
|
|
312
|
+
* **iOS**: The preferred frame rate at which the map view is rendered. The
|
|
313
|
+
* default value for this property is MLNMapViewPreferredFramesPerSecondDefault,
|
|
285
314
|
* which will adaptively set the preferred frame rate based on the capability of
|
|
286
|
-
* the user’s device to maintain a smooth experience. This property can be set
|
|
315
|
+
* the user’s device to maintain a smooth experience. This property can be set
|
|
316
|
+
* to arbitrary integer values.
|
|
287
317
|
*
|
|
288
|
-
* Android
|
|
289
|
-
* This property can be set to
|
|
318
|
+
* **Android**: The maximum frame rate at which the map view is rendered, but it
|
|
319
|
+
* can't exceed the ability of device hardware. This property can be set to
|
|
320
|
+
* arbitrary integer values.
|
|
290
321
|
*/
|
|
291
322
|
preferredFramesPerSecond?: number;
|
|
292
323
|
|
|
293
324
|
/**
|
|
294
325
|
* Toggle pan interaction of the map
|
|
295
326
|
*
|
|
296
|
-
* @
|
|
327
|
+
* @defaultValue true
|
|
297
328
|
*/
|
|
298
329
|
dragPan?: boolean;
|
|
299
330
|
|
|
300
331
|
/**
|
|
301
|
-
* Toggle zoom interaction of the map
|
|
332
|
+
* Toggle pinch/scroll zoom interaction of the map.
|
|
333
|
+
*
|
|
334
|
+
* On Android this also disables {@link doubleTapZoom} and {@link doubleTapHoldZoom}.
|
|
302
335
|
*
|
|
303
|
-
* @
|
|
336
|
+
* @defaultValue true
|
|
304
337
|
*/
|
|
305
|
-
|
|
338
|
+
touchZoom?: boolean;
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Toggle double-tap zoom interaction of the map.
|
|
342
|
+
*
|
|
343
|
+
* @defaultValue true
|
|
344
|
+
*/
|
|
345
|
+
doubleTapZoom?: boolean;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* Toggle double-tap-and-hold zoom interaction of the map (also known as quick
|
|
349
|
+
* zoom and one finger zoom).
|
|
350
|
+
*
|
|
351
|
+
* @defaultValue true
|
|
352
|
+
*/
|
|
353
|
+
doubleTapHoldZoom?: boolean;
|
|
306
354
|
|
|
307
355
|
/**
|
|
308
356
|
* Toggle rotate interaction of the map
|
|
309
357
|
*
|
|
310
|
-
* @
|
|
358
|
+
* @defaultValue true
|
|
311
359
|
*/
|
|
312
360
|
touchRotate?: boolean;
|
|
313
361
|
|
|
314
362
|
/**
|
|
315
363
|
* Toggle pitch interaction of the map
|
|
316
364
|
*
|
|
317
|
-
* @
|
|
365
|
+
* @defaultValue true
|
|
318
366
|
*/
|
|
319
367
|
touchPitch?: boolean;
|
|
320
368
|
|
|
@@ -332,7 +380,9 @@ export interface MapProps extends BaseProps {
|
|
|
332
380
|
* Positions the attribution button
|
|
333
381
|
*
|
|
334
382
|
* @example Position in the top-left corner
|
|
383
|
+
* ```ts
|
|
335
384
|
* { top: 8, left: 8 }
|
|
385
|
+
* ```
|
|
336
386
|
*/
|
|
337
387
|
attributionPosition?: OrnamentViewPosition;
|
|
338
388
|
|
|
@@ -345,7 +395,9 @@ export interface MapProps extends BaseProps {
|
|
|
345
395
|
* Positions the logo
|
|
346
396
|
*
|
|
347
397
|
* @example Position in the top-left corner
|
|
398
|
+
* ```ts
|
|
348
399
|
* { top: 8, left: 8 }
|
|
400
|
+
* ```
|
|
349
401
|
*/
|
|
350
402
|
logoPosition?: OrnamentViewPosition;
|
|
351
403
|
|
|
@@ -358,22 +410,39 @@ export interface MapProps extends BaseProps {
|
|
|
358
410
|
* Positions the compass
|
|
359
411
|
*
|
|
360
412
|
* @example Position in the top-left corner
|
|
413
|
+
* ```ts
|
|
361
414
|
* { top: 8, left: 8 }
|
|
415
|
+
* ```
|
|
362
416
|
*/
|
|
363
417
|
compassPosition?: OrnamentViewPosition;
|
|
364
418
|
|
|
365
419
|
/**
|
|
366
420
|
* Toggle the compass from hiding when facing north
|
|
367
421
|
*
|
|
368
|
-
* @
|
|
422
|
+
* @defaultValue true
|
|
369
423
|
*/
|
|
370
424
|
compassHiddenFacingNorth?: boolean;
|
|
371
425
|
|
|
426
|
+
/**
|
|
427
|
+
* Toggle the scale bar on the map
|
|
428
|
+
*/
|
|
429
|
+
scaleBar?: boolean;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Positions the scale bar. Android only supports top-left corner.
|
|
433
|
+
*
|
|
434
|
+
* @example Position in the bottom-left corner
|
|
435
|
+
* ```ts
|
|
436
|
+
* { bottom: 8, left: 8 }
|
|
437
|
+
* ```
|
|
438
|
+
*/
|
|
439
|
+
scaleBarPosition?: OrnamentViewPosition;
|
|
440
|
+
|
|
372
441
|
/**
|
|
373
442
|
* Android only: Switch between TextureView (default) and GLSurfaceView for
|
|
374
443
|
* rendering the map
|
|
375
444
|
*
|
|
376
|
-
* @
|
|
445
|
+
* @defaultValue "surface"
|
|
377
446
|
*/
|
|
378
447
|
androidView?: "surface" | "texture";
|
|
379
448
|
|
|
@@ -381,8 +450,8 @@ export interface MapProps extends BaseProps {
|
|
|
381
450
|
* Called when a user presses the map
|
|
382
451
|
*
|
|
383
452
|
* If the event bubbles up from a child `Source` with an `onPress` handler the
|
|
384
|
-
* `features` will be included. The event will emit on `Map` and `Source
|
|
385
|
-
*
|
|
453
|
+
* `features` will be included. The event will emit on `Map` and `Source` . To
|
|
454
|
+
* prevent this use `event.stopPropagation()` in the `Source` handler.
|
|
386
455
|
*/
|
|
387
456
|
onPress?: (
|
|
388
457
|
event:
|
|
@@ -465,166 +534,164 @@ export interface MapProps extends BaseProps {
|
|
|
465
534
|
* Triggered when a style has finished loading
|
|
466
535
|
*/
|
|
467
536
|
onDidFinishLoadingStyle?: (event: NativeSyntheticEvent<null>) => void;
|
|
537
|
+
|
|
538
|
+
/**
|
|
539
|
+
* Ref to access Map methods.
|
|
540
|
+
*/
|
|
541
|
+
ref?: Ref<MapRef>;
|
|
468
542
|
}
|
|
469
543
|
|
|
470
544
|
/**
|
|
471
|
-
* MapLibre Native Map
|
|
545
|
+
* A view of a MapLibre Native Map.
|
|
546
|
+
*
|
|
547
|
+
* @example Rendering a basic Map
|
|
548
|
+
* ```tsx
|
|
549
|
+
* <Map mapStyle="https://demotiles.maplibre.org/style.json" />;
|
|
550
|
+
* ```
|
|
472
551
|
*/
|
|
473
552
|
export const Map = memo(
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
getCenter
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
getZoom
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
getBearing
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
getPitch
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
getBounds
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
getViewState
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
project
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
pixelPointOrPixelPointBoundsOrOptions
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
Array.isArray(pixelPointOrPixelPointBoundsOrOptions) &&
|
|
526
|
-
((value: PixelPoint | PixelPointBounds): value is PixelPoint =>
|
|
527
|
-
typeof value[0] === "number" && typeof value[1] === "number")(
|
|
528
|
-
pixelPointOrPixelPointBoundsOrOptions,
|
|
529
|
-
)
|
|
530
|
-
) {
|
|
531
|
-
return await NativeMapViewModule.queryRenderedFeaturesWithPoint(
|
|
532
|
-
findNodeHandle(nativeRef.current),
|
|
533
|
-
pixelPointOrPixelPointBoundsOrOptions,
|
|
534
|
-
options?.layers ?? [],
|
|
535
|
-
getNativeFilter(options?.filter) as string[],
|
|
536
|
-
);
|
|
537
|
-
} else if (
|
|
538
|
-
pixelPointOrPixelPointBoundsOrOptions &&
|
|
539
|
-
Array.isArray(pixelPointOrPixelPointBoundsOrOptions) &&
|
|
540
|
-
((
|
|
541
|
-
value: PixelPoint | PixelPointBounds,
|
|
542
|
-
): value is PixelPointBounds =>
|
|
543
|
-
Array.isArray(value[0]) && Array.isArray(value[1]))(
|
|
544
|
-
pixelPointOrPixelPointBoundsOrOptions,
|
|
545
|
-
)
|
|
546
|
-
) {
|
|
547
|
-
return await NativeMapViewModule.queryRenderedFeaturesWithBounds(
|
|
548
|
-
findNodeHandle(nativeRef.current),
|
|
549
|
-
pixelPointOrPixelPointBoundsOrOptions,
|
|
550
|
-
options?.layers ?? [],
|
|
551
|
-
getNativeFilter(options?.filter) as string[],
|
|
552
|
-
);
|
|
553
|
-
} else {
|
|
554
|
-
return await NativeMapViewModule.queryRenderedFeaturesWithBounds(
|
|
555
|
-
findNodeHandle(nativeRef.current),
|
|
556
|
-
null,
|
|
557
|
-
pixelPointOrPixelPointBoundsOrOptions?.layers ?? [],
|
|
558
|
-
getNativeFilter(
|
|
559
|
-
pixelPointOrPixelPointBoundsOrOptions?.filter,
|
|
560
|
-
) as string[],
|
|
561
|
-
);
|
|
562
|
-
}
|
|
563
|
-
},
|
|
564
|
-
|
|
565
|
-
createStaticMapImage: (options) =>
|
|
566
|
-
NativeMapViewModule.createStaticMapImage(
|
|
553
|
+
({ androidView = "surface", style, ref, ...props }: MapProps) => {
|
|
554
|
+
const [isReady, setIsReady] = useState(false);
|
|
555
|
+
|
|
556
|
+
const nativeRef = useRef<
|
|
557
|
+
Component<ComponentProps<typeof MapViewNativeComponent>> &
|
|
558
|
+
ReactNativeElement
|
|
559
|
+
>(null);
|
|
560
|
+
|
|
561
|
+
useImperativeHandle(ref, () => ({
|
|
562
|
+
getCenter: () =>
|
|
563
|
+
NativeMapViewModule.getCenter(findNodeHandle(nativeRef.current)),
|
|
564
|
+
|
|
565
|
+
getZoom: () =>
|
|
566
|
+
NativeMapViewModule.getZoom(findNodeHandle(nativeRef.current)),
|
|
567
|
+
|
|
568
|
+
getBearing: () =>
|
|
569
|
+
NativeMapViewModule.getBearing(findNodeHandle(nativeRef.current)),
|
|
570
|
+
|
|
571
|
+
getPitch: () =>
|
|
572
|
+
NativeMapViewModule.getPitch(findNodeHandle(nativeRef.current)),
|
|
573
|
+
|
|
574
|
+
getBounds: () =>
|
|
575
|
+
NativeMapViewModule.getBounds(findNodeHandle(nativeRef.current)),
|
|
576
|
+
|
|
577
|
+
getViewState: () =>
|
|
578
|
+
NativeMapViewModule.getViewState(
|
|
579
|
+
findNodeHandle(nativeRef.current),
|
|
580
|
+
) as Promise<ViewState>,
|
|
581
|
+
|
|
582
|
+
project: (lngLat) =>
|
|
583
|
+
NativeMapViewModule.project(findNodeHandle(nativeRef.current), lngLat),
|
|
584
|
+
|
|
585
|
+
unproject: (point) =>
|
|
586
|
+
NativeMapViewModule.unproject(findNodeHandle(nativeRef.current), point),
|
|
587
|
+
|
|
588
|
+
queryRenderedFeatures: async (
|
|
589
|
+
pixelPointOrPixelPointBoundsOrOptions?:
|
|
590
|
+
| PixelPoint
|
|
591
|
+
| PixelPointBounds
|
|
592
|
+
| QueryRenderedFeaturesOptions,
|
|
593
|
+
options?: QueryRenderedFeaturesOptions,
|
|
594
|
+
) => {
|
|
595
|
+
if (
|
|
596
|
+
pixelPointOrPixelPointBoundsOrOptions &&
|
|
597
|
+
Array.isArray(pixelPointOrPixelPointBoundsOrOptions) &&
|
|
598
|
+
((value: PixelPoint | PixelPointBounds): value is PixelPoint =>
|
|
599
|
+
typeof value[0] === "number" && typeof value[1] === "number")(
|
|
600
|
+
pixelPointOrPixelPointBoundsOrOptions,
|
|
601
|
+
)
|
|
602
|
+
) {
|
|
603
|
+
return await NativeMapViewModule.queryRenderedFeaturesWithPoint(
|
|
567
604
|
findNodeHandle(nativeRef.current),
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
605
|
+
pixelPointOrPixelPointBoundsOrOptions,
|
|
606
|
+
options?.layers ?? [],
|
|
607
|
+
getNativeFilter(options?.filter) as string[],
|
|
608
|
+
);
|
|
609
|
+
} else if (
|
|
610
|
+
pixelPointOrPixelPointBoundsOrOptions &&
|
|
611
|
+
Array.isArray(pixelPointOrPixelPointBoundsOrOptions) &&
|
|
612
|
+
((value: PixelPoint | PixelPointBounds): value is PixelPointBounds =>
|
|
613
|
+
Array.isArray(value[0]) && Array.isArray(value[1]))(
|
|
614
|
+
pixelPointOrPixelPointBoundsOrOptions,
|
|
615
|
+
)
|
|
616
|
+
) {
|
|
617
|
+
return await NativeMapViewModule.queryRenderedFeaturesWithBounds(
|
|
573
618
|
findNodeHandle(nativeRef.current),
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
)
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
NativeMapViewModule.showAttribution(
|
|
619
|
+
pixelPointOrPixelPointBoundsOrOptions,
|
|
620
|
+
options?.layers ?? [],
|
|
621
|
+
getNativeFilter(options?.filter) as string[],
|
|
622
|
+
);
|
|
623
|
+
} else {
|
|
624
|
+
return await NativeMapViewModule.queryRenderedFeaturesWithBounds(
|
|
581
625
|
findNodeHandle(nativeRef.current),
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
626
|
+
null,
|
|
627
|
+
pixelPointOrPixelPointBoundsOrOptions?.layers ?? [],
|
|
628
|
+
getNativeFilter(
|
|
629
|
+
pixelPointOrPixelPointBoundsOrOptions?.filter,
|
|
630
|
+
) as string[],
|
|
631
|
+
);
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
|
|
635
|
+
createStaticMapImage: (options) =>
|
|
636
|
+
NativeMapViewModule.createStaticMapImage(
|
|
637
|
+
findNodeHandle(nativeRef.current),
|
|
638
|
+
options.output,
|
|
639
|
+
),
|
|
640
|
+
|
|
641
|
+
setSourceVisibility: (visible, source, sourceLayer) =>
|
|
642
|
+
NativeMapViewModule.setSourceVisibility(
|
|
643
|
+
findNodeHandle(nativeRef.current),
|
|
644
|
+
visible,
|
|
645
|
+
source,
|
|
646
|
+
sourceLayer ?? null,
|
|
647
|
+
),
|
|
648
|
+
|
|
649
|
+
showAttribution: () =>
|
|
650
|
+
NativeMapViewModule.showAttribution(findNodeHandle(nativeRef.current)),
|
|
651
|
+
}));
|
|
652
|
+
|
|
653
|
+
// Start before rendering
|
|
654
|
+
useLayoutEffect(() => {
|
|
655
|
+
LogManager.start();
|
|
656
|
+
|
|
657
|
+
return () => {
|
|
658
|
+
LogManager.stop();
|
|
659
|
+
};
|
|
660
|
+
}, []);
|
|
661
|
+
|
|
662
|
+
const nativeProps = useMemo(() => {
|
|
663
|
+
const { mapStyle, light, ...otherProps } = props;
|
|
664
|
+
|
|
665
|
+
return {
|
|
666
|
+
...otherProps,
|
|
667
|
+
ref: nativeRef,
|
|
668
|
+
style: styles.flex1,
|
|
669
|
+
mapStyle:
|
|
670
|
+
typeof mapStyle === "object" ? JSON.stringify(mapStyle) : mapStyle,
|
|
671
|
+
light: props.light
|
|
672
|
+
? transformStyle(convertToInternalStyle(props.light))
|
|
673
|
+
: undefined,
|
|
674
|
+
};
|
|
675
|
+
}, [props]);
|
|
676
|
+
|
|
677
|
+
let map: ReactElement | null = null;
|
|
678
|
+
if (isReady) {
|
|
679
|
+
const NativeMapView =
|
|
680
|
+
Platform.OS === "android" && androidView === "texture"
|
|
681
|
+
? AndroidTextureMapViewNativeComponent
|
|
682
|
+
: MapViewNativeComponent;
|
|
683
|
+
|
|
684
|
+
map = <NativeMapView {...nativeProps} />;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
return (
|
|
688
|
+
<View
|
|
689
|
+
onLayout={() => setIsReady(true)}
|
|
690
|
+
style={style ?? styles.flex1}
|
|
691
|
+
testID={nativeProps.testID ? `${nativeProps.testID}-view` : undefined}
|
|
692
|
+
>
|
|
693
|
+
{map}
|
|
694
|
+
</View>
|
|
695
|
+
);
|
|
696
|
+
},
|
|
630
697
|
);
|