@rnmapbox/maps 10.1.0-beta.11 → 10.1.0-beta.14
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/android/src/main/java/com/rnmapbox/rnmbx/RNMBXPackage.kt +19 -8
- package/android/src/main/java/com/rnmapbox/rnmbx/components/AbstractMapFeature.kt +2 -0
- package/android/src/main/java/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.kt +66 -9
- package/android/src/main/java/com/rnmapbox/rnmbx/components/location/LocationComponentManager.kt +1 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/components/location/UserTrackingMode.kt +1 -0
- package/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.kt +1 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXAndroidTextureMapViewManager.kt +1 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt +22 -19
- package/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt +52 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.kt +0 -6
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.kt +1 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.kt +21 -23
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt +0 -46
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.kt +61 -0
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/{RCTSource.kt → RNMBXSource.kt} +8 -8
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.kt +1 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/events/FeatureClickEvent.java +4 -4
- package/android/src/main/java/com/rnmapbox/rnmbx/utils/ViewTagResolver.kt +6 -5
- package/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt +35 -0
- package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/Image.kt +1 -1
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java +41 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.java +20 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java +3 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.java +1 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java +50 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.java +23 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java +56 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.java +25 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java +77 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.java +32 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java +59 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.java +26 -0
- package/android/src/main/old-arch/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.java +48 -0
- package/ios/RNMBX/CustomHttpHeaders.swift +11 -0
- package/ios/RNMBX/RNMBXBackgroundLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXCircleLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXFillExtrusionLayerComponentView.mm +3 -1
- package/ios/RNMBX/RNMBXFillLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXHeatmapLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXImageSource.swift +3 -3
- package/ios/RNMBX/RNMBXImageSourceComponentView.h +15 -0
- package/ios/RNMBX/RNMBXImageSourceComponentView.mm +100 -0
- package/ios/RNMBX/{RNMBXImageSourceManager.m → RNMBXImageSourceViewManager.m} +1 -1
- package/ios/RNMBX/{RNMBXImageSourceManager.swift → RNMBXImageSourceViewManager.swift} +2 -2
- package/ios/RNMBX/RNMBXInteractiveElement.swift +7 -7
- package/ios/RNMBX/RNMBXLayer.swift +1 -1
- package/ios/RNMBX/RNMBXLineLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXMapFeatureView.h +7 -0
- package/ios/RNMBX/RNMBXMapView.swift +56 -1
- package/ios/RNMBX/RNMBXMapViewManager.m +2 -0
- package/ios/RNMBX/RNMBXRasterDemSource.swift +6 -6
- package/ios/RNMBX/RNMBXRasterDemSourceComponentView.h +17 -0
- package/ios/RNMBX/RNMBXRasterDemSourceComponentView.mm +116 -0
- package/ios/RNMBX/{RNMBXRasterDemSourceManager.m → RNMBXRasterDemSourceViewManager.m} +1 -7
- package/ios/RNMBX/{RNMBXRasterDemSourceManager.swift → RNMBXRasterDemSourceViewManager.swift} +2 -2
- package/ios/RNMBX/RNMBXRasterLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXRasterSource.swift +8 -8
- package/ios/RNMBX/RNMBXRasterSourceComponentView.h +17 -0
- package/ios/RNMBX/RNMBXRasterSourceComponentView.mm +124 -0
- package/ios/RNMBX/{RNMBXRasterSourceManager.m → RNMBXRasterSourceViewManager.m} +1 -1
- package/ios/RNMBX/{RNMBXRasterSourceManager.swift → RNMBXRasterSourceViewManager.swift} +2 -2
- package/ios/RNMBX/RNMBXShapeSource.swift +11 -11
- package/ios/RNMBX/RNMBXShapeSourceComponentView.h +17 -0
- package/ios/RNMBX/RNMBXShapeSourceComponentView.mm +153 -0
- package/ios/RNMBX/RNMBXShapeSourceModule.h +18 -0
- package/ios/RNMBX/RNMBXShapeSourceModule.mm +87 -0
- package/ios/RNMBX/RNMBXShapeSourceViewManager.m +26 -0
- package/ios/RNMBX/{RNMBXShapeSourceManager.swift → RNMBXShapeSourceViewManager.swift} +12 -42
- package/ios/RNMBX/RNMBXSkyLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXSource.swift +36 -27
- package/ios/RNMBX/RNMBXSymbolLayerComponentView.mm +2 -0
- package/ios/RNMBX/RNMBXTileSource.swift +2 -2
- package/ios/RNMBX/RNMBXVectorSource.swift +6 -6
- package/ios/RNMBX/RNMBXVectorSourceComponentView.h +17 -0
- package/ios/RNMBX/RNMBXVectorSourceComponentView.mm +141 -0
- package/ios/RNMBX/{RNMBXVectorSourceManager.m → RNMBXVectorSourceViewManager.m} +1 -1
- package/ios/RNMBX/{RNMBXVectorSourceManager.swift → RNMBXVectorSourceViewManager.swift} +2 -2
- package/ios/install.md +2 -1
- package/lib/commonjs/components/AbstractLayer.js +1 -2
- package/lib/commonjs/components/AbstractLayer.js.map +1 -1
- package/lib/commonjs/components/Annotation.js +2 -3
- package/lib/commonjs/components/Annotation.js.map +1 -1
- package/lib/commonjs/components/Camera.js +7 -10
- package/lib/commonjs/components/Camera.js.map +1 -1
- package/lib/commonjs/components/ImageSource.js +10 -7
- package/lib/commonjs/components/ImageSource.js.map +1 -1
- package/lib/commonjs/components/Light.js +1 -2
- package/lib/commonjs/components/Light.js.map +1 -1
- package/lib/commonjs/components/MapView.js +2 -5
- package/lib/commonjs/components/MapView.js.map +1 -1
- package/lib/commonjs/components/RasterDemSource.js +11 -8
- package/lib/commonjs/components/RasterDemSource.js.map +1 -1
- package/lib/commonjs/components/RasterSource.js +11 -8
- package/lib/commonjs/components/RasterSource.js.map +1 -1
- package/lib/commonjs/components/ShapeSource.js +32 -54
- package/lib/commonjs/components/ShapeSource.js.map +1 -1
- package/lib/commonjs/components/SymbolLayer.js +1 -1
- package/lib/commonjs/components/SymbolLayer.js.map +1 -1
- package/lib/commonjs/components/VectorSource.js +26 -39
- package/lib/commonjs/components/VectorSource.js.map +1 -1
- package/lib/commonjs/specs/NativeRNMBXShapeSourceModule.js +10 -0
- package/lib/commonjs/specs/NativeRNMBXShapeSourceModule.js.map +1 -0
- package/lib/commonjs/specs/RNMBXBackgroundLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXBackgroundLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXCameraNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXCameraNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXCircleLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXCircleLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXFillExtrusionLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXFillExtrusionLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXFillLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXFillLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXHeatmapLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXHeatmapLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXImageSourceNativeComponent.js +10 -0
- package/lib/commonjs/specs/RNMBXImageSourceNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/RNMBXLineLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXLineLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXMapViewNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXMapViewNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXRasterDemSourceNativeComponent.js +10 -0
- package/lib/commonjs/specs/RNMBXRasterDemSourceNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/RNMBXRasterLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXRasterLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXRasterSourceNativeComponent.js +10 -0
- package/lib/commonjs/specs/RNMBXRasterSourceNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/RNMBXShapeSourceNativeComponent.js +10 -0
- package/lib/commonjs/specs/RNMBXShapeSourceNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/RNMBXSkyLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXSkyLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXSymbolLayerNativeComponent.js +1 -0
- package/lib/commonjs/specs/RNMBXSymbolLayerNativeComponent.js.map +1 -1
- package/lib/commonjs/specs/RNMBXVectorSourceNativeComponent.js +10 -0
- package/lib/commonjs/specs/RNMBXVectorSourceNativeComponent.js.map +1 -0
- package/lib/commonjs/utils/Logger.js +1 -2
- package/lib/commonjs/utils/Logger.js.map +1 -1
- package/lib/module/components/AbstractLayer.js +1 -2
- package/lib/module/components/AbstractLayer.js.map +1 -1
- package/lib/module/components/Annotation.js +2 -3
- package/lib/module/components/Annotation.js.map +1 -1
- package/lib/module/components/Camera.js +7 -10
- package/lib/module/components/Camera.js.map +1 -1
- package/lib/module/components/ImageSource.js +10 -7
- package/lib/module/components/ImageSource.js.map +1 -1
- package/lib/module/components/Light.js +1 -2
- package/lib/module/components/Light.js.map +1 -1
- package/lib/module/components/MapView.js +2 -5
- package/lib/module/components/MapView.js.map +1 -1
- package/lib/module/components/RasterDemSource.js +11 -8
- package/lib/module/components/RasterDemSource.js.map +1 -1
- package/lib/module/components/RasterSource.js +11 -8
- package/lib/module/components/RasterSource.js.map +1 -1
- package/lib/module/components/ShapeSource.js +33 -55
- package/lib/module/components/ShapeSource.js.map +1 -1
- package/lib/module/components/SymbolLayer.js +1 -1
- package/lib/module/components/SymbolLayer.js.map +1 -1
- package/lib/module/components/VectorSource.js +28 -41
- package/lib/module/components/VectorSource.js.map +1 -1
- package/lib/module/specs/NativeRNMBXShapeSourceModule.js +5 -0
- package/lib/module/specs/NativeRNMBXShapeSourceModule.js.map +1 -0
- package/lib/module/specs/RNMBXBackgroundLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXBackgroundLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXCameraNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXCameraNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXCircleLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXCircleLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXFillExtrusionLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXFillExtrusionLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXFillLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXFillLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXHeatmapLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXHeatmapLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXImageSourceNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXImageSourceNativeComponent.js.map +1 -0
- package/lib/module/specs/RNMBXLineLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXLineLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXMapViewNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXMapViewNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXRasterDemSourceNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXRasterDemSourceNativeComponent.js.map +1 -0
- package/lib/module/specs/RNMBXRasterLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXRasterLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXRasterSourceNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXRasterSourceNativeComponent.js.map +1 -0
- package/lib/module/specs/RNMBXShapeSourceNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXShapeSourceNativeComponent.js.map +1 -0
- package/lib/module/specs/RNMBXSkyLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXSkyLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXSymbolLayerNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXSymbolLayerNativeComponent.js.map +1 -1
- package/lib/module/specs/RNMBXVectorSourceNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXVectorSourceNativeComponent.js.map +1 -0
- package/lib/module/utils/Logger.js +1 -2
- package/lib/module/utils/Logger.js.map +1 -1
- package/lib/typescript/jest.config.d.ts +4 -0
- package/lib/typescript/jest.config.d.ts.map +1 -0
- package/lib/typescript/src/Mapbox.d.ts.map +1 -0
- package/lib/typescript/src/RNMBXModule.d.ts.map +1 -0
- package/lib/typescript/src/components/AbstractLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/AbstractSource.d.ts.map +1 -0
- package/lib/typescript/src/components/Annotation.d.ts.map +1 -0
- package/lib/typescript/src/components/Atmosphere.d.ts.map +1 -0
- package/lib/typescript/src/components/BackgroundLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/Callout.d.ts.map +1 -0
- package/lib/typescript/src/components/Camera.d.ts.map +1 -0
- package/lib/typescript/src/components/CircleLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/FillExtrusionLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/FillLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/HeadingIndicator.d.ts.map +1 -0
- package/lib/typescript/src/components/HeatmapLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/Image.d.ts.map +1 -0
- package/lib/typescript/src/components/ImageSource.d.ts.map +1 -0
- package/lib/typescript/src/components/Images.d.ts.map +1 -0
- package/lib/typescript/src/components/Light.d.ts.map +1 -0
- package/lib/typescript/src/components/LineLayer.d.ts.map +1 -0
- package/lib/typescript/{components → src/components}/MapView.d.ts +64 -0
- package/lib/typescript/src/components/MapView.d.ts.map +1 -0
- package/lib/typescript/src/components/MarkerView.d.ts.map +1 -0
- package/lib/typescript/src/components/NativeBridgeComponent.d.ts.map +1 -0
- package/lib/typescript/src/components/NativeUserLocation.d.ts.map +1 -0
- package/lib/typescript/src/components/PointAnnotation.d.ts.map +1 -0
- package/lib/typescript/{components → src/components}/RasterDemSource.d.ts +0 -1
- package/lib/typescript/src/components/RasterDemSource.d.ts.map +1 -0
- package/lib/typescript/src/components/RasterLayer.d.ts.map +1 -0
- package/lib/typescript/{components → src/components}/RasterSource.d.ts +0 -1
- package/lib/typescript/src/components/RasterSource.d.ts.map +1 -0
- package/lib/typescript/{components → src/components}/ShapeSource.d.ts +2 -58
- package/lib/typescript/src/components/ShapeSource.d.ts.map +1 -0
- package/lib/typescript/src/components/SkyLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/Style.d.ts.map +1 -0
- package/lib/typescript/src/components/StyleImport.d.ts.map +1 -0
- package/lib/typescript/src/components/SymbolLayer.d.ts.map +1 -0
- package/lib/typescript/src/components/Terrain.d.ts.map +1 -0
- package/lib/typescript/src/components/UserLocation.d.ts.map +1 -0
- package/lib/typescript/src/components/VectorSource.d.ts +88 -0
- package/lib/typescript/src/components/VectorSource.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/modules/location/locationManager.d.ts.map +1 -0
- package/lib/typescript/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -0
- package/lib/typescript/src/modules/offline/OfflinePack.d.ts.map +1 -0
- package/lib/typescript/src/modules/offline/offlineManager.d.ts.map +1 -0
- package/lib/typescript/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -0
- package/lib/typescript/src/modules/snapshot/snapshotManager.d.ts.map +1 -0
- package/lib/typescript/src/requestAndroidLocationPermissions.d.ts.map +1 -0
- package/lib/typescript/src/specs/NativeMapViewModule.d.ts.map +1 -0
- package/lib/typescript/src/specs/NativeRNMBXShapeSourceModule.d.ts +11 -0
- package/lib/typescript/src/specs/NativeRNMBXShapeSourceModule.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXAndroidTextureMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXAtmosphereNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{specs → src/specs}/RNMBXBackgroundLayerNativeComponent.d.ts +7 -6
- package/lib/typescript/src/specs/RNMBXBackgroundLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{specs → src/specs}/RNMBXCameraNativeComponent.d.ts +12 -11
- package/lib/typescript/src/specs/RNMBXCameraNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXCircleLayerNativeComponent.d.ts +20 -0
- package/lib/typescript/src/specs/RNMBXCircleLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{specs → src/specs}/RNMBXFillExtrusionLayerNativeComponent.d.ts +10 -9
- package/lib/typescript/src/specs/RNMBXFillExtrusionLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXFillLayerNativeComponent.d.ts +20 -0
- package/lib/typescript/src/specs/RNMBXFillLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXHeatmapLayerNativeComponent.d.ts +20 -0
- package/lib/typescript/src/specs/RNMBXHeatmapLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXImageSourceNativeComponent.d.ts +11 -0
- package/lib/typescript/src/specs/RNMBXImageSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXLineLayerNativeComponent.d.ts +20 -0
- package/lib/typescript/src/specs/RNMBXLineLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{specs → src/specs}/RNMBXMapViewNativeComponent.d.ts +23 -15
- package/lib/typescript/src/specs/RNMBXMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXRasterDemSourceNativeComponent.d.ts +15 -0
- package/lib/typescript/src/specs/RNMBXRasterDemSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXRasterLayerNativeComponent.d.ts +20 -0
- package/lib/typescript/src/specs/RNMBXRasterLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXRasterSourceNativeComponent.d.ts +17 -0
- package/lib/typescript/src/specs/RNMBXRasterSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXShapeSourceNativeComponent.d.ts +29 -0
- package/lib/typescript/src/specs/RNMBXShapeSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXSkyLayerNativeComponent.d.ts +19 -0
- package/lib/typescript/src/specs/RNMBXSkyLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXStyleImportNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXSymbolLayerNativeComponent.d.ts +20 -0
- package/lib/typescript/src/specs/RNMBXSymbolLayerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/RNMBXVectorSourceNativeComponent.d.ts +23 -0
- package/lib/typescript/src/specs/RNMBXVectorSourceNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{specs → src/specs}/codegenUtils.d.ts +1 -0
- package/lib/typescript/src/specs/codegenUtils.d.ts.map +1 -0
- package/lib/typescript/src/types/BaseProps.d.ts.map +1 -0
- package/lib/typescript/src/types/OnPressEvent.d.ts.map +1 -0
- package/lib/typescript/src/types/Position.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/lib/typescript/src/utils/BridgeValue.d.ts.map +1 -0
- package/lib/typescript/src/utils/Logger.d.ts.map +1 -0
- package/lib/typescript/src/utils/StyleValue.d.ts.map +1 -0
- package/lib/typescript/src/utils/animated/Animated.d.ts.map +1 -0
- package/lib/typescript/src/utils/checkRequiredProps.d.ts.map +1 -0
- package/lib/typescript/src/utils/deprecation.d.ts.map +1 -0
- package/lib/typescript/src/utils/filterUtils.d.ts.map +1 -0
- package/lib/typescript/src/utils/geoUtils.d.ts.map +1 -0
- package/lib/typescript/src/utils/getAnnotationsLayerID.d.ts.map +1 -0
- package/lib/typescript/src/utils/index.d.ts.map +1 -0
- package/lib/typescript/src/utils/nativeRef.d.ts.map +1 -0
- package/lib/typescript/src/utils/styleMap.d.ts.map +1 -0
- package/lib/typescript/src/web/MapContext.d.ts.map +1 -0
- package/lib/typescript/src/web/components/Camera.d.ts.map +1 -0
- package/lib/typescript/src/web/components/MapView.d.ts.map +1 -0
- package/lib/typescript/src/web/utils/Logger.d.ts.map +1 -0
- package/package.json +10 -25
- package/plugin/build/withMapbox.d.ts +5 -4
- package/plugin/build/withMapbox.js +46 -19
- package/plugin/install.md +20 -0
- package/plugin/src/withMapbox.ts +79 -21
- package/rnmapbox-maps.podspec +3 -0
- package/setup-jest.js +25 -4
- package/src/components/ImageSource.tsx +4 -6
- package/src/components/MapView.tsx +66 -1
- package/src/components/RasterDemSource.tsx +5 -8
- package/src/components/RasterSource.tsx +5 -8
- package/src/components/ShapeSource.tsx +39 -86
- package/src/components/VectorSource.tsx +20 -44
- package/src/specs/NativeRNMBXShapeSourceModule.ts +23 -0
- package/src/specs/RNMBXBackgroundLayerNativeComponent.ts +9 -6
- package/src/specs/RNMBXCameraNativeComponent.ts +14 -11
- package/src/specs/RNMBXCircleLayerNativeComponent.ts +11 -8
- package/src/specs/RNMBXFillExtrusionLayerNativeComponent.ts +12 -9
- package/src/specs/RNMBXFillLayerNativeComponent.ts +11 -8
- package/src/specs/RNMBXHeatmapLayerNativeComponent.ts +12 -9
- package/src/specs/RNMBXImageSourceNativeComponent.ts +15 -0
- package/src/specs/RNMBXLineLayerNativeComponent.ts +11 -8
- package/src/specs/RNMBXMapViewNativeComponent.ts +27 -15
- package/src/specs/RNMBXRasterDemSourceNativeComponent.ts +19 -0
- package/src/specs/RNMBXRasterLayerNativeComponent.ts +12 -9
- package/src/specs/RNMBXRasterSourceNativeComponent.ts +21 -0
- package/src/specs/RNMBXShapeSourceNativeComponent.ts +35 -0
- package/src/specs/RNMBXSkyLayerNativeComponent.ts +12 -9
- package/src/specs/RNMBXSymbolLayerNativeComponent.ts +12 -9
- package/src/specs/RNMBXVectorSourceNativeComponent.ts +28 -0
- package/src/specs/codegenUtils.ts +5 -0
- package/ios/RNMBX/RNMBXShapeSourceManager.m +0 -45
- package/lib/typescript/Mapbox.d.ts.map +0 -1
- package/lib/typescript/RNMBXModule.d.ts.map +0 -1
- package/lib/typescript/components/AbstractLayer.d.ts.map +0 -1
- package/lib/typescript/components/AbstractSource.d.ts.map +0 -1
- package/lib/typescript/components/Annotation.d.ts.map +0 -1
- package/lib/typescript/components/Atmosphere.d.ts.map +0 -1
- package/lib/typescript/components/BackgroundLayer.d.ts.map +0 -1
- package/lib/typescript/components/Callout.d.ts.map +0 -1
- package/lib/typescript/components/Camera.d.ts.map +0 -1
- package/lib/typescript/components/CircleLayer.d.ts.map +0 -1
- package/lib/typescript/components/FillExtrusionLayer.d.ts.map +0 -1
- package/lib/typescript/components/FillLayer.d.ts.map +0 -1
- package/lib/typescript/components/HeadingIndicator.d.ts.map +0 -1
- package/lib/typescript/components/HeatmapLayer.d.ts.map +0 -1
- package/lib/typescript/components/Image.d.ts.map +0 -1
- package/lib/typescript/components/ImageSource.d.ts.map +0 -1
- package/lib/typescript/components/Images.d.ts.map +0 -1
- package/lib/typescript/components/Light.d.ts.map +0 -1
- package/lib/typescript/components/LineLayer.d.ts.map +0 -1
- package/lib/typescript/components/MapView.d.ts.map +0 -1
- package/lib/typescript/components/MarkerView.d.ts.map +0 -1
- package/lib/typescript/components/NativeBridgeComponent.d.ts.map +0 -1
- package/lib/typescript/components/NativeUserLocation.d.ts.map +0 -1
- package/lib/typescript/components/PointAnnotation.d.ts.map +0 -1
- package/lib/typescript/components/RasterDemSource.d.ts.map +0 -1
- package/lib/typescript/components/RasterLayer.d.ts.map +0 -1
- package/lib/typescript/components/RasterSource.d.ts.map +0 -1
- package/lib/typescript/components/ShapeSource.d.ts.map +0 -1
- package/lib/typescript/components/SkyLayer.d.ts.map +0 -1
- package/lib/typescript/components/Style.d.ts.map +0 -1
- package/lib/typescript/components/StyleImport.d.ts.map +0 -1
- package/lib/typescript/components/SymbolLayer.d.ts.map +0 -1
- package/lib/typescript/components/Terrain.d.ts.map +0 -1
- package/lib/typescript/components/UserLocation.d.ts.map +0 -1
- package/lib/typescript/components/VectorSource.d.ts +0 -149
- package/lib/typescript/components/VectorSource.d.ts.map +0 -1
- package/lib/typescript/index.d.ts.map +0 -1
- package/lib/typescript/modules/location/locationManager.d.ts.map +0 -1
- package/lib/typescript/modules/offline/OfflineCreatePackOptions.d.ts.map +0 -1
- package/lib/typescript/modules/offline/OfflinePack.d.ts.map +0 -1
- package/lib/typescript/modules/offline/offlineManager.d.ts.map +0 -1
- package/lib/typescript/modules/snapshot/SnapshotOptions.d.ts.map +0 -1
- package/lib/typescript/modules/snapshot/snapshotManager.d.ts.map +0 -1
- package/lib/typescript/requestAndroidLocationPermissions.d.ts.map +0 -1
- package/lib/typescript/specs/NativeMapViewModule.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXAndroidTextureMapViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXAtmosphereNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXBackgroundLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXCameraNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXCircleLayerNativeComponent.d.ts +0 -19
- package/lib/typescript/specs/RNMBXCircleLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXFillExtrusionLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXFillLayerNativeComponent.d.ts +0 -19
- package/lib/typescript/specs/RNMBXFillLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXHeatmapLayerNativeComponent.d.ts +0 -19
- package/lib/typescript/specs/RNMBXHeatmapLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXLineLayerNativeComponent.d.ts +0 -19
- package/lib/typescript/specs/RNMBXLineLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXMapViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXRasterLayerNativeComponent.d.ts +0 -19
- package/lib/typescript/specs/RNMBXRasterLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXSkyLayerNativeComponent.d.ts +0 -18
- package/lib/typescript/specs/RNMBXSkyLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXStyleImportNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/RNMBXSymbolLayerNativeComponent.d.ts +0 -19
- package/lib/typescript/specs/RNMBXSymbolLayerNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/codegenUtils.d.ts.map +0 -1
- package/lib/typescript/types/BaseProps.d.ts.map +0 -1
- package/lib/typescript/types/OnPressEvent.d.ts.map +0 -1
- package/lib/typescript/types/Position.d.ts.map +0 -1
- package/lib/typescript/types/index.d.ts.map +0 -1
- package/lib/typescript/utils/BridgeValue.d.ts.map +0 -1
- package/lib/typescript/utils/Logger.d.ts.map +0 -1
- package/lib/typescript/utils/StyleValue.d.ts.map +0 -1
- package/lib/typescript/utils/animated/Animated.d.ts.map +0 -1
- package/lib/typescript/utils/checkRequiredProps.d.ts.map +0 -1
- package/lib/typescript/utils/deprecation.d.ts.map +0 -1
- package/lib/typescript/utils/filterUtils.d.ts.map +0 -1
- package/lib/typescript/utils/geoUtils.d.ts.map +0 -1
- package/lib/typescript/utils/getAnnotationsLayerID.d.ts.map +0 -1
- package/lib/typescript/utils/index.d.ts.map +0 -1
- package/lib/typescript/utils/nativeRef.d.ts.map +0 -1
- package/lib/typescript/utils/styleMap.d.ts.map +0 -1
- package/lib/typescript/web/MapContext.d.ts.map +0 -1
- package/lib/typescript/web/components/Camera.d.ts.map +0 -1
- package/lib/typescript/web/components/MapView.d.ts.map +0 -1
- package/lib/typescript/web/utils/Logger.d.ts.map +0 -1
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/Annotation.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/Event.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/Feature.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/HttpInterceptor.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/Image.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/Light.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/Location.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/MapboxMap.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/OfflineManager.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/OrnamentSettings.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/ResourceOption.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/Snapshot.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v10/com/{mapbox → rnmapbox}/rnmbx/v11compat/style.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/Annotation.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/Event.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/Feature.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/HttpInterceptor.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/Light.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/Location.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/MapboxMap.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/OfflineManager.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/OrnamentSettings.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/ResourceOption.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/Snapshot.kt +0 -0
- /package/android/src/main/mapbox-v11-compat/v11/com/{mapbox → rnmapbox}/rnmbx/v11compat/style.kt +0 -0
- /package/lib/typescript/{Mapbox.d.ts → src/Mapbox.d.ts} +0 -0
- /package/lib/typescript/{RNMBXModule.d.ts → src/RNMBXModule.d.ts} +0 -0
- /package/lib/typescript/{components → src/components}/AbstractLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/AbstractSource.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Annotation.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Atmosphere.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/BackgroundLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Callout.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Camera.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/CircleLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/FillExtrusionLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/FillLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/HeadingIndicator.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/HeatmapLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Image.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/ImageSource.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Images.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Light.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/LineLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/MarkerView.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/NativeBridgeComponent.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/NativeUserLocation.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/PointAnnotation.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/RasterLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/SkyLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Style.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/StyleImport.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/SymbolLayer.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/Terrain.d.ts +0 -0
- /package/lib/typescript/{components → src/components}/UserLocation.d.ts +0 -0
- /package/lib/typescript/{index.d.ts → src/index.d.ts} +0 -0
- /package/lib/typescript/{modules → src/modules}/location/locationManager.d.ts +0 -0
- /package/lib/typescript/{modules → src/modules}/offline/OfflineCreatePackOptions.d.ts +0 -0
- /package/lib/typescript/{modules → src/modules}/offline/OfflinePack.d.ts +0 -0
- /package/lib/typescript/{modules → src/modules}/offline/offlineManager.d.ts +0 -0
- /package/lib/typescript/{modules → src/modules}/snapshot/SnapshotOptions.d.ts +0 -0
- /package/lib/typescript/{modules → src/modules}/snapshot/snapshotManager.d.ts +0 -0
- /package/lib/typescript/{requestAndroidLocationPermissions.d.ts → src/requestAndroidLocationPermissions.d.ts} +0 -0
- /package/lib/typescript/{specs → src/specs}/NativeMapViewModule.d.ts +0 -0
- /package/lib/typescript/{specs → src/specs}/RNMBXAndroidTextureMapViewNativeComponent.d.ts +0 -0
- /package/lib/typescript/{specs → src/specs}/RNMBXAtmosphereNativeComponent.d.ts +0 -0
- /package/lib/typescript/{specs → src/specs}/RNMBXStyleImportNativeComponent.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/BaseProps.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/OnPressEvent.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/Position.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/index.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/BridgeValue.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/Logger.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/StyleValue.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/animated/Animated.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/checkRequiredProps.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/deprecation.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/filterUtils.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/geoUtils.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/getAnnotationsLayerID.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/index.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/nativeRef.d.ts +0 -0
- /package/lib/typescript/{utils → src/utils}/styleMap.d.ts +0 -0
- /package/lib/typescript/{web → src/web}/MapContext.d.ts +0 -0
- /package/lib/typescript/{web → src/web}/components/Camera.d.ts +0 -0
- /package/lib/typescript/{web → src/web}/components/MapView.d.ts +0 -0
- /package/lib/typescript/{web → src/web}/utils/Logger.d.ts +0 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|