@rnmapbox/maps 10.1.0-beta.2 → 10.1.0-beta.5
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/CHANGELOG.md +6 -6
- package/README.md +3 -9
- package/android/build.gradle +19 -36
- package/android/install.md +11 -116
- package/android/src/main/AndroidManifest.xml +1 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/RNMBXPackage.java +215 -0
- package/android/src/main/{java-mapboxgl/common/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/AbstractEvent.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/AbstractEventEmitter.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/AbstractMapFeature.kt +7 -7
- package/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.kt +6 -0
- package/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.java +18 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerView.kt → java/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.kt} +10 -10
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerViewManager.kt → java/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.kt} +14 -14
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotation.kt → java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.kt} +21 -19
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotationManager.java → java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.java} +14 -14
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/CameraStop.kt +10 -10
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/CameraUpdateItem.kt +22 -21
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/CameraUpdateQueue.kt +10 -10
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/camera/RCTMGLCamera.kt → java/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.kt} +21 -22
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/camera/RCTMGLCameraManager.kt → java/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.kt} +22 -22
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/constants/CameraMode.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/images/RCTMGLImage.kt → java/com/rnmapbox/rnmbx/components/images/RNMBXImage.kt} +15 -13
- package/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.kt +67 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/images/RCTMGLImages.kt → java/com/rnmapbox/rnmbx/components/images/RNMBXImages.kt} +19 -17
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/images/RCTMGLImagesManager.kt → java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt} +37 -37
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/CameraMode.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/LocationComponentManager.kt +18 -16
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.kt → java/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.kt} +14 -12
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocationManager.kt → java/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.kt} +7 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/UserLocation.java +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/UserTrackingMode.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/mapview/NativeMapViewModule.kt +10 -10
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/mapview/OnMapReadyCallback.java +1 -1
- package/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXAndroidTextureMapViewManager.kt +37 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.kt → java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt} +71 -145
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.kt → java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt} +61 -61
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/mapview/helpers/CameraChangeTracker.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyle.kt → java/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.kt} +17 -14
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.kt +3669 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.kt → java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt} +15 -9
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/atmosphere/RCTMGLAtmosphere.kt → java/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.kt} +20 -16
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/atmosphere/RCTMGLAtmosphereManager.kt → java/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.kt} +7 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/styles/layers/RCTLayer.kt +14 -14
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.kt +26 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.kt} +14 -14
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.kt} +13 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.kt} +16 -16
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.kt} +15 -10
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.kt} +16 -16
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.kt} +13 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSkyLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.kt} +20 -20
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.kt} +15 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.kt} +16 -16
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.kt} +12 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.kt} +20 -20
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.kt +23 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.kt} +14 -14
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.kt +43 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.kt} +16 -16
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.kt} +15 -7
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.kt +76 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/light/RCTMGLLight.kt → java/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.kt} +13 -13
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/light/RCTMGLLightManager.java → java/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.java} +6 -6
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/styles/sources/AbstractSourceConsumer.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/styles/sources/RCTSource.kt +12 -12
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.kt} +4 -4
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.kt} +13 -13
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterDemSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.kt} +11 -9
- package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.kt +30 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.kt} +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.kt} +7 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.kt} +12 -10
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt} +30 -30
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.kt} +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt} +3 -3
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.kt} +8 -6
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.kt} +12 -12
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/terrain/RCTMGLTerrain.kt → java/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.kt} +17 -15
- package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/terrain/RCTMGLTerrainManager.kt → java/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.kt} +8 -8
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/AbstractEvent.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/AndroidCallbackEvent.java +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/EventEmitter.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/FeatureClickEvent.java +7 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/IEvent.kt +1 -1
- package/android/src/main/{java-mapboxgl/common/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/ImageMissingEvent.java +3 -3
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/LocationEvent.kt +19 -11
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/MapChangeEvent.kt +3 -3
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/MapClickEvent.java +5 -5
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/MapUserTrackingModeEvent.kt +4 -4
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/OfflineEvent.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/PointAnnotationClickEvent.java +9 -9
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/PointAnnotationDragEvent.java +9 -9
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/constants/EventKeys.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/constants/EventTypes.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/location/LocationManager.kt +24 -33
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/location/UserTrackingState.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/modules/CustomHttpHeaders.kt +10 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLLocationModule.kt → java/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.kt} +12 -13
- package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLLogging.kt → java/com/rnmapbox/rnmbx/modules/RNMBXLogging.kt} +7 -7
- package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLModule.kt → java/com/rnmapbox/rnmbx/modules/RNMBXModule.kt} +16 -17
- package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.kt → java/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.kt} +19 -17
- package/android/src/main/java/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.kt +124 -0
- package/android/src/main/java/com/rnmapbox/rnmbx/utils/BitmapUtils.kt +174 -0
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ConvertUtils.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/DownloadMapImageTask.kt +6 -6
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ExpressionParser.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/GeoJSONUtils.kt +5 -5
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ImageEntry.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/LatLng.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/LatLngBounds.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/LatLngQuad.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/Logger.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ReadableMapToValue.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ResourceUtils.java +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/CoordinateBounds.kt +3 -3
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/FeatureCollection.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/Geometry.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/JSONObject.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/Point.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/ReadableArray.kt +2 -2
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/ReadableMap.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/Value.kt +1 -1
- package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/writeableMapArrayOf.kt +1 -1
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Annotation.kt +4 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Event.kt +17 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Feature.kt +10 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/HttpInterceptor.kt +22 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Image.kt +29 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Light.kt +15 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Location.kt +54 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/MapboxMap.kt +31 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/OfflineManager.kt +19 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/OrnamentSettings.kt +96 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/ResourceOption.kt +12 -0
- package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Snapshot.kt +28 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Annotation.kt +4 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Event.kt +342 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Feature.kt +16 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/HttpInterceptor.kt +21 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Image.kt +40 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Light.kt +15 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Location.kt +58 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/MapboxMap.kt +37 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/OfflineManager.kt +12 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/OrnamentSettings.kt +96 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/ResourceOption.kt +14 -0
- package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Snapshot.kt +22 -0
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXAndroidTextureMapViewManagerDelegate.java → RNMBXAndroidTextureMapViewManagerDelegate.java} +3 -3
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXAndroidTextureMapViewManagerInterface.java → RNMBXAndroidTextureMapViewManagerInterface.java} +2 -2
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXMapViewManagerDelegate.java → RNMBXMapViewManagerDelegate.java} +2 -2
- package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXMapViewManagerInterface.java → RNMBXMapViewManagerInterface.java} +1 -1
- package/android/src/main/old-arch/com/mapbox/{rctmgl → rnmbx}/NativeMapViewModuleSpec.java +2 -2
- package/android/src/main/res/values/strings.xml +1 -1
- package/ios/{RCTMGL-v10 → RNMBX}/Extensions/CLLocationCoordinate2D+validate.swift +1 -1
- package/ios/{RCTMGL-v10 → RNMBX}/Extensions/Encodable+ToJSON.swift +1 -1
- package/ios/RNMBX/RCTLog.swift +19 -0
- package/ios/{RCTMGL-v10 → RNMBX}/RCTSwiftLog.h +1 -1
- package/ios/{RCTMGL-v10 → RNMBX}/RCTSwiftLog.m +1 -1
- package/ios/{RCTMGL-v10 → RNMBX}/RNMBImageUtils.swift +1 -1
- package/ios/{RCTMGL-v10/RCTMGLAtmosphere.swift → RNMBX/RNMBXAtmosphere.swift} +7 -7
- package/ios/{RCTMGL-v10/RCTMGLAtmosphereManager.m → RNMBX/RNMBXAtmosphereManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLAtmosphereManager.swift → RNMBX/RNMBXAtmosphereManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLBackgroundLayer.swift → RNMBX/RNMBXBackgroundLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLBackgroundLayerManager.m → RNMBX/RNMBXBackgroundLayerManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLHeatmapLayetManager.swift → RNMBX/RNMBXBackgroundLayerManager.swift} +3 -3
- package/ios/RNMBX/RNMBXCallout.swift +3 -0
- package/ios/{RCTMGL-v10/RCTMGLCalloutManager.m → RNMBX/RNMBXCalloutManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLCameraManager.swift → RNMBX/RNMBXCalloutManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLCamera.swift → RNMBX/RNMBXCamera.swift} +32 -32
- package/ios/{RCTMGL-v10/RCTMGLCameraManager.m → RNMBX/RNMBXCameraManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLCalloutManager.swift → RNMBX/RNMBXCameraManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLCircleLayer.swift → RNMBX/RNMBXCircleLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLHeatmapLayerManager.m → RNMBX/RNMBXCircleLayerManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLCircleLayerManager.swift → RNMBX/RNMBXCircleLayerManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLEvent.swift → RNMBX/RNMBXEvent.swift} +2 -2
- package/ios/{RCTMGL-v10/RCTMGLFeatureUtils.swift → RNMBX/RNMBXFeatureUtils.swift} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLFillExtrusionLayerManager.m → RNMBX/RNMBXFillExtrusionLayerManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLBackgroundLayerManager.swift → RNMBX/RNMBXFillExtrusionLayerManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLFillExtrustionLayer.swift → RNMBX/RNMBXFillExtrustionLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLFillLayer.swift → RNMBX/RNMBXFillLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLLineLayerManager.m → RNMBX/RNMBXFillLayerManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLSkyLayerManager.swift → RNMBX/RNMBXFillLayerManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLHeatmapLayer.swift → RNMBX/RNMBXHeatmapLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLCircleLayerManager.m → RNMBX/RNMBXHeatmapLayerManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLRasterLayerManager.swift → RNMBX/RNMBXHeatmapLayetManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCMTGLImage.swift → RNMBX/RNMBXImage.swift} +3 -3
- package/ios/{RCTMGL-v10/RCMTGLImageManager.m → RNMBX/RNMBXImageManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCMTGLImageManager.swift → RNMBX/RNMBXImageManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLImageQueue.swift → RNMBX/RNMBXImageQueue.swift} +7 -7
- package/ios/{RCTMGL-v10/RCTMGLImageSource.swift → RNMBX/RNMBXImageSource.swift} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLImageSourceManager.m → RNMBX/RNMBXImageSourceManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLImageSourceManager.swift → RNMBX/RNMBXImageSourceManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLImages.swift → RNMBX/RNMBXImages.swift} +25 -25
- package/ios/{RCTMGL-v10/RCTMGLImagesManager.m → RNMBX/RNMBXImagesManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLImagesManager.swift → RNMBX/RNMBXImagesManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLInteractiveElement.swift → RNMBX/RNMBXInteractiveElement.swift} +5 -5
- package/ios/{RCTMGL-v10/RCTMGLLayer.swift → RNMBX/RNMBXLayer.swift} +15 -15
- package/ios/{RCTMGL-v10/RCTMGLLight.swift → RNMBX/RNMBXLight.swift} +7 -7
- package/ios/{RCTMGL-v10/RCTMGLLightManager.m → RNMBX/RNMBXLightManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLLightManager.swift → RNMBX/RNMBXLightManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLLineLayer.swift → RNMBX/RNMBXLineLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLFillLayerManager.m → RNMBX/RNMBXLineLayerManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLFillLayerManager.swift → RNMBX/RNMBXLineLayerManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLLocationModule.m → RNMBX/RNMBXLocationModule.m} +2 -2
- package/ios/{RCTMGL-v10/RCTMGLLocationModule.swift → RNMBX/RNMBXLocationModule.swift} +41 -41
- package/ios/{RCTMGL-v10/RCTMGLLocationModuleV11.swift → RNMBX/RNMBXLocationModuleV11.swift} +5 -5
- package/ios/{RCTMGL-v10/RCTMGLLogging.m → RNMBX/RNMBXLogging.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLLogging.swift → RNMBX/RNMBXLogging.swift} +7 -7
- package/ios/{RCTMGL-v10/RCTMGLMapView.swift → RNMBX/RNMBXMapView.swift} +69 -69
- package/ios/{RCTMGL-v10/MBXMapViewComponentView.h → RNMBX/RNMBXMapViewComponentView.h} +1 -1
- package/ios/{RCTMGL-v10/MBXMapViewComponentView.mm → RNMBX/RNMBXMapViewComponentView.mm} +26 -26
- package/ios/{RCTMGL-v10/MBXMapViewManager.m → RNMBX/RNMBXMapViewManager.m} +1 -1
- package/ios/{RCTMGL-v10/MBXMapViewManager.swift → RNMBX/RNMBXMapViewManager.swift} +23 -23
- package/ios/{RCTMGL-v10/MBXMapViewModule.h → RNMBX/RNMBXMapViewModule.h} +1 -1
- package/ios/{RCTMGL-v10/MBXMapViewModule.mm → RNMBX/RNMBXMapViewModule.mm} +39 -46
- package/ios/{RCTMGL-v10/RCTMGLMarkerView.swift → RNMBX/RNMBXMarkerView.swift} +14 -14
- package/ios/{RCTMGL-v10/RCTMGLMarkerViewManager.m → RNMBX/RNMBXMarkerViewManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLMarkerViewManager.swift → RNMBX/RNMBXMarkerViewManager.swift} +3 -3
- package/ios/{RCTMGL-v10/MGLModule.m → RNMBX/RNMBXModule.m} +1 -1
- package/ios/{RCTMGL-v10/MGLModule.swift → RNMBX/RNMBXModule.swift} +19 -19
- package/ios/{RCTMGL-v10/RCTMGLNativeUserLocation.swift → RNMBX/RNMBXNativeUserLocation.swift} +5 -5
- package/ios/{RCTMGL-v10/RCTMGLNativeUserLocationManager.m → RNMBX/RNMBXNativeUserLocationManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLNativeUserLocationManager.swift → RNMBX/RNMBXNativeUserLocationManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLOfflineModule.m → RNMBX/RNMBXOfflineModule.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLOfflineModule.swift → RNMBX/RNMBXOfflineModule.swift} +32 -32
- package/ios/{RCTMGL-v10/RCTMGLPointAnnotation.swift → RNMBX/RNMBXPointAnnotation.swift} +13 -13
- package/ios/{RCTMGL-v10/RCTMGLPointAnnotationManager.m → RNMBX/RNMBXPointAnnotationManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLPointAnnotationManager.swift → RNMBX/RNMBXPointAnnotationManager.swift} +5 -5
- package/ios/{RCTMGL-v10/RCTMGLRasterDemSource.swift → RNMBX/RNMBXRasterDemSource.swift} +2 -2
- package/ios/{RCTMGL-v10/RCTMGLRasterDemSourceManager.m → RNMBX/RNMBXRasterDemSourceManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLRasterDemSourceManager.swift → RNMBX/RNMBXRasterDemSourceManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLRasterLayer.swift → RNMBX/RNMBXRasterLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLRasterLayerManager.m → RNMBX/RNMBXRasterLayerManager.m} +1 -1
- package/ios/RNMBX/RNMBXRasterLayerManager.swift +13 -0
- package/ios/{RCTMGL-v10/RCTMGLRasterSource.swift → RNMBX/RNMBXRasterSource.swift} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLRasterSourceManager.m → RNMBX/RNMBXRasterSourceManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLRasterSourceManager.swift → RNMBX/RNMBXRasterSourceManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLShapeSource.swift → RNMBX/RNMBXShapeSource.swift} +21 -21
- package/ios/{RCTMGL-v10/RCTMGLShapeSourceManager.m → RNMBX/RNMBXShapeSourceManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLShapeSourceManager.swift → RNMBX/RNMBXShapeSourceManager.swift} +8 -8
- package/ios/{RCTMGL-v10/RCTMGLSingletonLayer.swift → RNMBX/RNMBXSingletonLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLSkyLayer.swift → RNMBX/RNMBXSkyLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLSkyLayerManager.m → RNMBX/RNMBXSkyLayerManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLLineLayerManager.swift → RNMBX/RNMBXSkyLayerManager.swift} +3 -3
- package/ios/{RCTMGL-v10/MGLSnapshotModule.m → RNMBX/RNMBXSnapshotModule.m} +1 -1
- package/ios/{RCTMGL-v10/MGLSnapshotModule.swift → RNMBX/RNMBXSnapshotModule.swift} +14 -14
- package/ios/{RCTMGL-v10/RCTMGLSource.swift → RNMBX/RNMBXSource.swift} +11 -11
- package/ios/{RCTMGL-v10/RCTMGLStyle.swift → RNMBX/RNMBXStyle.swift} +227 -227
- package/ios/{RCTMGL-v10/RCTMGLStyleValue.swift → RNMBX/RNMBXStyleValue.swift} +18 -18
- package/ios/{RCTMGL-v10/RCTMGLSymbolLayer.swift → RNMBX/RNMBXSymbolLayer.swift} +4 -4
- package/ios/{RCTMGL-v10/RCTMGLSymbolLayerManager.m → RNMBX/RNMBXSymbolLayerManager.m} +1 -1
- package/ios/RNMBX/RNMBXSymbolLayerManager.swift +13 -0
- package/ios/{RCTMGL-v10/RCTMGLTerrain.swift → RNMBX/RNMBXTerrain.swift} +7 -7
- package/ios/{RCTMGL-v10/RCTMGLTerrainManager.m → RNMBX/RNMBXTerrainManager.m} +2 -2
- package/ios/{RCTMGL-v10/RCTMGLTerrainManager.swift → RNMBX/RNMBXTerrainManager.swift} +3 -3
- package/ios/{RCTMGL-v10/RCTMGLTileSource.swift → RNMBX/RNMBXTileSource.swift} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLUtils.swift → RNMBX/RNMBXUtils.swift} +8 -8
- package/ios/{RCTMGL-v10/RCTMGLVectorLayer.m → RNMBX/RNMBXVectorLayer.m} +4 -4
- package/ios/RNMBX/RNMBXVectorLayer.swift +5 -0
- package/ios/{RCTMGL-v10/RCTMGLVectorSource.swift → RNMBX/RNMBXVectorSource.swift} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLVectorSourceManager.m → RNMBX/RNMBXVectorSourceManager.m} +1 -1
- package/ios/{RCTMGL-v10/RCTMGLVectorSourceManager.swift → RNMBX/RNMBXVectorSourceManager.swift} +3 -3
- package/ios/install.md +28 -39
- package/lib/commonjs/Mapbox.js +4 -4
- package/lib/commonjs/Mapbox.js.map +1 -1
- package/lib/commonjs/{MGLModule.js → RNMBXModule.js} +4 -4
- package/lib/commonjs/RNMBXModule.js.map +1 -0
- package/lib/commonjs/components/Atmosphere.js +3 -3
- package/lib/commonjs/components/Atmosphere.js.map +1 -1
- package/lib/commonjs/components/BackgroundLayer.js +4 -4
- package/lib/commonjs/components/BackgroundLayer.js.map +1 -1
- package/lib/commonjs/components/Callout.js +3 -3
- package/lib/commonjs/components/Callout.js.map +1 -1
- package/lib/commonjs/components/Camera.js +4 -4
- package/lib/commonjs/components/Camera.js.map +1 -1
- package/lib/commonjs/components/CircleLayer.js +4 -4
- package/lib/commonjs/components/CircleLayer.js.map +1 -1
- package/lib/commonjs/components/FillExtrusionLayer.js +4 -4
- package/lib/commonjs/components/FillExtrusionLayer.js.map +1 -1
- package/lib/commonjs/components/FillLayer.js +4 -4
- package/lib/commonjs/components/FillLayer.js.map +1 -1
- package/lib/commonjs/components/HeatmapLayer.js +4 -4
- package/lib/commonjs/components/HeatmapLayer.js.map +1 -1
- package/lib/commonjs/components/Image.js +3 -3
- package/lib/commonjs/components/Image.js.map +1 -1
- package/lib/commonjs/components/ImageSource.js +3 -3
- package/lib/commonjs/components/ImageSource.js.map +1 -1
- package/lib/commonjs/components/Images.js +3 -3
- package/lib/commonjs/components/Images.js.map +1 -1
- package/lib/commonjs/components/Light.js +4 -4
- package/lib/commonjs/components/Light.js.map +1 -1
- package/lib/commonjs/components/LineLayer.js +4 -4
- package/lib/commonjs/components/LineLayer.js.map +1 -1
- package/lib/commonjs/components/MapView.js +19 -19
- package/lib/commonjs/components/MapView.js.map +1 -1
- package/lib/commonjs/components/MarkerView.js +4 -4
- package/lib/commonjs/components/MarkerView.js.map +1 -1
- package/lib/commonjs/components/NativeUserLocation.js +3 -3
- package/lib/commonjs/components/NativeUserLocation.js.map +1 -1
- package/lib/commonjs/components/PointAnnotation.js +3 -3
- package/lib/commonjs/components/PointAnnotation.js.map +1 -1
- package/lib/commonjs/components/RasterDemSource.js +4 -4
- package/lib/commonjs/components/RasterDemSource.js.map +1 -1
- package/lib/commonjs/components/RasterLayer.js +4 -4
- package/lib/commonjs/components/RasterLayer.js.map +1 -1
- package/lib/commonjs/components/RasterSource.js +4 -4
- package/lib/commonjs/components/RasterSource.js.map +1 -1
- package/lib/commonjs/components/ShapeSource.js +4 -4
- package/lib/commonjs/components/ShapeSource.js.map +1 -1
- package/lib/commonjs/components/SkyLayer.js +4 -4
- package/lib/commonjs/components/SkyLayer.js.map +1 -1
- package/lib/commonjs/components/SymbolLayer.js +4 -4
- package/lib/commonjs/components/SymbolLayer.js.map +1 -1
- package/lib/commonjs/components/Terrain.js +3 -3
- package/lib/commonjs/components/Terrain.js.map +1 -1
- package/lib/commonjs/components/VectorSource.js +4 -4
- package/lib/commonjs/components/VectorSource.js.map +1 -1
- package/lib/commonjs/modules/location/locationManager.js +2 -2
- package/lib/commonjs/modules/location/locationManager.js.map +1 -1
- package/lib/commonjs/modules/offline/OfflinePack.js +1 -1
- package/lib/commonjs/modules/offline/OfflinePack.js.map +1 -1
- package/lib/commonjs/modules/offline/offlineManager.js +7 -7
- package/lib/commonjs/modules/offline/offlineManager.js.map +1 -1
- package/lib/commonjs/modules/snapshot/SnapshotOptions.js +1 -1
- package/lib/commonjs/modules/snapshot/SnapshotOptions.js.map +1 -1
- package/lib/commonjs/modules/snapshot/snapshotManager.js +1 -1
- package/lib/commonjs/modules/snapshot/snapshotManager.js.map +1 -1
- package/lib/commonjs/specs/NativeMapViewModule.js +1 -1
- package/lib/commonjs/specs/NativeMapViewModule.js.map +1 -1
- package/lib/commonjs/specs/{MBXAndroidTextureMapViewNativeComponent.js → RNMBXAndroidTextureMapViewNativeComponent.js} +2 -2
- package/lib/commonjs/specs/RNMBXAndroidTextureMapViewNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/{MBXMapViewNativeComponent.js → RNMBXMapViewNativeComponent.js} +2 -2
- package/lib/commonjs/specs/RNMBXMapViewNativeComponent.js.map +1 -0
- package/lib/commonjs/utils/Logger.js +3 -3
- package/lib/commonjs/utils/Logger.js.map +1 -1
- package/lib/commonjs/utils/getAnnotationsLayerID.js +3 -3
- package/lib/commonjs/utils/getAnnotationsLayerID.js.map +1 -1
- package/lib/commonjs/utils/nativeRef.js +6 -6
- package/lib/module/Mapbox.js +1 -1
- package/lib/module/Mapbox.js.map +1 -1
- package/lib/module/{MGLModule.js → RNMBXModule.js} +4 -4
- package/lib/module/RNMBXModule.js.map +1 -0
- package/lib/module/components/Atmosphere.js +3 -3
- package/lib/module/components/Atmosphere.js.map +1 -1
- package/lib/module/components/BackgroundLayer.js +4 -4
- package/lib/module/components/BackgroundLayer.js.map +1 -1
- package/lib/module/components/Callout.js +3 -3
- package/lib/module/components/Callout.js.map +1 -1
- package/lib/module/components/Camera.js +4 -4
- package/lib/module/components/Camera.js.map +1 -1
- package/lib/module/components/CircleLayer.js +4 -4
- package/lib/module/components/CircleLayer.js.map +1 -1
- package/lib/module/components/FillExtrusionLayer.js +4 -4
- package/lib/module/components/FillExtrusionLayer.js.map +1 -1
- package/lib/module/components/FillLayer.js +4 -4
- package/lib/module/components/FillLayer.js.map +1 -1
- package/lib/module/components/HeatmapLayer.js +4 -4
- package/lib/module/components/HeatmapLayer.js.map +1 -1
- package/lib/module/components/Image.js +3 -3
- package/lib/module/components/Image.js.map +1 -1
- package/lib/module/components/ImageSource.js +3 -3
- package/lib/module/components/ImageSource.js.map +1 -1
- package/lib/module/components/Images.js +3 -3
- package/lib/module/components/Images.js.map +1 -1
- package/lib/module/components/Light.js +4 -4
- package/lib/module/components/Light.js.map +1 -1
- package/lib/module/components/LineLayer.js +4 -4
- package/lib/module/components/LineLayer.js.map +1 -1
- package/lib/module/components/MapView.js +19 -19
- package/lib/module/components/MapView.js.map +1 -1
- package/lib/module/components/MarkerView.js +4 -4
- package/lib/module/components/MarkerView.js.map +1 -1
- package/lib/module/components/NativeUserLocation.js +3 -3
- package/lib/module/components/NativeUserLocation.js.map +1 -1
- package/lib/module/components/PointAnnotation.js +3 -3
- package/lib/module/components/PointAnnotation.js.map +1 -1
- package/lib/module/components/RasterDemSource.js +4 -4
- package/lib/module/components/RasterDemSource.js.map +1 -1
- package/lib/module/components/RasterLayer.js +4 -4
- package/lib/module/components/RasterLayer.js.map +1 -1
- package/lib/module/components/RasterSource.js +4 -4
- package/lib/module/components/RasterSource.js.map +1 -1
- package/lib/module/components/ShapeSource.js +4 -4
- package/lib/module/components/ShapeSource.js.map +1 -1
- package/lib/module/components/SkyLayer.js +4 -4
- package/lib/module/components/SkyLayer.js.map +1 -1
- package/lib/module/components/SymbolLayer.js +4 -4
- package/lib/module/components/SymbolLayer.js.map +1 -1
- package/lib/module/components/Terrain.js +3 -3
- package/lib/module/components/Terrain.js.map +1 -1
- package/lib/module/components/VectorSource.js +4 -4
- package/lib/module/components/VectorSource.js.map +1 -1
- package/lib/module/modules/location/locationManager.js +2 -2
- package/lib/module/modules/location/locationManager.js.map +1 -1
- package/lib/module/modules/offline/OfflinePack.js +1 -1
- package/lib/module/modules/offline/OfflinePack.js.map +1 -1
- package/lib/module/modules/offline/offlineManager.js +7 -7
- package/lib/module/modules/offline/offlineManager.js.map +1 -1
- package/lib/module/modules/snapshot/SnapshotOptions.js +1 -1
- package/lib/module/modules/snapshot/SnapshotOptions.js.map +1 -1
- package/lib/module/modules/snapshot/snapshotManager.js +1 -1
- package/lib/module/modules/snapshot/snapshotManager.js.map +1 -1
- package/lib/module/specs/NativeMapViewModule.js +1 -1
- package/lib/module/specs/NativeMapViewModule.js.map +1 -1
- package/lib/module/specs/RNMBXAndroidTextureMapViewNativeComponent.js +5 -0
- package/lib/module/specs/RNMBXAndroidTextureMapViewNativeComponent.js.map +1 -0
- package/lib/module/specs/RNMBXMapViewNativeComponent.js +3 -0
- package/lib/module/specs/RNMBXMapViewNativeComponent.js.map +1 -0
- package/lib/module/utils/Logger.js +3 -3
- package/lib/module/utils/Logger.js.map +1 -1
- package/lib/module/utils/getAnnotationsLayerID.js +3 -3
- package/lib/module/utils/getAnnotationsLayerID.js.map +1 -1
- package/lib/module/utils/nativeRef.js +6 -6
- package/lib/typescript/Mapbox.d.ts +1 -1
- package/lib/typescript/Mapbox.d.ts.map +1 -1
- package/lib/typescript/{MGLModule.d.ts → RNMBXModule.d.ts} +1 -1
- package/lib/typescript/RNMBXModule.d.ts.map +1 -0
- package/lib/typescript/components/Atmosphere.d.ts +1 -1
- package/lib/typescript/components/Atmosphere.d.ts.map +1 -1
- package/lib/typescript/components/BackgroundLayer.d.ts +1 -1
- package/lib/typescript/components/BackgroundLayer.d.ts.map +1 -1
- package/lib/typescript/components/Callout.d.ts +2 -2
- package/lib/typescript/components/Callout.d.ts.map +1 -1
- package/lib/typescript/components/Camera.d.ts +1 -1
- package/lib/typescript/components/Camera.d.ts.map +1 -1
- package/lib/typescript/components/CircleLayer.d.ts +1 -1
- package/lib/typescript/components/CircleLayer.d.ts.map +1 -1
- package/lib/typescript/components/FillExtrusionLayer.d.ts +1 -1
- package/lib/typescript/components/FillExtrusionLayer.d.ts.map +1 -1
- package/lib/typescript/components/FillLayer.d.ts +1 -1
- package/lib/typescript/components/FillLayer.d.ts.map +1 -1
- package/lib/typescript/components/HeatmapLayer.d.ts +1 -1
- package/lib/typescript/components/HeatmapLayer.d.ts.map +1 -1
- package/lib/typescript/components/Image.d.ts +1 -1
- package/lib/typescript/components/Image.d.ts.map +1 -1
- package/lib/typescript/components/ImageSource.d.ts +1 -1
- package/lib/typescript/components/ImageSource.d.ts.map +1 -1
- package/lib/typescript/components/Images.d.ts +1 -1
- package/lib/typescript/components/Images.d.ts.map +1 -1
- package/lib/typescript/components/Light.d.ts +1 -1
- package/lib/typescript/components/Light.d.ts.map +1 -1
- package/lib/typescript/components/LineLayer.d.ts +1 -1
- package/lib/typescript/components/LineLayer.d.ts.map +1 -1
- package/lib/typescript/components/MapView.d.ts +4 -12
- package/lib/typescript/components/MapView.d.ts.map +1 -1
- package/lib/typescript/components/MarkerView.d.ts +1 -1
- package/lib/typescript/components/MarkerView.d.ts.map +1 -1
- package/lib/typescript/components/PointAnnotation.d.ts +1 -1
- package/lib/typescript/components/PointAnnotation.d.ts.map +1 -1
- package/lib/typescript/components/RasterDemSource.d.ts +1 -1
- package/lib/typescript/components/RasterDemSource.d.ts.map +1 -1
- package/lib/typescript/components/RasterLayer.d.ts +1 -1
- package/lib/typescript/components/RasterLayer.d.ts.map +1 -1
- package/lib/typescript/components/RasterSource.d.ts +1 -1
- package/lib/typescript/components/RasterSource.d.ts.map +1 -1
- package/lib/typescript/components/ShapeSource.d.ts +1 -1
- package/lib/typescript/components/ShapeSource.d.ts.map +1 -1
- package/lib/typescript/components/SkyLayer.d.ts +1 -1
- package/lib/typescript/components/SkyLayer.d.ts.map +1 -1
- package/lib/typescript/components/SymbolLayer.d.ts +1 -1
- package/lib/typescript/components/SymbolLayer.d.ts.map +1 -1
- package/lib/typescript/components/Terrain.d.ts +1 -1
- package/lib/typescript/components/Terrain.d.ts.map +1 -1
- package/lib/typescript/components/VectorSource.d.ts +3 -2
- package/lib/typescript/components/VectorSource.d.ts.map +1 -1
- package/lib/typescript/specs/NativeMapViewModule.d.ts.map +1 -1
- package/lib/typescript/specs/{MBXAndroidTextureMapViewNativeComponent.d.ts → RNMBXAndroidTextureMapViewNativeComponent.d.ts} +1 -1
- package/lib/typescript/specs/RNMBXAndroidTextureMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/specs/{MBXMapViewNativeComponent.d.ts → RNMBXMapViewNativeComponent.d.ts} +1 -1
- package/lib/typescript/specs/RNMBXMapViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/utils/nativeRef.d.ts +6 -6
- package/package.json +3 -3
- package/rnmapbox-maps.podspec +16 -72
- package/setup-jest.js +5 -5
- package/src/Mapbox.ts +1 -1
- package/src/{MGLModule.ts → RNMBXModule.ts} +3 -3
- package/src/components/Atmosphere.tsx +3 -4
- package/src/components/BackgroundLayer.tsx +4 -4
- package/src/components/Callout.tsx +4 -6
- package/src/components/Camera.tsx +5 -5
- package/src/components/CircleLayer.tsx +4 -4
- package/src/components/FillExtrusionLayer.tsx +4 -4
- package/src/components/FillLayer.tsx +4 -4
- package/src/components/HeatmapLayer.tsx +4 -4
- package/src/components/Image.tsx +3 -3
- package/src/components/ImageSource.tsx +4 -4
- package/src/components/Images.tsx +3 -3
- package/src/components/Light.tsx +5 -5
- package/src/components/LineLayer.tsx +4 -4
- package/src/components/MapView.tsx +26 -26
- package/src/components/MarkerView.tsx +5 -6
- package/src/components/NativeUserLocation.tsx +3 -3
- package/src/components/PointAnnotation.tsx +4 -4
- package/src/components/RasterDemSource.tsx +5 -5
- package/src/components/RasterLayer.tsx +4 -4
- package/src/components/RasterSource.tsx +5 -5
- package/src/components/ShapeSource.tsx +5 -5
- package/src/components/SkyLayer.tsx +4 -4
- package/src/components/SymbolLayer.tsx +5 -5
- package/src/components/Terrain.tsx +3 -3
- package/src/components/VectorSource.tsx +5 -5
- package/src/modules/location/locationManager.ts +2 -2
- package/src/modules/offline/OfflinePack.ts +1 -1
- package/src/modules/offline/offlineManager.ts +7 -7
- package/src/modules/snapshot/SnapshotOptions.ts +1 -1
- package/src/modules/snapshot/snapshotManager.ts +1 -1
- package/src/specs/NativeMapViewModule.ts +1 -1
- package/src/specs/{MBXAndroidTextureMapViewNativeComponent.ts → RNMBXAndroidTextureMapViewNativeComponent.ts} +6 -3
- package/src/specs/{MBXMapViewNativeComponent.ts → RNMBXMapViewNativeComponent.ts} +1 -1
- package/src/utils/Logger.ts +3 -3
- package/src/utils/getAnnotationsLayerID.ts +3 -3
- package/src/utils/nativeRef.ts +6 -6
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/RCTMGLPackage.java +0 -99
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/AbstractEventEmitter.java +0 -80
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/AbstractMapFeature.java +0 -19
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/MarkerView.java +0 -23
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/MarkerViewManager.java +0 -69
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLCallout.java +0 -15
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLCalloutManager.java +0 -22
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerView.java +0 -112
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerViewManager.java +0 -45
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotation.java +0 -360
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotationManager.java +0 -88
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraStop.java +0 -249
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraUpdateItem.java +0 -125
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraUpdateQueue.java +0 -73
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/RCTMGLCamera.java +0 -530
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/RCTMGLCameraManager.java +0 -101
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/constants/CameraMode.java +0 -22
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/images/RCTMGLImages.java +0 -234
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/images/RCTMGLImagesManager.java +0 -103
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/LocationComponentManager.java +0 -149
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.java +0 -67
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocationManager.java +0 -35
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/LayerSourceInfo.java +0 -59
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapView.java +0 -16
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.java +0 -31
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java +0 -1528
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java +0 -355
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/helpers/CameraChangeTracker.java +0 -41
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyle.java +0 -83
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java +0 -2220
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleFunctionParser.java +0 -108
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.java +0 -216
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTLayer.java +0 -287
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.java +0 -27
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayerManager.java +0 -64
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayer.java +0 -55
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayerManager.java +0 -77
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayer.java +0 -55
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayerManager.java +0 -80
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayer.java +0 -55
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayerManager.java +0 -80
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayer.java +0 -55
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayerManager.java +0 -77
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayer.java +0 -55
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayerManager.java +0 -79
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.java +0 -27
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayerManager.java +0 -64
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayer.java +0 -55
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayerManager.java +0 -75
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/light/RCTMGLLight.java +0 -65
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/light/RCTMGLLightManager.java +0 -29
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSource.java +0 -81
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSourceManager.java +0 -72
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSource.java +0 -45
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSourceManager.java +0 -44
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java +0 -316
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSourceManager.java +0 -253
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSource.java +0 -97
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSourceManager.java +0 -80
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSource.java +0 -64
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSourceManager.java +0 -84
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTSource.java +0 -244
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/AbstractEvent.java +0 -66
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/AndroidCallbackEvent.java +0 -38
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/EventEmitter.java +0 -45
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/FeatureClickEvent.java +0 -79
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/IEvent.java +0 -18
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/LocationEvent.java +0 -100
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapChangeEvent.java +0 -47
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapClickEvent.java +0 -51
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapUserTrackingModeEvent.java +0 -36
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/OfflineEvent.java +0 -29
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/PointAnnotationClickEvent.java +0 -46
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/PointAnnotationDragEvent.java +0 -51
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/constants/EventKeys.java +0 -39
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/constants/EventTypes.java +0 -51
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/http/CustomHeadersInterceptor.java +0 -38
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/LocationManager.java +0 -147
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserLocation.java +0 -63
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserLocationVerticalAlignment.java +0 -11
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserTrackingMode.java +0 -63
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserTrackingState.java +0 -19
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLLocationModule.java +0 -164
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLLogging.java +0 -140
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLModule.java +0 -377
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java +0 -597
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java +0 -139
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/BitmapUtils.java +0 -129
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ClusterPropertyEntry.java +0 -13
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ConvertUtils.java +0 -257
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/DownloadMapImageTask.java +0 -159
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ExpressionParser.java +0 -74
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/GeoJSONUtils.java +0 -209
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/GeoViewport.java +0 -38
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ImageEntry.java +0 -25
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ResourceUtils.java +0 -30
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/SimpleEventCallback.java +0 -30
- package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/SphericalMercator.java +0 -69
- package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/InstanceManagerImpl.java +0 -35
- package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationEngineCallbackImpl.java +0 -12
- package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationEngineResultImpl.java +0 -18
- package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationManagerImpl.java +0 -64
- package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/PermissionsManagerImpl.java +0 -10
- package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/SymbolClickListenerImpl.java +0 -18
- package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/TelemetryImpl.java +0 -11
- package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/InstanceManagerImpl.java +0 -42
- package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationEngineCallbackImpl.java +0 -12
- package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationEngineResultImpl.java +0 -18
- package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationManagerImpl.java +0 -64
- package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/PermissionsManagerImpl.java +0 -10
- package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/SymbolClickListenerImpl.java +0 -18
- package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/TelemetryImpl.java +0 -7
- package/android/src/main/java-v10/com/mapbox/rctmgl/RCTMGLPackage.java +0 -215
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/AbstractEvent.java +0 -35
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLCallout.kt +0 -6
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLCalloutManager.java +0 -18
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/images/RCTMGLImageManager.kt +0 -67
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.kt +0 -37
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java +0 -2586
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.kt +0 -21
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayerManager.kt +0 -76
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.kt +0 -18
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSkyLayer.kt +0 -35
- package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterDemSourceManager.kt +0 -30
- package/android/src/main/java-v10/com/mapbox/rctmgl/events/ImageMissingEvent.java +0 -42
- package/android/src/main/java-v10/com/mapbox/rctmgl/mapbox/Light.kt +0 -6
- package/android/src/main/java-v10/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java +0 -151
- package/android/src/main/java-v10/com/mapbox/rctmgl/utils/BitmapUtils.java +0 -183
- package/ios/RCTMGL/CameraMode.h +0 -18
- package/ios/RCTMGL/CameraMode.m +0 -18
- package/ios/RCTMGL/CameraStop.h +0 -26
- package/ios/RCTMGL/CameraStop.m +0 -83
- package/ios/RCTMGL/CameraUpdateItem.h +0 -18
- package/ios/RCTMGL/CameraUpdateItem.m +0 -178
- package/ios/RCTMGL/CameraUpdateQueue.h +0 -21
- package/ios/RCTMGL/CameraUpdateQueue.m +0 -74
- package/ios/RCTMGL/FilterParser.h +0 -14
- package/ios/RCTMGL/FilterParser.m +0 -22
- package/ios/RCTMGL/MGLCustomHeaders.h +0 -20
- package/ios/RCTMGL/MGLCustomHeaders.m +0 -98
- package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.h +0 -23
- package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.m +0 -474
- package/ios/RCTMGL/MGLModule.h +0 -13
- package/ios/RCTMGL/MGLModule.m +0 -336
- package/ios/RCTMGL/MGLOfflineModule.h +0 -19
- package/ios/RCTMGL/MGLOfflineModule.m +0 -537
- package/ios/RCTMGL/MGLSnapshotModule.h +0 -13
- package/ios/RCTMGL/MGLSnapshotModule.m +0 -80
- package/ios/RCTMGL/MGLUserLocationHeadingArrowLayer.h +0 -11
- package/ios/RCTMGL/MGLUserLocationHeadingArrowLayer.m +0 -57
- package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.h +0 -11
- package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.m +0 -102
- package/ios/RCTMGL/MGLUserLocationHeadingIndicator.h +0 -10
- package/ios/RCTMGL/RCTConvert+Mapbox.h +0 -16
- package/ios/RCTMGL/RCTConvert+Mapbox.m +0 -32
- package/ios/RCTMGL/RCTMGL.h +0 -13
- package/ios/RCTMGL/RCTMGL.m +0 -13
- package/ios/RCTMGL/RCTMGLBackgroundLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLBackgroundLayer.m +0 -27
- package/ios/RCTMGL/RCTMGLBackgroundLayerManager.h +0 -13
- package/ios/RCTMGL/RCTMGLBackgroundLayerManager.m +0 -35
- package/ios/RCTMGL/RCTMGLCallout.h +0 -15
- package/ios/RCTMGL/RCTMGLCallout.m +0 -74
- package/ios/RCTMGL/RCTMGLCalloutManager.h +0 -13
- package/ios/RCTMGL/RCTMGLCalloutManager.m +0 -21
- package/ios/RCTMGL/RCTMGLCamera.h +0 -39
- package/ios/RCTMGL/RCTMGLCamera.m +0 -258
- package/ios/RCTMGL/RCTMGLCameraManager.h +0 -13
- package/ios/RCTMGL/RCTMGLCameraManager.m +0 -52
- package/ios/RCTMGL/RCTMGLCircleLayer.h +0 -13
- package/ios/RCTMGL/RCTMGLCircleLayer.m +0 -34
- package/ios/RCTMGL/RCTMGLCircleLayerManager.h +0 -13
- package/ios/RCTMGL/RCTMGLCircleLayerManager.m +0 -39
- package/ios/RCTMGL/RCTMGLEvent.h +0 -21
- package/ios/RCTMGL/RCTMGLEvent.m +0 -47
- package/ios/RCTMGL/RCTMGLEventProtocol.h +0 -16
- package/ios/RCTMGL/RCTMGLEventTypes.h +0 -50
- package/ios/RCTMGL/RCTMGLEventTypes.m +0 -49
- package/ios/RCTMGL/RCTMGLFillExtrusionLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLFillExtrusionLayer.m +0 -32
- package/ios/RCTMGL/RCTMGLFillExtrusionLayerManager.h +0 -13
- package/ios/RCTMGL/RCTMGLFillExtrusionLayerManager.m +0 -39
- package/ios/RCTMGL/RCTMGLFillLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLFillLayer.m +0 -33
- package/ios/RCTMGL/RCTMGLFillLayerManager.h +0 -13
- package/ios/RCTMGL/RCTMGLFillLayerManager.m +0 -37
- package/ios/RCTMGL/RCTMGLHeatmapLayer.h +0 -12
- package/ios/RCTMGL/RCTMGLHeatmapLayer.m +0 -30
- package/ios/RCTMGL/RCTMGLHeatmapLayerManager.h +0 -12
- package/ios/RCTMGL/RCTMGLHeatmapLayerManager.m +0 -38
- package/ios/RCTMGL/RCTMGLImageQueue.h +0 -19
- package/ios/RCTMGL/RCTMGLImageQueue.m +0 -57
- package/ios/RCTMGL/RCTMGLImageQueueOperation.h +0 -17
- package/ios/RCTMGL/RCTMGLImageQueueOperation.m +0 -138
- package/ios/RCTMGL/RCTMGLImageSource.h +0 -16
- package/ios/RCTMGL/RCTMGLImageSource.m +0 -60
- package/ios/RCTMGL/RCTMGLImageSourceManager.h +0 -13
- package/ios/RCTMGL/RCTMGLImageSourceManager.m +0 -25
- package/ios/RCTMGL/RCTMGLImages.h +0 -25
- package/ios/RCTMGL/RCTMGLImages.m +0 -126
- package/ios/RCTMGL/RCTMGLImagesManager.h +0 -5
- package/ios/RCTMGL/RCTMGLImagesManager.m +0 -21
- package/ios/RCTMGL/RCTMGLLayer.h +0 -52
- package/ios/RCTMGL/RCTMGLLayer.m +0 -236
- package/ios/RCTMGL/RCTMGLLight.h +0 -17
- package/ios/RCTMGL/RCTMGLLight.m +0 -46
- package/ios/RCTMGL/RCTMGLLightManager.h +0 -13
- package/ios/RCTMGL/RCTMGLLightManager.m +0 -23
- package/ios/RCTMGL/RCTMGLLineLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLLineLayer.m +0 -33
- package/ios/RCTMGL/RCTMGLLineLayerManager.h +0 -13
- package/ios/RCTMGL/RCTMGLLineLayerManager.m +0 -40
- package/ios/RCTMGL/RCTMGLLocation.h +0 -19
- package/ios/RCTMGL/RCTMGLLocation.m +0 -32
- package/ios/RCTMGL/RCTMGLLocationManager.h +0 -30
- package/ios/RCTMGL/RCTMGLLocationManager.m +0 -180
- package/ios/RCTMGL/RCTMGLLocationManagerDelegate.h +0 -20
- package/ios/RCTMGL/RCTMGLLocationModule.h +0 -15
- package/ios/RCTMGL/RCTMGLLocationModule.m +0 -99
- package/ios/RCTMGL/RCTMGLLogging.h +0 -18
- package/ios/RCTMGL/RCTMGLLogging.m +0 -132
- package/ios/RCTMGL/RCTMGLMapTouchEvent.h +0 -25
- package/ios/RCTMGL/RCTMGLMapTouchEvent.m +0 -77
- package/ios/RCTMGL/RCTMGLMapView.h +0 -91
- package/ios/RCTMGL/RCTMGLMapView.m +0 -536
- package/ios/RCTMGL/RCTMGLMapViewManager.h +0 -17
- package/ios/RCTMGL/RCTMGLMapViewManager.m +0 -625
- package/ios/RCTMGL/RCTMGLNativeUserLocation.h +0 -18
- package/ios/RCTMGL/RCTMGLNativeUserLocation.m +0 -49
- package/ios/RCTMGL/RCTMGLNativeUserLocationManager.h +0 -5
- package/ios/RCTMGL/RCTMGLNativeUserLocationManager.m +0 -25
- package/ios/RCTMGL/RCTMGLPointAnnotation.h +0 -41
- package/ios/RCTMGL/RCTMGLPointAnnotation.m +0 -251
- package/ios/RCTMGL/RCTMGLPointAnnotationManager.h +0 -13
- package/ios/RCTMGL/RCTMGLPointAnnotationManager.m +0 -36
- package/ios/RCTMGL/RCTMGLRasterLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLRasterLayer.m +0 -30
- package/ios/RCTMGL/RCTMGLRasterLayerManager.h +0 -13
- package/ios/RCTMGL/RCTMGLRasterLayerManager.m +0 -35
- package/ios/RCTMGL/RCTMGLRasterSource.h +0 -16
- package/ios/RCTMGL/RCTMGLRasterSource.m +0 -35
- package/ios/RCTMGL/RCTMGLRasterSourceManager.h +0 -13
- package/ios/RCTMGL/RCTMGLRasterSourceManager.m +0 -32
- package/ios/RCTMGL/RCTMGLShapeSource.h +0 -53
- package/ios/RCTMGL/RCTMGLShapeSource.m +0 -194
- package/ios/RCTMGL/RCTMGLShapeSourceManager.h +0 -14
- package/ios/RCTMGL/RCTMGLShapeSourceManager.m +0 -206
- package/ios/RCTMGL/RCTMGLSource.h +0 -35
- package/ios/RCTMGL/RCTMGLSource.m +0 -143
- package/ios/RCTMGL/RCTMGLStyle.h +0 -217
- package/ios/RCTMGL/RCTMGLStyle.m +0 -1640
- package/ios/RCTMGL/RCTMGLStyleValue.h +0 -27
- package/ios/RCTMGL/RCTMGLStyleValue.m +0 -167
- package/ios/RCTMGL/RCTMGLSymbolLayer.h +0 -19
- package/ios/RCTMGL/RCTMGLSymbolLayer.m +0 -121
- package/ios/RCTMGL/RCTMGLSymbolLayerManager.h +0 -13
- package/ios/RCTMGL/RCTMGLSymbolLayerManager.m +0 -40
- package/ios/RCTMGL/RCTMGLTileSource.h +0 -22
- package/ios/RCTMGL/RCTMGLTileSource.m +0 -31
- package/ios/RCTMGL/RCTMGLUserLocation.h +0 -15
- package/ios/RCTMGL/RCTMGLUserLocation.m +0 -38
- package/ios/RCTMGL/RCTMGLUtils.h +0 -31
- package/ios/RCTMGL/RCTMGLUtils.m +0 -218
- package/ios/RCTMGL/RCTMGLVectorLayer.h +0 -15
- package/ios/RCTMGL/RCTMGLVectorLayer.m +0 -59
- package/ios/RCTMGL/RCTMGLVectorSource.h +0 -16
- package/ios/RCTMGL/RCTMGLVectorSource.m +0 -28
- package/ios/RCTMGL/RCTMGLVectorSourceManager.h +0 -14
- package/ios/RCTMGL/RCTMGLVectorSourceManager.m +0 -79
- package/ios/RCTMGL/RNMBImageUtils.h +0 -17
- package/ios/RCTMGL/RNMBImageUtils.m +0 -31
- package/ios/RCTMGL/ViewManager.h +0 -16
- package/ios/RCTMGL/ViewManager.m +0 -63
- package/ios/RCTMGL-v10/RCTLog.swift +0 -19
- package/ios/RCTMGL-v10/RCTMGLCallout.swift +0 -3
- package/ios/RCTMGL-v10/RCTMGLFillExtrusionLayerManager.swift +0 -13
- package/ios/RCTMGL-v10/RCTMGLSymbolLayerManager.swift +0 -13
- package/ios/RCTMGL-v10/RCTMGLVectorLayer.swift +0 -5
- package/lib/commonjs/MGLModule.js.map +0 -1
- package/lib/commonjs/specs/MBXAndroidTextureMapViewNativeComponent.js.map +0 -1
- package/lib/commonjs/specs/MBXMapViewNativeComponent.js.map +0 -1
- package/lib/module/MGLModule.js.map +0 -1
- package/lib/module/specs/MBXAndroidTextureMapViewNativeComponent.js +0 -5
- package/lib/module/specs/MBXAndroidTextureMapViewNativeComponent.js.map +0 -1
- package/lib/module/specs/MBXMapViewNativeComponent.js +0 -3
- package/lib/module/specs/MBXMapViewNativeComponent.js.map +0 -1
- package/lib/typescript/MGLModule.d.ts.map +0 -1
- package/lib/typescript/specs/MBXAndroidTextureMapViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/specs/MBXMapViewNativeComponent.d.ts.map +0 -1
- /package/android/src/main/{java-v10 → java}/README.md +0 -0
- /package/ios/{RCTMGL-v10/Bridge/RCTMGL.h → RNMBX/Bridge/RNMBX.h} +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/CommonLayerProperties.H +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/CustomHttpHeaders.swift +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/Array+asExpressions.swift +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/CLLocationCoordinate2D+toArray.swift +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/CoordinateBounds+toArray.swift +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/DefaultStringInterpolation+optional.swift +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/README.md +0 -0
- /package/ios/{RCTMGL-v10 → RNMBX}/rnmapbox_maps.h +0 -0
- /package/ios/{RCTMGL.xcodeproj → RNMBX.xcodeproj}/project.pbxproj +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import MapboxMaps
|
|
5
5
|
|
|
6
|
-
class
|
|
6
|
+
class RNMBXStyle {
|
|
7
7
|
var style : Style
|
|
8
8
|
weak var bridge : RCTBridge?
|
|
9
9
|
|
|
@@ -25,7 +25,7 @@ func fillLayer(layer: inout FillLayer, reactStyle:Dictionary<String, Any>, oldRe
|
|
|
25
25
|
continue;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
let styleValue =
|
|
28
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
29
29
|
|
|
30
30
|
if (prop == "fillSortKey") {
|
|
31
31
|
self.setFillSortKey(&layer, styleValue:styleValue);
|
|
@@ -80,7 +80,7 @@ func lineLayer(layer: inout LineLayer, reactStyle:Dictionary<String, Any>, oldRe
|
|
|
80
80
|
continue;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
let styleValue =
|
|
83
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
84
84
|
|
|
85
85
|
if (prop == "lineCap") {
|
|
86
86
|
self.setLineCap(&layer, styleValue:styleValue);
|
|
@@ -159,7 +159,7 @@ func symbolLayer(layer: inout SymbolLayer, reactStyle:Dictionary<String, Any>, o
|
|
|
159
159
|
continue;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
let styleValue =
|
|
162
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
163
163
|
|
|
164
164
|
if (prop == "symbolPlacement") {
|
|
165
165
|
self.setSymbolPlacement(&layer, styleValue:styleValue);
|
|
@@ -324,7 +324,7 @@ func circleLayer(layer: inout CircleLayer, reactStyle:Dictionary<String, Any>, o
|
|
|
324
324
|
continue;
|
|
325
325
|
}
|
|
326
326
|
|
|
327
|
-
let styleValue =
|
|
327
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
328
328
|
|
|
329
329
|
if (prop == "circleSortKey") {
|
|
330
330
|
self.setCircleSortKey(&layer, styleValue:styleValue);
|
|
@@ -387,7 +387,7 @@ func heatmapLayer(layer: inout HeatmapLayer, reactStyle:Dictionary<String, Any>,
|
|
|
387
387
|
continue;
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
-
let styleValue =
|
|
390
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
391
391
|
|
|
392
392
|
if (prop == "visibility") {
|
|
393
393
|
self.setHeatmapStyleLayerVisibility(&layer, styleValue:styleValue);
|
|
@@ -426,7 +426,7 @@ func fillExtrusionLayer(layer: inout FillExtrusionLayer, reactStyle:Dictionary<S
|
|
|
426
426
|
continue;
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
-
let styleValue =
|
|
429
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
430
430
|
|
|
431
431
|
if (prop == "visibility") {
|
|
432
432
|
self.setFillExtrusionStyleLayerVisibility(&layer, styleValue:styleValue);
|
|
@@ -483,7 +483,7 @@ func rasterLayer(layer: inout RasterLayer, reactStyle:Dictionary<String, Any>, o
|
|
|
483
483
|
continue;
|
|
484
484
|
}
|
|
485
485
|
|
|
486
|
-
let styleValue =
|
|
486
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
487
487
|
|
|
488
488
|
if (prop == "visibility") {
|
|
489
489
|
self.setRasterStyleLayerVisibility(&layer, styleValue:styleValue);
|
|
@@ -534,7 +534,7 @@ func hillshadeLayer(layer: inout HillshadeLayer, reactStyle:Dictionary<String, A
|
|
|
534
534
|
continue;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
-
let styleValue =
|
|
537
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
538
538
|
|
|
539
539
|
if (prop == "visibility") {
|
|
540
540
|
self.setHillshadeStyleLayerVisibility(&layer, styleValue:styleValue);
|
|
@@ -577,7 +577,7 @@ func backgroundLayer(layer: inout BackgroundLayer, reactStyle:Dictionary<String,
|
|
|
577
577
|
continue;
|
|
578
578
|
}
|
|
579
579
|
|
|
580
|
-
let styleValue =
|
|
580
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
581
581
|
|
|
582
582
|
if (prop == "visibility") {
|
|
583
583
|
self.setBackgroundStyleLayerVisibility(&layer, styleValue:styleValue);
|
|
@@ -618,7 +618,7 @@ func skyLayer(layer: inout SkyLayer, reactStyle:Dictionary<String, Any>, oldReac
|
|
|
618
618
|
continue;
|
|
619
619
|
}
|
|
620
620
|
|
|
621
|
-
let styleValue =
|
|
621
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
622
622
|
|
|
623
623
|
if (prop == "visibility") {
|
|
624
624
|
self.setSkyStyleLayerVisibility(&layer, styleValue:styleValue);
|
|
@@ -661,7 +661,7 @@ func lightLayer(layer: inout Light, reactStyle:Dictionary<String, Any>, oldReact
|
|
|
661
661
|
continue;
|
|
662
662
|
}
|
|
663
663
|
|
|
664
|
-
let styleValue =
|
|
664
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
665
665
|
|
|
666
666
|
if (prop == "anchor") {
|
|
667
667
|
self.setAnchor(&layer, styleValue:styleValue);
|
|
@@ -696,7 +696,7 @@ func atmosphereLayer(layer: inout Atmosphere, reactStyle:Dictionary<String, Any>
|
|
|
696
696
|
continue;
|
|
697
697
|
}
|
|
698
698
|
|
|
699
|
-
let styleValue =
|
|
699
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
700
700
|
|
|
701
701
|
if (prop == "range") {
|
|
702
702
|
self.setRange(&layer, styleValue:styleValue);
|
|
@@ -741,7 +741,7 @@ func terrainLayer(layer: inout Terrain, reactStyle:Dictionary<String, Any>, oldR
|
|
|
741
741
|
continue;
|
|
742
742
|
}
|
|
743
743
|
|
|
744
|
-
let styleValue =
|
|
744
|
+
let styleValue = RNMBXStyleValue.make(reactStyle[prop])
|
|
745
745
|
|
|
746
746
|
if (prop == "exaggeration") {
|
|
747
747
|
self.setExaggeration(&layer, styleValue:styleValue);
|
|
@@ -754,7 +754,7 @@ func terrainLayer(layer: inout Terrain, reactStyle:Dictionary<String, Any>, oldR
|
|
|
754
754
|
|
|
755
755
|
|
|
756
756
|
|
|
757
|
-
func setFillSortKey(_ layer: inout FillLayer, styleValue:
|
|
757
|
+
func setFillSortKey(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
758
758
|
{
|
|
759
759
|
|
|
760
760
|
|
|
@@ -763,12 +763,12 @@ func setFillSortKey(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
|
|
|
763
763
|
|
|
764
764
|
}
|
|
765
765
|
|
|
766
|
-
func setFillStyleLayerVisibility(_ layer: inout FillLayer, styleValue:
|
|
766
|
+
func setFillStyleLayerVisibility(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
767
767
|
{
|
|
768
768
|
layer.visibility = styleValue.isVisible();
|
|
769
769
|
}
|
|
770
770
|
|
|
771
|
-
func setFillAntialias(_ layer: inout FillLayer, styleValue:
|
|
771
|
+
func setFillAntialias(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
772
772
|
{
|
|
773
773
|
|
|
774
774
|
|
|
@@ -777,7 +777,7 @@ func setFillAntialias(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
|
|
|
777
777
|
|
|
778
778
|
}
|
|
779
779
|
|
|
780
|
-
func setFillOpacity(_ layer: inout FillLayer, styleValue:
|
|
780
|
+
func setFillOpacity(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
781
781
|
{
|
|
782
782
|
|
|
783
783
|
|
|
@@ -786,12 +786,12 @@ func setFillOpacity(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
|
|
|
786
786
|
|
|
787
787
|
}
|
|
788
788
|
|
|
789
|
-
func setFillOpacityTransition(_ layer: inout FillLayer, styleValue:
|
|
789
|
+
func setFillOpacityTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
790
790
|
{
|
|
791
791
|
layer.fillOpacityTransition = styleValue.getTransition();
|
|
792
792
|
}
|
|
793
793
|
|
|
794
|
-
func setFillColor(_ layer: inout FillLayer, styleValue:
|
|
794
|
+
func setFillColor(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
795
795
|
{
|
|
796
796
|
|
|
797
797
|
|
|
@@ -800,12 +800,12 @@ func setFillColor(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
|
|
|
800
800
|
|
|
801
801
|
}
|
|
802
802
|
|
|
803
|
-
func setFillColorTransition(_ layer: inout FillLayer, styleValue:
|
|
803
|
+
func setFillColorTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
804
804
|
{
|
|
805
805
|
layer.fillColorTransition = styleValue.getTransition();
|
|
806
806
|
}
|
|
807
807
|
|
|
808
|
-
func setFillOutlineColor(_ layer: inout FillLayer, styleValue:
|
|
808
|
+
func setFillOutlineColor(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
809
809
|
{
|
|
810
810
|
|
|
811
811
|
|
|
@@ -814,12 +814,12 @@ func setFillOutlineColor(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
|
|
|
814
814
|
|
|
815
815
|
}
|
|
816
816
|
|
|
817
|
-
func setFillOutlineColorTransition(_ layer: inout FillLayer, styleValue:
|
|
817
|
+
func setFillOutlineColorTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
818
818
|
{
|
|
819
819
|
layer.fillOutlineColorTransition = styleValue.getTransition();
|
|
820
820
|
}
|
|
821
821
|
|
|
822
|
-
func setFillTranslate(_ layer: inout FillLayer, styleValue:
|
|
822
|
+
func setFillTranslate(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
823
823
|
{
|
|
824
824
|
|
|
825
825
|
|
|
@@ -828,12 +828,12 @@ func setFillTranslate(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
|
|
|
828
828
|
|
|
829
829
|
}
|
|
830
830
|
|
|
831
|
-
func setFillTranslateTransition(_ layer: inout FillLayer, styleValue:
|
|
831
|
+
func setFillTranslateTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
832
832
|
{
|
|
833
833
|
layer.fillTranslateTransition = styleValue.getTransition();
|
|
834
834
|
}
|
|
835
835
|
|
|
836
|
-
func setFillTranslateAnchor(_ layer: inout FillLayer, styleValue:
|
|
836
|
+
func setFillTranslateAnchor(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
837
837
|
{
|
|
838
838
|
|
|
839
839
|
|
|
@@ -842,7 +842,7 @@ func setFillTranslateAnchor(_ layer: inout FillLayer, styleValue: RCTMGLStyleVal
|
|
|
842
842
|
|
|
843
843
|
}
|
|
844
844
|
|
|
845
|
-
func setFillPattern(_ layer: inout FillLayer, styleValue:
|
|
845
|
+
func setFillPattern(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
|
|
846
846
|
{
|
|
847
847
|
|
|
848
848
|
|
|
@@ -853,7 +853,7 @@ func setFillPattern(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
|
|
|
853
853
|
|
|
854
854
|
|
|
855
855
|
|
|
856
|
-
func setLineCap(_ layer: inout LineLayer, styleValue:
|
|
856
|
+
func setLineCap(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
857
857
|
{
|
|
858
858
|
|
|
859
859
|
|
|
@@ -862,7 +862,7 @@ func setLineCap(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
862
862
|
|
|
863
863
|
}
|
|
864
864
|
|
|
865
|
-
func setLineJoin(_ layer: inout LineLayer, styleValue:
|
|
865
|
+
func setLineJoin(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
866
866
|
{
|
|
867
867
|
|
|
868
868
|
|
|
@@ -871,7 +871,7 @@ func setLineJoin(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
871
871
|
|
|
872
872
|
}
|
|
873
873
|
|
|
874
|
-
func setLineMiterLimit(_ layer: inout LineLayer, styleValue:
|
|
874
|
+
func setLineMiterLimit(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
875
875
|
{
|
|
876
876
|
|
|
877
877
|
|
|
@@ -880,7 +880,7 @@ func setLineMiterLimit(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
880
880
|
|
|
881
881
|
}
|
|
882
882
|
|
|
883
|
-
func setLineRoundLimit(_ layer: inout LineLayer, styleValue:
|
|
883
|
+
func setLineRoundLimit(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
884
884
|
{
|
|
885
885
|
|
|
886
886
|
|
|
@@ -889,7 +889,7 @@ func setLineRoundLimit(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
889
889
|
|
|
890
890
|
}
|
|
891
891
|
|
|
892
|
-
func setLineSortKey(_ layer: inout LineLayer, styleValue:
|
|
892
|
+
func setLineSortKey(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
893
893
|
{
|
|
894
894
|
|
|
895
895
|
|
|
@@ -898,12 +898,12 @@ func setLineSortKey(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
898
898
|
|
|
899
899
|
}
|
|
900
900
|
|
|
901
|
-
func setLineStyleLayerVisibility(_ layer: inout LineLayer, styleValue:
|
|
901
|
+
func setLineStyleLayerVisibility(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
902
902
|
{
|
|
903
903
|
layer.visibility = styleValue.isVisible();
|
|
904
904
|
}
|
|
905
905
|
|
|
906
|
-
func setLineOpacity(_ layer: inout LineLayer, styleValue:
|
|
906
|
+
func setLineOpacity(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
907
907
|
{
|
|
908
908
|
|
|
909
909
|
|
|
@@ -912,12 +912,12 @@ func setLineOpacity(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
912
912
|
|
|
913
913
|
}
|
|
914
914
|
|
|
915
|
-
func setLineOpacityTransition(_ layer: inout LineLayer, styleValue:
|
|
915
|
+
func setLineOpacityTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
916
916
|
{
|
|
917
917
|
layer.lineOpacityTransition = styleValue.getTransition();
|
|
918
918
|
}
|
|
919
919
|
|
|
920
|
-
func setLineColor(_ layer: inout LineLayer, styleValue:
|
|
920
|
+
func setLineColor(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
921
921
|
{
|
|
922
922
|
|
|
923
923
|
|
|
@@ -926,12 +926,12 @@ func setLineColor(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
926
926
|
|
|
927
927
|
}
|
|
928
928
|
|
|
929
|
-
func setLineColorTransition(_ layer: inout LineLayer, styleValue:
|
|
929
|
+
func setLineColorTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
930
930
|
{
|
|
931
931
|
layer.lineColorTransition = styleValue.getTransition();
|
|
932
932
|
}
|
|
933
933
|
|
|
934
|
-
func setLineTranslate(_ layer: inout LineLayer, styleValue:
|
|
934
|
+
func setLineTranslate(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
935
935
|
{
|
|
936
936
|
|
|
937
937
|
|
|
@@ -940,12 +940,12 @@ func setLineTranslate(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
940
940
|
|
|
941
941
|
}
|
|
942
942
|
|
|
943
|
-
func setLineTranslateTransition(_ layer: inout LineLayer, styleValue:
|
|
943
|
+
func setLineTranslateTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
944
944
|
{
|
|
945
945
|
layer.lineTranslateTransition = styleValue.getTransition();
|
|
946
946
|
}
|
|
947
947
|
|
|
948
|
-
func setLineTranslateAnchor(_ layer: inout LineLayer, styleValue:
|
|
948
|
+
func setLineTranslateAnchor(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
949
949
|
{
|
|
950
950
|
|
|
951
951
|
|
|
@@ -954,7 +954,7 @@ func setLineTranslateAnchor(_ layer: inout LineLayer, styleValue: RCTMGLStyleVal
|
|
|
954
954
|
|
|
955
955
|
}
|
|
956
956
|
|
|
957
|
-
func setLineWidth(_ layer: inout LineLayer, styleValue:
|
|
957
|
+
func setLineWidth(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
958
958
|
{
|
|
959
959
|
|
|
960
960
|
|
|
@@ -963,12 +963,12 @@ func setLineWidth(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
963
963
|
|
|
964
964
|
}
|
|
965
965
|
|
|
966
|
-
func setLineWidthTransition(_ layer: inout LineLayer, styleValue:
|
|
966
|
+
func setLineWidthTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
967
967
|
{
|
|
968
968
|
layer.lineWidthTransition = styleValue.getTransition();
|
|
969
969
|
}
|
|
970
970
|
|
|
971
|
-
func setLineGapWidth(_ layer: inout LineLayer, styleValue:
|
|
971
|
+
func setLineGapWidth(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
972
972
|
{
|
|
973
973
|
|
|
974
974
|
|
|
@@ -977,12 +977,12 @@ func setLineGapWidth(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
977
977
|
|
|
978
978
|
}
|
|
979
979
|
|
|
980
|
-
func setLineGapWidthTransition(_ layer: inout LineLayer, styleValue:
|
|
980
|
+
func setLineGapWidthTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
981
981
|
{
|
|
982
982
|
layer.lineGapWidthTransition = styleValue.getTransition();
|
|
983
983
|
}
|
|
984
984
|
|
|
985
|
-
func setLineOffset(_ layer: inout LineLayer, styleValue:
|
|
985
|
+
func setLineOffset(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
986
986
|
{
|
|
987
987
|
|
|
988
988
|
|
|
@@ -991,12 +991,12 @@ func setLineOffset(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
991
991
|
|
|
992
992
|
}
|
|
993
993
|
|
|
994
|
-
func setLineOffsetTransition(_ layer: inout LineLayer, styleValue:
|
|
994
|
+
func setLineOffsetTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
995
995
|
{
|
|
996
996
|
layer.lineOffsetTransition = styleValue.getTransition();
|
|
997
997
|
}
|
|
998
998
|
|
|
999
|
-
func setLineBlur(_ layer: inout LineLayer, styleValue:
|
|
999
|
+
func setLineBlur(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
1000
1000
|
{
|
|
1001
1001
|
|
|
1002
1002
|
|
|
@@ -1005,12 +1005,12 @@ func setLineBlur(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
1005
1005
|
|
|
1006
1006
|
}
|
|
1007
1007
|
|
|
1008
|
-
func setLineBlurTransition(_ layer: inout LineLayer, styleValue:
|
|
1008
|
+
func setLineBlurTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
1009
1009
|
{
|
|
1010
1010
|
layer.lineBlurTransition = styleValue.getTransition();
|
|
1011
1011
|
}
|
|
1012
1012
|
|
|
1013
|
-
func setLineDasharray(_ layer: inout LineLayer, styleValue:
|
|
1013
|
+
func setLineDasharray(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
1014
1014
|
{
|
|
1015
1015
|
|
|
1016
1016
|
|
|
@@ -1019,7 +1019,7 @@ func setLineDasharray(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
1019
1019
|
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
1022
|
-
func setLinePattern(_ layer: inout LineLayer, styleValue:
|
|
1022
|
+
func setLinePattern(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
1023
1023
|
{
|
|
1024
1024
|
|
|
1025
1025
|
|
|
@@ -1028,7 +1028,7 @@ func setLinePattern(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
1028
1028
|
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
|
-
func setLineGradient(_ layer: inout LineLayer, styleValue:
|
|
1031
|
+
func setLineGradient(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
1032
1032
|
{
|
|
1033
1033
|
|
|
1034
1034
|
|
|
@@ -1037,7 +1037,7 @@ func setLineGradient(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
1037
1037
|
|
|
1038
1038
|
}
|
|
1039
1039
|
|
|
1040
|
-
func setLineTrimOffset(_ layer: inout LineLayer, styleValue:
|
|
1040
|
+
func setLineTrimOffset(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
|
|
1041
1041
|
{
|
|
1042
1042
|
|
|
1043
1043
|
|
|
@@ -1048,7 +1048,7 @@ func setLineTrimOffset(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
|
|
|
1048
1048
|
|
|
1049
1049
|
|
|
1050
1050
|
|
|
1051
|
-
func setSymbolPlacement(_ layer: inout SymbolLayer, styleValue:
|
|
1051
|
+
func setSymbolPlacement(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1052
1052
|
{
|
|
1053
1053
|
|
|
1054
1054
|
|
|
@@ -1057,7 +1057,7 @@ func setSymbolPlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
|
|
|
1057
1057
|
|
|
1058
1058
|
}
|
|
1059
1059
|
|
|
1060
|
-
func setSymbolSpacing(_ layer: inout SymbolLayer, styleValue:
|
|
1060
|
+
func setSymbolSpacing(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1061
1061
|
{
|
|
1062
1062
|
|
|
1063
1063
|
|
|
@@ -1066,7 +1066,7 @@ func setSymbolSpacing(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1066
1066
|
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
-
func setSymbolAvoidEdges(_ layer: inout SymbolLayer, styleValue:
|
|
1069
|
+
func setSymbolAvoidEdges(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1070
1070
|
{
|
|
1071
1071
|
|
|
1072
1072
|
|
|
@@ -1075,7 +1075,7 @@ func setSymbolAvoidEdges(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
|
|
|
1075
1075
|
|
|
1076
1076
|
}
|
|
1077
1077
|
|
|
1078
|
-
func setSymbolSortKey(_ layer: inout SymbolLayer, styleValue:
|
|
1078
|
+
func setSymbolSortKey(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1079
1079
|
{
|
|
1080
1080
|
|
|
1081
1081
|
|
|
@@ -1084,7 +1084,7 @@ func setSymbolSortKey(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1084
1084
|
|
|
1085
1085
|
}
|
|
1086
1086
|
|
|
1087
|
-
func setSymbolZOrder(_ layer: inout SymbolLayer, styleValue:
|
|
1087
|
+
func setSymbolZOrder(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1088
1088
|
{
|
|
1089
1089
|
|
|
1090
1090
|
|
|
@@ -1093,7 +1093,7 @@ func setSymbolZOrder(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1093
1093
|
|
|
1094
1094
|
}
|
|
1095
1095
|
|
|
1096
|
-
func setIconAllowOverlap(_ layer: inout SymbolLayer, styleValue:
|
|
1096
|
+
func setIconAllowOverlap(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1097
1097
|
{
|
|
1098
1098
|
|
|
1099
1099
|
|
|
@@ -1102,7 +1102,7 @@ func setIconAllowOverlap(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
|
|
|
1102
1102
|
|
|
1103
1103
|
}
|
|
1104
1104
|
|
|
1105
|
-
func setIconIgnorePlacement(_ layer: inout SymbolLayer, styleValue:
|
|
1105
|
+
func setIconIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1106
1106
|
{
|
|
1107
1107
|
|
|
1108
1108
|
|
|
@@ -1111,7 +1111,7 @@ func setIconIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
|
|
|
1111
1111
|
|
|
1112
1112
|
}
|
|
1113
1113
|
|
|
1114
|
-
func setIconOptional(_ layer: inout SymbolLayer, styleValue:
|
|
1114
|
+
func setIconOptional(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1115
1115
|
{
|
|
1116
1116
|
|
|
1117
1117
|
|
|
@@ -1120,7 +1120,7 @@ func setIconOptional(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1120
1120
|
|
|
1121
1121
|
}
|
|
1122
1122
|
|
|
1123
|
-
func setIconRotationAlignment(_ layer: inout SymbolLayer, styleValue:
|
|
1123
|
+
func setIconRotationAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1124
1124
|
{
|
|
1125
1125
|
|
|
1126
1126
|
|
|
@@ -1129,7 +1129,7 @@ func setIconRotationAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyl
|
|
|
1129
1129
|
|
|
1130
1130
|
}
|
|
1131
1131
|
|
|
1132
|
-
func setIconSize(_ layer: inout SymbolLayer, styleValue:
|
|
1132
|
+
func setIconSize(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1133
1133
|
{
|
|
1134
1134
|
|
|
1135
1135
|
|
|
@@ -1138,7 +1138,7 @@ func setIconSize(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1138
1138
|
|
|
1139
1139
|
}
|
|
1140
1140
|
|
|
1141
|
-
func setIconTextFit(_ layer: inout SymbolLayer, styleValue:
|
|
1141
|
+
func setIconTextFit(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1142
1142
|
{
|
|
1143
1143
|
|
|
1144
1144
|
|
|
@@ -1147,7 +1147,7 @@ func setIconTextFit(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1147
1147
|
|
|
1148
1148
|
}
|
|
1149
1149
|
|
|
1150
|
-
func setIconTextFitPadding(_ layer: inout SymbolLayer, styleValue:
|
|
1150
|
+
func setIconTextFitPadding(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1151
1151
|
{
|
|
1152
1152
|
|
|
1153
1153
|
|
|
@@ -1156,7 +1156,7 @@ func setIconTextFitPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
|
|
|
1156
1156
|
|
|
1157
1157
|
}
|
|
1158
1158
|
|
|
1159
|
-
func setIconImage(_ layer: inout SymbolLayer, styleValue:
|
|
1159
|
+
func setIconImage(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1160
1160
|
{
|
|
1161
1161
|
|
|
1162
1162
|
|
|
@@ -1165,7 +1165,7 @@ func setIconImage(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1165
1165
|
|
|
1166
1166
|
}
|
|
1167
1167
|
|
|
1168
|
-
func setIconRotate(_ layer: inout SymbolLayer, styleValue:
|
|
1168
|
+
func setIconRotate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1169
1169
|
{
|
|
1170
1170
|
|
|
1171
1171
|
|
|
@@ -1174,7 +1174,7 @@ func setIconRotate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1174
1174
|
|
|
1175
1175
|
}
|
|
1176
1176
|
|
|
1177
|
-
func setIconPadding(_ layer: inout SymbolLayer, styleValue:
|
|
1177
|
+
func setIconPadding(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1178
1178
|
{
|
|
1179
1179
|
|
|
1180
1180
|
|
|
@@ -1183,7 +1183,7 @@ func setIconPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1183
1183
|
|
|
1184
1184
|
}
|
|
1185
1185
|
|
|
1186
|
-
func setIconKeepUpright(_ layer: inout SymbolLayer, styleValue:
|
|
1186
|
+
func setIconKeepUpright(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1187
1187
|
{
|
|
1188
1188
|
|
|
1189
1189
|
|
|
@@ -1192,7 +1192,7 @@ func setIconKeepUpright(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
|
|
|
1192
1192
|
|
|
1193
1193
|
}
|
|
1194
1194
|
|
|
1195
|
-
func setIconOffset(_ layer: inout SymbolLayer, styleValue:
|
|
1195
|
+
func setIconOffset(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1196
1196
|
{
|
|
1197
1197
|
|
|
1198
1198
|
|
|
@@ -1201,7 +1201,7 @@ func setIconOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1201
1201
|
|
|
1202
1202
|
}
|
|
1203
1203
|
|
|
1204
|
-
func setIconAnchor(_ layer: inout SymbolLayer, styleValue:
|
|
1204
|
+
func setIconAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1205
1205
|
{
|
|
1206
1206
|
|
|
1207
1207
|
|
|
@@ -1210,7 +1210,7 @@ func setIconAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1210
1210
|
|
|
1211
1211
|
}
|
|
1212
1212
|
|
|
1213
|
-
func setIconPitchAlignment(_ layer: inout SymbolLayer, styleValue:
|
|
1213
|
+
func setIconPitchAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1214
1214
|
{
|
|
1215
1215
|
|
|
1216
1216
|
|
|
@@ -1219,7 +1219,7 @@ func setIconPitchAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
|
|
|
1219
1219
|
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
1222
|
-
func setTextPitchAlignment(_ layer: inout SymbolLayer, styleValue:
|
|
1222
|
+
func setTextPitchAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1223
1223
|
{
|
|
1224
1224
|
|
|
1225
1225
|
|
|
@@ -1228,7 +1228,7 @@ func setTextPitchAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
|
|
|
1228
1228
|
|
|
1229
1229
|
}
|
|
1230
1230
|
|
|
1231
|
-
func setTextRotationAlignment(_ layer: inout SymbolLayer, styleValue:
|
|
1231
|
+
func setTextRotationAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1232
1232
|
{
|
|
1233
1233
|
|
|
1234
1234
|
|
|
@@ -1237,7 +1237,7 @@ func setTextRotationAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyl
|
|
|
1237
1237
|
|
|
1238
1238
|
}
|
|
1239
1239
|
|
|
1240
|
-
func setTextField(_ layer: inout SymbolLayer, styleValue:
|
|
1240
|
+
func setTextField(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1241
1241
|
{
|
|
1242
1242
|
|
|
1243
1243
|
|
|
@@ -1246,7 +1246,7 @@ func setTextField(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1246
1246
|
|
|
1247
1247
|
}
|
|
1248
1248
|
|
|
1249
|
-
func setTextFont(_ layer: inout SymbolLayer, styleValue:
|
|
1249
|
+
func setTextFont(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1250
1250
|
{
|
|
1251
1251
|
|
|
1252
1252
|
|
|
@@ -1255,7 +1255,7 @@ func setTextFont(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1255
1255
|
|
|
1256
1256
|
}
|
|
1257
1257
|
|
|
1258
|
-
func setTextSize(_ layer: inout SymbolLayer, styleValue:
|
|
1258
|
+
func setTextSize(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1259
1259
|
{
|
|
1260
1260
|
|
|
1261
1261
|
|
|
@@ -1264,7 +1264,7 @@ func setTextSize(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1264
1264
|
|
|
1265
1265
|
}
|
|
1266
1266
|
|
|
1267
|
-
func setTextMaxWidth(_ layer: inout SymbolLayer, styleValue:
|
|
1267
|
+
func setTextMaxWidth(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1268
1268
|
{
|
|
1269
1269
|
|
|
1270
1270
|
|
|
@@ -1273,7 +1273,7 @@ func setTextMaxWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1273
1273
|
|
|
1274
1274
|
}
|
|
1275
1275
|
|
|
1276
|
-
func setTextLineHeight(_ layer: inout SymbolLayer, styleValue:
|
|
1276
|
+
func setTextLineHeight(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1277
1277
|
{
|
|
1278
1278
|
|
|
1279
1279
|
|
|
@@ -1282,7 +1282,7 @@ func setTextLineHeight(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1282
1282
|
|
|
1283
1283
|
}
|
|
1284
1284
|
|
|
1285
|
-
func setTextLetterSpacing(_ layer: inout SymbolLayer, styleValue:
|
|
1285
|
+
func setTextLetterSpacing(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1286
1286
|
{
|
|
1287
1287
|
|
|
1288
1288
|
|
|
@@ -1291,7 +1291,7 @@ func setTextLetterSpacing(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVal
|
|
|
1291
1291
|
|
|
1292
1292
|
}
|
|
1293
1293
|
|
|
1294
|
-
func setTextJustify(_ layer: inout SymbolLayer, styleValue:
|
|
1294
|
+
func setTextJustify(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1295
1295
|
{
|
|
1296
1296
|
|
|
1297
1297
|
|
|
@@ -1300,7 +1300,7 @@ func setTextJustify(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1300
1300
|
|
|
1301
1301
|
}
|
|
1302
1302
|
|
|
1303
|
-
func setTextRadialOffset(_ layer: inout SymbolLayer, styleValue:
|
|
1303
|
+
func setTextRadialOffset(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1304
1304
|
{
|
|
1305
1305
|
|
|
1306
1306
|
|
|
@@ -1309,7 +1309,7 @@ func setTextRadialOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
|
|
|
1309
1309
|
|
|
1310
1310
|
}
|
|
1311
1311
|
|
|
1312
|
-
func setTextVariableAnchor(_ layer: inout SymbolLayer, styleValue:
|
|
1312
|
+
func setTextVariableAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1313
1313
|
{
|
|
1314
1314
|
|
|
1315
1315
|
|
|
@@ -1318,7 +1318,7 @@ func setTextVariableAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
|
|
|
1318
1318
|
|
|
1319
1319
|
}
|
|
1320
1320
|
|
|
1321
|
-
func setTextAnchor(_ layer: inout SymbolLayer, styleValue:
|
|
1321
|
+
func setTextAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1322
1322
|
{
|
|
1323
1323
|
|
|
1324
1324
|
|
|
@@ -1327,7 +1327,7 @@ func setTextAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1327
1327
|
|
|
1328
1328
|
}
|
|
1329
1329
|
|
|
1330
|
-
func setTextMaxAngle(_ layer: inout SymbolLayer, styleValue:
|
|
1330
|
+
func setTextMaxAngle(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1331
1331
|
{
|
|
1332
1332
|
|
|
1333
1333
|
|
|
@@ -1336,7 +1336,7 @@ func setTextMaxAngle(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1336
1336
|
|
|
1337
1337
|
}
|
|
1338
1338
|
|
|
1339
|
-
func setTextWritingMode(_ layer: inout SymbolLayer, styleValue:
|
|
1339
|
+
func setTextWritingMode(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1340
1340
|
{
|
|
1341
1341
|
|
|
1342
1342
|
|
|
@@ -1345,7 +1345,7 @@ func setTextWritingMode(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
|
|
|
1345
1345
|
|
|
1346
1346
|
}
|
|
1347
1347
|
|
|
1348
|
-
func setTextRotate(_ layer: inout SymbolLayer, styleValue:
|
|
1348
|
+
func setTextRotate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1349
1349
|
{
|
|
1350
1350
|
|
|
1351
1351
|
|
|
@@ -1354,7 +1354,7 @@ func setTextRotate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1354
1354
|
|
|
1355
1355
|
}
|
|
1356
1356
|
|
|
1357
|
-
func setTextPadding(_ layer: inout SymbolLayer, styleValue:
|
|
1357
|
+
func setTextPadding(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1358
1358
|
{
|
|
1359
1359
|
|
|
1360
1360
|
|
|
@@ -1363,7 +1363,7 @@ func setTextPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1363
1363
|
|
|
1364
1364
|
}
|
|
1365
1365
|
|
|
1366
|
-
func setTextKeepUpright(_ layer: inout SymbolLayer, styleValue:
|
|
1366
|
+
func setTextKeepUpright(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1367
1367
|
{
|
|
1368
1368
|
|
|
1369
1369
|
|
|
@@ -1372,7 +1372,7 @@ func setTextKeepUpright(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
|
|
|
1372
1372
|
|
|
1373
1373
|
}
|
|
1374
1374
|
|
|
1375
|
-
func setTextTransform(_ layer: inout SymbolLayer, styleValue:
|
|
1375
|
+
func setTextTransform(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1376
1376
|
{
|
|
1377
1377
|
|
|
1378
1378
|
|
|
@@ -1381,7 +1381,7 @@ func setTextTransform(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1381
1381
|
|
|
1382
1382
|
}
|
|
1383
1383
|
|
|
1384
|
-
func setTextOffset(_ layer: inout SymbolLayer, styleValue:
|
|
1384
|
+
func setTextOffset(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1385
1385
|
{
|
|
1386
1386
|
|
|
1387
1387
|
|
|
@@ -1390,7 +1390,7 @@ func setTextOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1390
1390
|
|
|
1391
1391
|
}
|
|
1392
1392
|
|
|
1393
|
-
func setTextAllowOverlap(_ layer: inout SymbolLayer, styleValue:
|
|
1393
|
+
func setTextAllowOverlap(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1394
1394
|
{
|
|
1395
1395
|
|
|
1396
1396
|
|
|
@@ -1399,7 +1399,7 @@ func setTextAllowOverlap(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
|
|
|
1399
1399
|
|
|
1400
1400
|
}
|
|
1401
1401
|
|
|
1402
|
-
func setTextIgnorePlacement(_ layer: inout SymbolLayer, styleValue:
|
|
1402
|
+
func setTextIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1403
1403
|
{
|
|
1404
1404
|
|
|
1405
1405
|
|
|
@@ -1408,7 +1408,7 @@ func setTextIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
|
|
|
1408
1408
|
|
|
1409
1409
|
}
|
|
1410
1410
|
|
|
1411
|
-
func setTextOptional(_ layer: inout SymbolLayer, styleValue:
|
|
1411
|
+
func setTextOptional(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1412
1412
|
{
|
|
1413
1413
|
|
|
1414
1414
|
|
|
@@ -1417,12 +1417,12 @@ func setTextOptional(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1417
1417
|
|
|
1418
1418
|
}
|
|
1419
1419
|
|
|
1420
|
-
func setSymbolStyleLayerVisibility(_ layer: inout SymbolLayer, styleValue:
|
|
1420
|
+
func setSymbolStyleLayerVisibility(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1421
1421
|
{
|
|
1422
1422
|
layer.visibility = styleValue.isVisible();
|
|
1423
1423
|
}
|
|
1424
1424
|
|
|
1425
|
-
func setIconOpacity(_ layer: inout SymbolLayer, styleValue:
|
|
1425
|
+
func setIconOpacity(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1426
1426
|
{
|
|
1427
1427
|
|
|
1428
1428
|
|
|
@@ -1431,12 +1431,12 @@ func setIconOpacity(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1431
1431
|
|
|
1432
1432
|
}
|
|
1433
1433
|
|
|
1434
|
-
func setIconOpacityTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1434
|
+
func setIconOpacityTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1435
1435
|
{
|
|
1436
1436
|
layer.iconOpacityTransition = styleValue.getTransition();
|
|
1437
1437
|
}
|
|
1438
1438
|
|
|
1439
|
-
func setIconColor(_ layer: inout SymbolLayer, styleValue:
|
|
1439
|
+
func setIconColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1440
1440
|
{
|
|
1441
1441
|
|
|
1442
1442
|
|
|
@@ -1445,12 +1445,12 @@ func setIconColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1445
1445
|
|
|
1446
1446
|
}
|
|
1447
1447
|
|
|
1448
|
-
func setIconColorTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1448
|
+
func setIconColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1449
1449
|
{
|
|
1450
1450
|
layer.iconColorTransition = styleValue.getTransition();
|
|
1451
1451
|
}
|
|
1452
1452
|
|
|
1453
|
-
func setIconHaloColor(_ layer: inout SymbolLayer, styleValue:
|
|
1453
|
+
func setIconHaloColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1454
1454
|
{
|
|
1455
1455
|
|
|
1456
1456
|
|
|
@@ -1459,12 +1459,12 @@ func setIconHaloColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1459
1459
|
|
|
1460
1460
|
}
|
|
1461
1461
|
|
|
1462
|
-
func setIconHaloColorTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1462
|
+
func setIconHaloColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1463
1463
|
{
|
|
1464
1464
|
layer.iconHaloColorTransition = styleValue.getTransition();
|
|
1465
1465
|
}
|
|
1466
1466
|
|
|
1467
|
-
func setIconHaloWidth(_ layer: inout SymbolLayer, styleValue:
|
|
1467
|
+
func setIconHaloWidth(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1468
1468
|
{
|
|
1469
1469
|
|
|
1470
1470
|
|
|
@@ -1473,12 +1473,12 @@ func setIconHaloWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1473
1473
|
|
|
1474
1474
|
}
|
|
1475
1475
|
|
|
1476
|
-
func setIconHaloWidthTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1476
|
+
func setIconHaloWidthTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1477
1477
|
{
|
|
1478
1478
|
layer.iconHaloWidthTransition = styleValue.getTransition();
|
|
1479
1479
|
}
|
|
1480
1480
|
|
|
1481
|
-
func setIconHaloBlur(_ layer: inout SymbolLayer, styleValue:
|
|
1481
|
+
func setIconHaloBlur(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1482
1482
|
{
|
|
1483
1483
|
|
|
1484
1484
|
|
|
@@ -1487,12 +1487,12 @@ func setIconHaloBlur(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1487
1487
|
|
|
1488
1488
|
}
|
|
1489
1489
|
|
|
1490
|
-
func setIconHaloBlurTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1490
|
+
func setIconHaloBlurTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1491
1491
|
{
|
|
1492
1492
|
layer.iconHaloBlurTransition = styleValue.getTransition();
|
|
1493
1493
|
}
|
|
1494
1494
|
|
|
1495
|
-
func setIconTranslate(_ layer: inout SymbolLayer, styleValue:
|
|
1495
|
+
func setIconTranslate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1496
1496
|
{
|
|
1497
1497
|
|
|
1498
1498
|
|
|
@@ -1501,12 +1501,12 @@ func setIconTranslate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1501
1501
|
|
|
1502
1502
|
}
|
|
1503
1503
|
|
|
1504
|
-
func setIconTranslateTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1504
|
+
func setIconTranslateTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1505
1505
|
{
|
|
1506
1506
|
layer.iconTranslateTransition = styleValue.getTransition();
|
|
1507
1507
|
}
|
|
1508
1508
|
|
|
1509
|
-
func setIconTranslateAnchor(_ layer: inout SymbolLayer, styleValue:
|
|
1509
|
+
func setIconTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1510
1510
|
{
|
|
1511
1511
|
|
|
1512
1512
|
|
|
@@ -1515,7 +1515,7 @@ func setIconTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
|
|
|
1515
1515
|
|
|
1516
1516
|
}
|
|
1517
1517
|
|
|
1518
|
-
func setTextOpacity(_ layer: inout SymbolLayer, styleValue:
|
|
1518
|
+
func setTextOpacity(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1519
1519
|
{
|
|
1520
1520
|
|
|
1521
1521
|
|
|
@@ -1524,12 +1524,12 @@ func setTextOpacity(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1524
1524
|
|
|
1525
1525
|
}
|
|
1526
1526
|
|
|
1527
|
-
func setTextOpacityTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1527
|
+
func setTextOpacityTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1528
1528
|
{
|
|
1529
1529
|
layer.textOpacityTransition = styleValue.getTransition();
|
|
1530
1530
|
}
|
|
1531
1531
|
|
|
1532
|
-
func setTextColor(_ layer: inout SymbolLayer, styleValue:
|
|
1532
|
+
func setTextColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1533
1533
|
{
|
|
1534
1534
|
|
|
1535
1535
|
|
|
@@ -1538,12 +1538,12 @@ func setTextColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1538
1538
|
|
|
1539
1539
|
}
|
|
1540
1540
|
|
|
1541
|
-
func setTextColorTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1541
|
+
func setTextColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1542
1542
|
{
|
|
1543
1543
|
layer.textColorTransition = styleValue.getTransition();
|
|
1544
1544
|
}
|
|
1545
1545
|
|
|
1546
|
-
func setTextHaloColor(_ layer: inout SymbolLayer, styleValue:
|
|
1546
|
+
func setTextHaloColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1547
1547
|
{
|
|
1548
1548
|
|
|
1549
1549
|
|
|
@@ -1552,12 +1552,12 @@ func setTextHaloColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1552
1552
|
|
|
1553
1553
|
}
|
|
1554
1554
|
|
|
1555
|
-
func setTextHaloColorTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1555
|
+
func setTextHaloColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1556
1556
|
{
|
|
1557
1557
|
layer.textHaloColorTransition = styleValue.getTransition();
|
|
1558
1558
|
}
|
|
1559
1559
|
|
|
1560
|
-
func setTextHaloWidth(_ layer: inout SymbolLayer, styleValue:
|
|
1560
|
+
func setTextHaloWidth(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1561
1561
|
{
|
|
1562
1562
|
|
|
1563
1563
|
|
|
@@ -1566,12 +1566,12 @@ func setTextHaloWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1566
1566
|
|
|
1567
1567
|
}
|
|
1568
1568
|
|
|
1569
|
-
func setTextHaloWidthTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1569
|
+
func setTextHaloWidthTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1570
1570
|
{
|
|
1571
1571
|
layer.textHaloWidthTransition = styleValue.getTransition();
|
|
1572
1572
|
}
|
|
1573
1573
|
|
|
1574
|
-
func setTextHaloBlur(_ layer: inout SymbolLayer, styleValue:
|
|
1574
|
+
func setTextHaloBlur(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1575
1575
|
{
|
|
1576
1576
|
|
|
1577
1577
|
|
|
@@ -1580,12 +1580,12 @@ func setTextHaloBlur(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1580
1580
|
|
|
1581
1581
|
}
|
|
1582
1582
|
|
|
1583
|
-
func setTextHaloBlurTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1583
|
+
func setTextHaloBlurTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1584
1584
|
{
|
|
1585
1585
|
layer.textHaloBlurTransition = styleValue.getTransition();
|
|
1586
1586
|
}
|
|
1587
1587
|
|
|
1588
|
-
func setTextTranslate(_ layer: inout SymbolLayer, styleValue:
|
|
1588
|
+
func setTextTranslate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1589
1589
|
{
|
|
1590
1590
|
|
|
1591
1591
|
|
|
@@ -1594,12 +1594,12 @@ func setTextTranslate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
|
|
|
1594
1594
|
|
|
1595
1595
|
}
|
|
1596
1596
|
|
|
1597
|
-
func setTextTranslateTransition(_ layer: inout SymbolLayer, styleValue:
|
|
1597
|
+
func setTextTranslateTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1598
1598
|
{
|
|
1599
1599
|
layer.textTranslateTransition = styleValue.getTransition();
|
|
1600
1600
|
}
|
|
1601
1601
|
|
|
1602
|
-
func setTextTranslateAnchor(_ layer: inout SymbolLayer, styleValue:
|
|
1602
|
+
func setTextTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
|
|
1603
1603
|
{
|
|
1604
1604
|
|
|
1605
1605
|
|
|
@@ -1610,7 +1610,7 @@ func setTextTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
|
|
|
1610
1610
|
|
|
1611
1611
|
|
|
1612
1612
|
|
|
1613
|
-
func setCircleSortKey(_ layer: inout CircleLayer, styleValue:
|
|
1613
|
+
func setCircleSortKey(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1614
1614
|
{
|
|
1615
1615
|
|
|
1616
1616
|
|
|
@@ -1619,12 +1619,12 @@ func setCircleSortKey(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
|
|
|
1619
1619
|
|
|
1620
1620
|
}
|
|
1621
1621
|
|
|
1622
|
-
func setCircleStyleLayerVisibility(_ layer: inout CircleLayer, styleValue:
|
|
1622
|
+
func setCircleStyleLayerVisibility(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1623
1623
|
{
|
|
1624
1624
|
layer.visibility = styleValue.isVisible();
|
|
1625
1625
|
}
|
|
1626
1626
|
|
|
1627
|
-
func setCircleRadius(_ layer: inout CircleLayer, styleValue:
|
|
1627
|
+
func setCircleRadius(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1628
1628
|
{
|
|
1629
1629
|
|
|
1630
1630
|
|
|
@@ -1633,12 +1633,12 @@ func setCircleRadius(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
|
|
|
1633
1633
|
|
|
1634
1634
|
}
|
|
1635
1635
|
|
|
1636
|
-
func setCircleRadiusTransition(_ layer: inout CircleLayer, styleValue:
|
|
1636
|
+
func setCircleRadiusTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1637
1637
|
{
|
|
1638
1638
|
layer.circleRadiusTransition = styleValue.getTransition();
|
|
1639
1639
|
}
|
|
1640
1640
|
|
|
1641
|
-
func setCircleColor(_ layer: inout CircleLayer, styleValue:
|
|
1641
|
+
func setCircleColor(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1642
1642
|
{
|
|
1643
1643
|
|
|
1644
1644
|
|
|
@@ -1647,12 +1647,12 @@ func setCircleColor(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
|
|
|
1647
1647
|
|
|
1648
1648
|
}
|
|
1649
1649
|
|
|
1650
|
-
func setCircleColorTransition(_ layer: inout CircleLayer, styleValue:
|
|
1650
|
+
func setCircleColorTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1651
1651
|
{
|
|
1652
1652
|
layer.circleColorTransition = styleValue.getTransition();
|
|
1653
1653
|
}
|
|
1654
1654
|
|
|
1655
|
-
func setCircleBlur(_ layer: inout CircleLayer, styleValue:
|
|
1655
|
+
func setCircleBlur(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1656
1656
|
{
|
|
1657
1657
|
|
|
1658
1658
|
|
|
@@ -1661,12 +1661,12 @@ func setCircleBlur(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
|
|
|
1661
1661
|
|
|
1662
1662
|
}
|
|
1663
1663
|
|
|
1664
|
-
func setCircleBlurTransition(_ layer: inout CircleLayer, styleValue:
|
|
1664
|
+
func setCircleBlurTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1665
1665
|
{
|
|
1666
1666
|
layer.circleBlurTransition = styleValue.getTransition();
|
|
1667
1667
|
}
|
|
1668
1668
|
|
|
1669
|
-
func setCircleOpacity(_ layer: inout CircleLayer, styleValue:
|
|
1669
|
+
func setCircleOpacity(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1670
1670
|
{
|
|
1671
1671
|
|
|
1672
1672
|
|
|
@@ -1675,12 +1675,12 @@ func setCircleOpacity(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
|
|
|
1675
1675
|
|
|
1676
1676
|
}
|
|
1677
1677
|
|
|
1678
|
-
func setCircleOpacityTransition(_ layer: inout CircleLayer, styleValue:
|
|
1678
|
+
func setCircleOpacityTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1679
1679
|
{
|
|
1680
1680
|
layer.circleOpacityTransition = styleValue.getTransition();
|
|
1681
1681
|
}
|
|
1682
1682
|
|
|
1683
|
-
func setCircleTranslate(_ layer: inout CircleLayer, styleValue:
|
|
1683
|
+
func setCircleTranslate(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1684
1684
|
{
|
|
1685
1685
|
|
|
1686
1686
|
|
|
@@ -1689,12 +1689,12 @@ func setCircleTranslate(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue
|
|
|
1689
1689
|
|
|
1690
1690
|
}
|
|
1691
1691
|
|
|
1692
|
-
func setCircleTranslateTransition(_ layer: inout CircleLayer, styleValue:
|
|
1692
|
+
func setCircleTranslateTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1693
1693
|
{
|
|
1694
1694
|
layer.circleTranslateTransition = styleValue.getTransition();
|
|
1695
1695
|
}
|
|
1696
1696
|
|
|
1697
|
-
func setCircleTranslateAnchor(_ layer: inout CircleLayer, styleValue:
|
|
1697
|
+
func setCircleTranslateAnchor(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1698
1698
|
{
|
|
1699
1699
|
|
|
1700
1700
|
|
|
@@ -1703,7 +1703,7 @@ func setCircleTranslateAnchor(_ layer: inout CircleLayer, styleValue: RCTMGLStyl
|
|
|
1703
1703
|
|
|
1704
1704
|
}
|
|
1705
1705
|
|
|
1706
|
-
func setCirclePitchScale(_ layer: inout CircleLayer, styleValue:
|
|
1706
|
+
func setCirclePitchScale(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1707
1707
|
{
|
|
1708
1708
|
|
|
1709
1709
|
|
|
@@ -1712,7 +1712,7 @@ func setCirclePitchScale(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValu
|
|
|
1712
1712
|
|
|
1713
1713
|
}
|
|
1714
1714
|
|
|
1715
|
-
func setCirclePitchAlignment(_ layer: inout CircleLayer, styleValue:
|
|
1715
|
+
func setCirclePitchAlignment(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1716
1716
|
{
|
|
1717
1717
|
|
|
1718
1718
|
|
|
@@ -1721,7 +1721,7 @@ func setCirclePitchAlignment(_ layer: inout CircleLayer, styleValue: RCTMGLStyle
|
|
|
1721
1721
|
|
|
1722
1722
|
}
|
|
1723
1723
|
|
|
1724
|
-
func setCircleStrokeWidth(_ layer: inout CircleLayer, styleValue:
|
|
1724
|
+
func setCircleStrokeWidth(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1725
1725
|
{
|
|
1726
1726
|
|
|
1727
1727
|
|
|
@@ -1730,12 +1730,12 @@ func setCircleStrokeWidth(_ layer: inout CircleLayer, styleValue: RCTMGLStyleVal
|
|
|
1730
1730
|
|
|
1731
1731
|
}
|
|
1732
1732
|
|
|
1733
|
-
func setCircleStrokeWidthTransition(_ layer: inout CircleLayer, styleValue:
|
|
1733
|
+
func setCircleStrokeWidthTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1734
1734
|
{
|
|
1735
1735
|
layer.circleStrokeWidthTransition = styleValue.getTransition();
|
|
1736
1736
|
}
|
|
1737
1737
|
|
|
1738
|
-
func setCircleStrokeColor(_ layer: inout CircleLayer, styleValue:
|
|
1738
|
+
func setCircleStrokeColor(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1739
1739
|
{
|
|
1740
1740
|
|
|
1741
1741
|
|
|
@@ -1744,12 +1744,12 @@ func setCircleStrokeColor(_ layer: inout CircleLayer, styleValue: RCTMGLStyleVal
|
|
|
1744
1744
|
|
|
1745
1745
|
}
|
|
1746
1746
|
|
|
1747
|
-
func setCircleStrokeColorTransition(_ layer: inout CircleLayer, styleValue:
|
|
1747
|
+
func setCircleStrokeColorTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1748
1748
|
{
|
|
1749
1749
|
layer.circleStrokeColorTransition = styleValue.getTransition();
|
|
1750
1750
|
}
|
|
1751
1751
|
|
|
1752
|
-
func setCircleStrokeOpacity(_ layer: inout CircleLayer, styleValue:
|
|
1752
|
+
func setCircleStrokeOpacity(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1753
1753
|
{
|
|
1754
1754
|
|
|
1755
1755
|
|
|
@@ -1758,19 +1758,19 @@ func setCircleStrokeOpacity(_ layer: inout CircleLayer, styleValue: RCTMGLStyleV
|
|
|
1758
1758
|
|
|
1759
1759
|
}
|
|
1760
1760
|
|
|
1761
|
-
func setCircleStrokeOpacityTransition(_ layer: inout CircleLayer, styleValue:
|
|
1761
|
+
func setCircleStrokeOpacityTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
|
|
1762
1762
|
{
|
|
1763
1763
|
layer.circleStrokeOpacityTransition = styleValue.getTransition();
|
|
1764
1764
|
}
|
|
1765
1765
|
|
|
1766
1766
|
|
|
1767
1767
|
|
|
1768
|
-
func setHeatmapStyleLayerVisibility(_ layer: inout HeatmapLayer, styleValue:
|
|
1768
|
+
func setHeatmapStyleLayerVisibility(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1769
1769
|
{
|
|
1770
1770
|
layer.visibility = styleValue.isVisible();
|
|
1771
1771
|
}
|
|
1772
1772
|
|
|
1773
|
-
func setHeatmapRadius(_ layer: inout HeatmapLayer, styleValue:
|
|
1773
|
+
func setHeatmapRadius(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1774
1774
|
{
|
|
1775
1775
|
|
|
1776
1776
|
|
|
@@ -1779,12 +1779,12 @@ func setHeatmapRadius(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
|
|
|
1779
1779
|
|
|
1780
1780
|
}
|
|
1781
1781
|
|
|
1782
|
-
func setHeatmapRadiusTransition(_ layer: inout HeatmapLayer, styleValue:
|
|
1782
|
+
func setHeatmapRadiusTransition(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1783
1783
|
{
|
|
1784
1784
|
layer.heatmapRadiusTransition = styleValue.getTransition();
|
|
1785
1785
|
}
|
|
1786
1786
|
|
|
1787
|
-
func setHeatmapWeight(_ layer: inout HeatmapLayer, styleValue:
|
|
1787
|
+
func setHeatmapWeight(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1788
1788
|
{
|
|
1789
1789
|
|
|
1790
1790
|
|
|
@@ -1793,7 +1793,7 @@ func setHeatmapWeight(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
|
|
|
1793
1793
|
|
|
1794
1794
|
}
|
|
1795
1795
|
|
|
1796
|
-
func setHeatmapIntensity(_ layer: inout HeatmapLayer, styleValue:
|
|
1796
|
+
func setHeatmapIntensity(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1797
1797
|
{
|
|
1798
1798
|
|
|
1799
1799
|
|
|
@@ -1802,12 +1802,12 @@ func setHeatmapIntensity(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleVal
|
|
|
1802
1802
|
|
|
1803
1803
|
}
|
|
1804
1804
|
|
|
1805
|
-
func setHeatmapIntensityTransition(_ layer: inout HeatmapLayer, styleValue:
|
|
1805
|
+
func setHeatmapIntensityTransition(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1806
1806
|
{
|
|
1807
1807
|
layer.heatmapIntensityTransition = styleValue.getTransition();
|
|
1808
1808
|
}
|
|
1809
1809
|
|
|
1810
|
-
func setHeatmapColor(_ layer: inout HeatmapLayer, styleValue:
|
|
1810
|
+
func setHeatmapColor(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1811
1811
|
{
|
|
1812
1812
|
|
|
1813
1813
|
|
|
@@ -1816,7 +1816,7 @@ func setHeatmapColor(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
|
|
|
1816
1816
|
|
|
1817
1817
|
}
|
|
1818
1818
|
|
|
1819
|
-
func setHeatmapOpacity(_ layer: inout HeatmapLayer, styleValue:
|
|
1819
|
+
func setHeatmapOpacity(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1820
1820
|
{
|
|
1821
1821
|
|
|
1822
1822
|
|
|
@@ -1825,19 +1825,19 @@ func setHeatmapOpacity(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue
|
|
|
1825
1825
|
|
|
1826
1826
|
}
|
|
1827
1827
|
|
|
1828
|
-
func setHeatmapOpacityTransition(_ layer: inout HeatmapLayer, styleValue:
|
|
1828
|
+
func setHeatmapOpacityTransition(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
|
|
1829
1829
|
{
|
|
1830
1830
|
layer.heatmapOpacityTransition = styleValue.getTransition();
|
|
1831
1831
|
}
|
|
1832
1832
|
|
|
1833
1833
|
|
|
1834
1834
|
|
|
1835
|
-
func setFillExtrusionStyleLayerVisibility(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1835
|
+
func setFillExtrusionStyleLayerVisibility(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1836
1836
|
{
|
|
1837
1837
|
layer.visibility = styleValue.isVisible();
|
|
1838
1838
|
}
|
|
1839
1839
|
|
|
1840
|
-
func setFillExtrusionOpacity(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1840
|
+
func setFillExtrusionOpacity(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1841
1841
|
{
|
|
1842
1842
|
|
|
1843
1843
|
|
|
@@ -1846,12 +1846,12 @@ func setFillExtrusionOpacity(_ layer: inout FillExtrusionLayer, styleValue: RCTM
|
|
|
1846
1846
|
|
|
1847
1847
|
}
|
|
1848
1848
|
|
|
1849
|
-
func setFillExtrusionOpacityTransition(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1849
|
+
func setFillExtrusionOpacityTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1850
1850
|
{
|
|
1851
1851
|
layer.fillExtrusionOpacityTransition = styleValue.getTransition();
|
|
1852
1852
|
}
|
|
1853
1853
|
|
|
1854
|
-
func setFillExtrusionColor(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1854
|
+
func setFillExtrusionColor(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1855
1855
|
{
|
|
1856
1856
|
|
|
1857
1857
|
|
|
@@ -1860,12 +1860,12 @@ func setFillExtrusionColor(_ layer: inout FillExtrusionLayer, styleValue: RCTMGL
|
|
|
1860
1860
|
|
|
1861
1861
|
}
|
|
1862
1862
|
|
|
1863
|
-
func setFillExtrusionColorTransition(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1863
|
+
func setFillExtrusionColorTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1864
1864
|
{
|
|
1865
1865
|
layer.fillExtrusionColorTransition = styleValue.getTransition();
|
|
1866
1866
|
}
|
|
1867
1867
|
|
|
1868
|
-
func setFillExtrusionTranslate(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1868
|
+
func setFillExtrusionTranslate(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1869
1869
|
{
|
|
1870
1870
|
|
|
1871
1871
|
|
|
@@ -1874,12 +1874,12 @@ func setFillExtrusionTranslate(_ layer: inout FillExtrusionLayer, styleValue: RC
|
|
|
1874
1874
|
|
|
1875
1875
|
}
|
|
1876
1876
|
|
|
1877
|
-
func setFillExtrusionTranslateTransition(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1877
|
+
func setFillExtrusionTranslateTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1878
1878
|
{
|
|
1879
1879
|
layer.fillExtrusionTranslateTransition = styleValue.getTransition();
|
|
1880
1880
|
}
|
|
1881
1881
|
|
|
1882
|
-
func setFillExtrusionTranslateAnchor(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1882
|
+
func setFillExtrusionTranslateAnchor(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1883
1883
|
{
|
|
1884
1884
|
|
|
1885
1885
|
|
|
@@ -1888,7 +1888,7 @@ func setFillExtrusionTranslateAnchor(_ layer: inout FillExtrusionLayer, styleVal
|
|
|
1888
1888
|
|
|
1889
1889
|
}
|
|
1890
1890
|
|
|
1891
|
-
func setFillExtrusionPattern(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1891
|
+
func setFillExtrusionPattern(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1892
1892
|
{
|
|
1893
1893
|
|
|
1894
1894
|
|
|
@@ -1897,7 +1897,7 @@ func setFillExtrusionPattern(_ layer: inout FillExtrusionLayer, styleValue: RCTM
|
|
|
1897
1897
|
|
|
1898
1898
|
}
|
|
1899
1899
|
|
|
1900
|
-
func setFillExtrusionHeight(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1900
|
+
func setFillExtrusionHeight(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1901
1901
|
{
|
|
1902
1902
|
|
|
1903
1903
|
|
|
@@ -1906,12 +1906,12 @@ func setFillExtrusionHeight(_ layer: inout FillExtrusionLayer, styleValue: RCTMG
|
|
|
1906
1906
|
|
|
1907
1907
|
}
|
|
1908
1908
|
|
|
1909
|
-
func setFillExtrusionHeightTransition(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1909
|
+
func setFillExtrusionHeightTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1910
1910
|
{
|
|
1911
1911
|
layer.fillExtrusionHeightTransition = styleValue.getTransition();
|
|
1912
1912
|
}
|
|
1913
1913
|
|
|
1914
|
-
func setFillExtrusionBase(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1914
|
+
func setFillExtrusionBase(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1915
1915
|
{
|
|
1916
1916
|
|
|
1917
1917
|
|
|
@@ -1920,12 +1920,12 @@ func setFillExtrusionBase(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLS
|
|
|
1920
1920
|
|
|
1921
1921
|
}
|
|
1922
1922
|
|
|
1923
|
-
func setFillExtrusionBaseTransition(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1923
|
+
func setFillExtrusionBaseTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1924
1924
|
{
|
|
1925
1925
|
layer.fillExtrusionBaseTransition = styleValue.getTransition();
|
|
1926
1926
|
}
|
|
1927
1927
|
|
|
1928
|
-
func setFillExtrusionVerticalGradient(_ layer: inout FillExtrusionLayer, styleValue:
|
|
1928
|
+
func setFillExtrusionVerticalGradient(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
|
|
1929
1929
|
{
|
|
1930
1930
|
|
|
1931
1931
|
|
|
@@ -1936,12 +1936,12 @@ func setFillExtrusionVerticalGradient(_ layer: inout FillExtrusionLayer, styleVa
|
|
|
1936
1936
|
|
|
1937
1937
|
|
|
1938
1938
|
|
|
1939
|
-
func setRasterStyleLayerVisibility(_ layer: inout RasterLayer, styleValue:
|
|
1939
|
+
func setRasterStyleLayerVisibility(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1940
1940
|
{
|
|
1941
1941
|
layer.visibility = styleValue.isVisible();
|
|
1942
1942
|
}
|
|
1943
1943
|
|
|
1944
|
-
func setRasterOpacity(_ layer: inout RasterLayer, styleValue:
|
|
1944
|
+
func setRasterOpacity(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1945
1945
|
{
|
|
1946
1946
|
|
|
1947
1947
|
|
|
@@ -1950,12 +1950,12 @@ func setRasterOpacity(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
|
|
|
1950
1950
|
|
|
1951
1951
|
}
|
|
1952
1952
|
|
|
1953
|
-
func setRasterOpacityTransition(_ layer: inout RasterLayer, styleValue:
|
|
1953
|
+
func setRasterOpacityTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1954
1954
|
{
|
|
1955
1955
|
layer.rasterOpacityTransition = styleValue.getTransition();
|
|
1956
1956
|
}
|
|
1957
1957
|
|
|
1958
|
-
func setRasterHueRotate(_ layer: inout RasterLayer, styleValue:
|
|
1958
|
+
func setRasterHueRotate(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1959
1959
|
{
|
|
1960
1960
|
|
|
1961
1961
|
|
|
@@ -1964,12 +1964,12 @@ func setRasterHueRotate(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue
|
|
|
1964
1964
|
|
|
1965
1965
|
}
|
|
1966
1966
|
|
|
1967
|
-
func setRasterHueRotateTransition(_ layer: inout RasterLayer, styleValue:
|
|
1967
|
+
func setRasterHueRotateTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1968
1968
|
{
|
|
1969
1969
|
layer.rasterHueRotateTransition = styleValue.getTransition();
|
|
1970
1970
|
}
|
|
1971
1971
|
|
|
1972
|
-
func setRasterBrightnessMin(_ layer: inout RasterLayer, styleValue:
|
|
1972
|
+
func setRasterBrightnessMin(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1973
1973
|
{
|
|
1974
1974
|
|
|
1975
1975
|
|
|
@@ -1978,12 +1978,12 @@ func setRasterBrightnessMin(_ layer: inout RasterLayer, styleValue: RCTMGLStyleV
|
|
|
1978
1978
|
|
|
1979
1979
|
}
|
|
1980
1980
|
|
|
1981
|
-
func setRasterBrightnessMinTransition(_ layer: inout RasterLayer, styleValue:
|
|
1981
|
+
func setRasterBrightnessMinTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1982
1982
|
{
|
|
1983
1983
|
layer.rasterBrightnessMinTransition = styleValue.getTransition();
|
|
1984
1984
|
}
|
|
1985
1985
|
|
|
1986
|
-
func setRasterBrightnessMax(_ layer: inout RasterLayer, styleValue:
|
|
1986
|
+
func setRasterBrightnessMax(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1987
1987
|
{
|
|
1988
1988
|
|
|
1989
1989
|
|
|
@@ -1992,12 +1992,12 @@ func setRasterBrightnessMax(_ layer: inout RasterLayer, styleValue: RCTMGLStyleV
|
|
|
1992
1992
|
|
|
1993
1993
|
}
|
|
1994
1994
|
|
|
1995
|
-
func setRasterBrightnessMaxTransition(_ layer: inout RasterLayer, styleValue:
|
|
1995
|
+
func setRasterBrightnessMaxTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
1996
1996
|
{
|
|
1997
1997
|
layer.rasterBrightnessMaxTransition = styleValue.getTransition();
|
|
1998
1998
|
}
|
|
1999
1999
|
|
|
2000
|
-
func setRasterSaturation(_ layer: inout RasterLayer, styleValue:
|
|
2000
|
+
func setRasterSaturation(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
2001
2001
|
{
|
|
2002
2002
|
|
|
2003
2003
|
|
|
@@ -2006,12 +2006,12 @@ func setRasterSaturation(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValu
|
|
|
2006
2006
|
|
|
2007
2007
|
}
|
|
2008
2008
|
|
|
2009
|
-
func setRasterSaturationTransition(_ layer: inout RasterLayer, styleValue:
|
|
2009
|
+
func setRasterSaturationTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
2010
2010
|
{
|
|
2011
2011
|
layer.rasterSaturationTransition = styleValue.getTransition();
|
|
2012
2012
|
}
|
|
2013
2013
|
|
|
2014
|
-
func setRasterContrast(_ layer: inout RasterLayer, styleValue:
|
|
2014
|
+
func setRasterContrast(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
2015
2015
|
{
|
|
2016
2016
|
|
|
2017
2017
|
|
|
@@ -2020,12 +2020,12 @@ func setRasterContrast(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
|
|
|
2020
2020
|
|
|
2021
2021
|
}
|
|
2022
2022
|
|
|
2023
|
-
func setRasterContrastTransition(_ layer: inout RasterLayer, styleValue:
|
|
2023
|
+
func setRasterContrastTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
2024
2024
|
{
|
|
2025
2025
|
layer.rasterContrastTransition = styleValue.getTransition();
|
|
2026
2026
|
}
|
|
2027
2027
|
|
|
2028
|
-
func setRasterResampling(_ layer: inout RasterLayer, styleValue:
|
|
2028
|
+
func setRasterResampling(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
2029
2029
|
{
|
|
2030
2030
|
|
|
2031
2031
|
|
|
@@ -2034,7 +2034,7 @@ func setRasterResampling(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValu
|
|
|
2034
2034
|
|
|
2035
2035
|
}
|
|
2036
2036
|
|
|
2037
|
-
func setRasterFadeDuration(_ layer: inout RasterLayer, styleValue:
|
|
2037
|
+
func setRasterFadeDuration(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
|
|
2038
2038
|
{
|
|
2039
2039
|
|
|
2040
2040
|
|
|
@@ -2045,12 +2045,12 @@ func setRasterFadeDuration(_ layer: inout RasterLayer, styleValue: RCTMGLStyleVa
|
|
|
2045
2045
|
|
|
2046
2046
|
|
|
2047
2047
|
|
|
2048
|
-
func setHillshadeStyleLayerVisibility(_ layer: inout HillshadeLayer, styleValue:
|
|
2048
|
+
func setHillshadeStyleLayerVisibility(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2049
2049
|
{
|
|
2050
2050
|
layer.visibility = styleValue.isVisible();
|
|
2051
2051
|
}
|
|
2052
2052
|
|
|
2053
|
-
func setHillshadeIlluminationDirection(_ layer: inout HillshadeLayer, styleValue:
|
|
2053
|
+
func setHillshadeIlluminationDirection(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2054
2054
|
{
|
|
2055
2055
|
|
|
2056
2056
|
|
|
@@ -2059,7 +2059,7 @@ func setHillshadeIlluminationDirection(_ layer: inout HillshadeLayer, styleValue
|
|
|
2059
2059
|
|
|
2060
2060
|
}
|
|
2061
2061
|
|
|
2062
|
-
func setHillshadeIlluminationAnchor(_ layer: inout HillshadeLayer, styleValue:
|
|
2062
|
+
func setHillshadeIlluminationAnchor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2063
2063
|
{
|
|
2064
2064
|
|
|
2065
2065
|
|
|
@@ -2068,7 +2068,7 @@ func setHillshadeIlluminationAnchor(_ layer: inout HillshadeLayer, styleValue: R
|
|
|
2068
2068
|
|
|
2069
2069
|
}
|
|
2070
2070
|
|
|
2071
|
-
func setHillshadeExaggeration(_ layer: inout HillshadeLayer, styleValue:
|
|
2071
|
+
func setHillshadeExaggeration(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2072
2072
|
{
|
|
2073
2073
|
|
|
2074
2074
|
|
|
@@ -2077,12 +2077,12 @@ func setHillshadeExaggeration(_ layer: inout HillshadeLayer, styleValue: RCTMGLS
|
|
|
2077
2077
|
|
|
2078
2078
|
}
|
|
2079
2079
|
|
|
2080
|
-
func setHillshadeExaggerationTransition(_ layer: inout HillshadeLayer, styleValue:
|
|
2080
|
+
func setHillshadeExaggerationTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2081
2081
|
{
|
|
2082
2082
|
layer.hillshadeExaggerationTransition = styleValue.getTransition();
|
|
2083
2083
|
}
|
|
2084
2084
|
|
|
2085
|
-
func setHillshadeShadowColor(_ layer: inout HillshadeLayer, styleValue:
|
|
2085
|
+
func setHillshadeShadowColor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2086
2086
|
{
|
|
2087
2087
|
|
|
2088
2088
|
|
|
@@ -2091,12 +2091,12 @@ func setHillshadeShadowColor(_ layer: inout HillshadeLayer, styleValue: RCTMGLSt
|
|
|
2091
2091
|
|
|
2092
2092
|
}
|
|
2093
2093
|
|
|
2094
|
-
func setHillshadeShadowColorTransition(_ layer: inout HillshadeLayer, styleValue:
|
|
2094
|
+
func setHillshadeShadowColorTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2095
2095
|
{
|
|
2096
2096
|
layer.hillshadeShadowColorTransition = styleValue.getTransition();
|
|
2097
2097
|
}
|
|
2098
2098
|
|
|
2099
|
-
func setHillshadeHighlightColor(_ layer: inout HillshadeLayer, styleValue:
|
|
2099
|
+
func setHillshadeHighlightColor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2100
2100
|
{
|
|
2101
2101
|
|
|
2102
2102
|
|
|
@@ -2105,12 +2105,12 @@ func setHillshadeHighlightColor(_ layer: inout HillshadeLayer, styleValue: RCTMG
|
|
|
2105
2105
|
|
|
2106
2106
|
}
|
|
2107
2107
|
|
|
2108
|
-
func setHillshadeHighlightColorTransition(_ layer: inout HillshadeLayer, styleValue:
|
|
2108
|
+
func setHillshadeHighlightColorTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2109
2109
|
{
|
|
2110
2110
|
layer.hillshadeHighlightColorTransition = styleValue.getTransition();
|
|
2111
2111
|
}
|
|
2112
2112
|
|
|
2113
|
-
func setHillshadeAccentColor(_ layer: inout HillshadeLayer, styleValue:
|
|
2113
|
+
func setHillshadeAccentColor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2114
2114
|
{
|
|
2115
2115
|
|
|
2116
2116
|
|
|
@@ -2119,19 +2119,19 @@ func setHillshadeAccentColor(_ layer: inout HillshadeLayer, styleValue: RCTMGLSt
|
|
|
2119
2119
|
|
|
2120
2120
|
}
|
|
2121
2121
|
|
|
2122
|
-
func setHillshadeAccentColorTransition(_ layer: inout HillshadeLayer, styleValue:
|
|
2122
|
+
func setHillshadeAccentColorTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
|
|
2123
2123
|
{
|
|
2124
2124
|
layer.hillshadeAccentColorTransition = styleValue.getTransition();
|
|
2125
2125
|
}
|
|
2126
2126
|
|
|
2127
2127
|
|
|
2128
2128
|
|
|
2129
|
-
func setBackgroundStyleLayerVisibility(_ layer: inout BackgroundLayer, styleValue:
|
|
2129
|
+
func setBackgroundStyleLayerVisibility(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
|
|
2130
2130
|
{
|
|
2131
2131
|
layer.visibility = styleValue.isVisible();
|
|
2132
2132
|
}
|
|
2133
2133
|
|
|
2134
|
-
func setBackgroundColor(_ layer: inout BackgroundLayer, styleValue:
|
|
2134
|
+
func setBackgroundColor(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
|
|
2135
2135
|
{
|
|
2136
2136
|
|
|
2137
2137
|
|
|
@@ -2140,12 +2140,12 @@ func setBackgroundColor(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleV
|
|
|
2140
2140
|
|
|
2141
2141
|
}
|
|
2142
2142
|
|
|
2143
|
-
func setBackgroundColorTransition(_ layer: inout BackgroundLayer, styleValue:
|
|
2143
|
+
func setBackgroundColorTransition(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
|
|
2144
2144
|
{
|
|
2145
2145
|
layer.backgroundColorTransition = styleValue.getTransition();
|
|
2146
2146
|
}
|
|
2147
2147
|
|
|
2148
|
-
func setBackgroundPattern(_ layer: inout BackgroundLayer, styleValue:
|
|
2148
|
+
func setBackgroundPattern(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
|
|
2149
2149
|
{
|
|
2150
2150
|
|
|
2151
2151
|
|
|
@@ -2154,7 +2154,7 @@ func setBackgroundPattern(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyl
|
|
|
2154
2154
|
|
|
2155
2155
|
}
|
|
2156
2156
|
|
|
2157
|
-
func setBackgroundOpacity(_ layer: inout BackgroundLayer, styleValue:
|
|
2157
|
+
func setBackgroundOpacity(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
|
|
2158
2158
|
{
|
|
2159
2159
|
|
|
2160
2160
|
|
|
@@ -2163,19 +2163,19 @@ func setBackgroundOpacity(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyl
|
|
|
2163
2163
|
|
|
2164
2164
|
}
|
|
2165
2165
|
|
|
2166
|
-
func setBackgroundOpacityTransition(_ layer: inout BackgroundLayer, styleValue:
|
|
2166
|
+
func setBackgroundOpacityTransition(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
|
|
2167
2167
|
{
|
|
2168
2168
|
layer.backgroundOpacityTransition = styleValue.getTransition();
|
|
2169
2169
|
}
|
|
2170
2170
|
|
|
2171
2171
|
|
|
2172
2172
|
|
|
2173
|
-
func setSkyStyleLayerVisibility(_ layer: inout SkyLayer, styleValue:
|
|
2173
|
+
func setSkyStyleLayerVisibility(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2174
2174
|
{
|
|
2175
2175
|
layer.visibility = styleValue.isVisible();
|
|
2176
2176
|
}
|
|
2177
2177
|
|
|
2178
|
-
func setSkyType(_ layer: inout SkyLayer, styleValue:
|
|
2178
|
+
func setSkyType(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2179
2179
|
{
|
|
2180
2180
|
|
|
2181
2181
|
|
|
@@ -2184,7 +2184,7 @@ func setSkyType(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
|
|
|
2184
2184
|
|
|
2185
2185
|
}
|
|
2186
2186
|
|
|
2187
|
-
func setSkyAtmosphereSun(_ layer: inout SkyLayer, styleValue:
|
|
2187
|
+
func setSkyAtmosphereSun(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2188
2188
|
{
|
|
2189
2189
|
|
|
2190
2190
|
|
|
@@ -2193,7 +2193,7 @@ func setSkyAtmosphereSun(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
|
|
|
2193
2193
|
|
|
2194
2194
|
}
|
|
2195
2195
|
|
|
2196
|
-
func setSkyAtmosphereSunIntensity(_ layer: inout SkyLayer, styleValue:
|
|
2196
|
+
func setSkyAtmosphereSunIntensity(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2197
2197
|
{
|
|
2198
2198
|
|
|
2199
2199
|
|
|
@@ -2202,7 +2202,7 @@ func setSkyAtmosphereSunIntensity(_ layer: inout SkyLayer, styleValue: RCTMGLSty
|
|
|
2202
2202
|
|
|
2203
2203
|
}
|
|
2204
2204
|
|
|
2205
|
-
func setSkyGradientCenter(_ layer: inout SkyLayer, styleValue:
|
|
2205
|
+
func setSkyGradientCenter(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2206
2206
|
{
|
|
2207
2207
|
|
|
2208
2208
|
|
|
@@ -2211,7 +2211,7 @@ func setSkyGradientCenter(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
|
|
|
2211
2211
|
|
|
2212
2212
|
}
|
|
2213
2213
|
|
|
2214
|
-
func setSkyGradientRadius(_ layer: inout SkyLayer, styleValue:
|
|
2214
|
+
func setSkyGradientRadius(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2215
2215
|
{
|
|
2216
2216
|
|
|
2217
2217
|
|
|
@@ -2220,7 +2220,7 @@ func setSkyGradientRadius(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
|
|
|
2220
2220
|
|
|
2221
2221
|
}
|
|
2222
2222
|
|
|
2223
|
-
func setSkyGradient(_ layer: inout SkyLayer, styleValue:
|
|
2223
|
+
func setSkyGradient(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2224
2224
|
{
|
|
2225
2225
|
|
|
2226
2226
|
|
|
@@ -2229,7 +2229,7 @@ func setSkyGradient(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
|
|
|
2229
2229
|
|
|
2230
2230
|
}
|
|
2231
2231
|
|
|
2232
|
-
func setSkyAtmosphereHaloColor(_ layer: inout SkyLayer, styleValue:
|
|
2232
|
+
func setSkyAtmosphereHaloColor(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2233
2233
|
{
|
|
2234
2234
|
|
|
2235
2235
|
|
|
@@ -2238,7 +2238,7 @@ func setSkyAtmosphereHaloColor(_ layer: inout SkyLayer, styleValue: RCTMGLStyleV
|
|
|
2238
2238
|
|
|
2239
2239
|
}
|
|
2240
2240
|
|
|
2241
|
-
func setSkyAtmosphereColor(_ layer: inout SkyLayer, styleValue:
|
|
2241
|
+
func setSkyAtmosphereColor(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2242
2242
|
{
|
|
2243
2243
|
|
|
2244
2244
|
|
|
@@ -2247,7 +2247,7 @@ func setSkyAtmosphereColor(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue
|
|
|
2247
2247
|
|
|
2248
2248
|
}
|
|
2249
2249
|
|
|
2250
|
-
func setSkyOpacity(_ layer: inout SkyLayer, styleValue:
|
|
2250
|
+
func setSkyOpacity(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2251
2251
|
{
|
|
2252
2252
|
|
|
2253
2253
|
|
|
@@ -2256,14 +2256,14 @@ func setSkyOpacity(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
|
|
|
2256
2256
|
|
|
2257
2257
|
}
|
|
2258
2258
|
|
|
2259
|
-
func setSkyOpacityTransition(_ layer: inout SkyLayer, styleValue:
|
|
2259
|
+
func setSkyOpacityTransition(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
|
|
2260
2260
|
{
|
|
2261
2261
|
layer.skyOpacityTransition = styleValue.getTransition();
|
|
2262
2262
|
}
|
|
2263
2263
|
|
|
2264
2264
|
|
|
2265
2265
|
|
|
2266
|
-
func setAnchor(_ layer: inout Light, styleValue:
|
|
2266
|
+
func setAnchor(_ layer: inout Light, styleValue: RNMBXStyleValue)
|
|
2267
2267
|
{
|
|
2268
2268
|
|
|
2269
2269
|
|
|
@@ -2272,17 +2272,17 @@ func setAnchor(_ layer: inout Light, styleValue: RCTMGLStyleValue)
|
|
|
2272
2272
|
|
|
2273
2273
|
}
|
|
2274
2274
|
|
|
2275
|
-
func setPosition(_ layer: inout Light, styleValue:
|
|
2275
|
+
func setPosition(_ layer: inout Light, styleValue: RNMBXStyleValue)
|
|
2276
2276
|
{
|
|
2277
2277
|
layer.position = styleValue.getSphericalPosition();
|
|
2278
2278
|
}
|
|
2279
2279
|
|
|
2280
|
-
func setPositionTransition(_ layer: inout Light, styleValue:
|
|
2280
|
+
func setPositionTransition(_ layer: inout Light, styleValue: RNMBXStyleValue)
|
|
2281
2281
|
{
|
|
2282
2282
|
layer.positionTransition = styleValue.getTransition();
|
|
2283
2283
|
}
|
|
2284
2284
|
|
|
2285
|
-
func setColor(_ layer: inout Light, styleValue:
|
|
2285
|
+
func setColor(_ layer: inout Light, styleValue: RNMBXStyleValue)
|
|
2286
2286
|
{
|
|
2287
2287
|
|
|
2288
2288
|
|
|
@@ -2291,12 +2291,12 @@ func setColor(_ layer: inout Light, styleValue: RCTMGLStyleValue)
|
|
|
2291
2291
|
|
|
2292
2292
|
}
|
|
2293
2293
|
|
|
2294
|
-
func setColorTransition(_ layer: inout Light, styleValue:
|
|
2294
|
+
func setColorTransition(_ layer: inout Light, styleValue: RNMBXStyleValue)
|
|
2295
2295
|
{
|
|
2296
2296
|
layer.colorTransition = styleValue.getTransition();
|
|
2297
2297
|
}
|
|
2298
2298
|
|
|
2299
|
-
func setIntensity(_ layer: inout Light, styleValue:
|
|
2299
|
+
func setIntensity(_ layer: inout Light, styleValue: RNMBXStyleValue)
|
|
2300
2300
|
{
|
|
2301
2301
|
|
|
2302
2302
|
|
|
@@ -2305,14 +2305,14 @@ func setIntensity(_ layer: inout Light, styleValue: RCTMGLStyleValue)
|
|
|
2305
2305
|
|
|
2306
2306
|
}
|
|
2307
2307
|
|
|
2308
|
-
func setIntensityTransition(_ layer: inout Light, styleValue:
|
|
2308
|
+
func setIntensityTransition(_ layer: inout Light, styleValue: RNMBXStyleValue)
|
|
2309
2309
|
{
|
|
2310
2310
|
layer.intensityTransition = styleValue.getTransition();
|
|
2311
2311
|
}
|
|
2312
2312
|
|
|
2313
2313
|
|
|
2314
2314
|
|
|
2315
|
-
func setRange(_ layer: inout Atmosphere, styleValue:
|
|
2315
|
+
func setRange(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2316
2316
|
{
|
|
2317
2317
|
|
|
2318
2318
|
|
|
@@ -2321,12 +2321,12 @@ func setRange(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
|
|
|
2321
2321
|
|
|
2322
2322
|
}
|
|
2323
2323
|
|
|
2324
|
-
func setRangeTransition(_ layer: inout Atmosphere, styleValue:
|
|
2324
|
+
func setRangeTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2325
2325
|
{
|
|
2326
2326
|
layer.rangeTransition = styleValue.getTransition();
|
|
2327
2327
|
}
|
|
2328
2328
|
|
|
2329
|
-
func setColor(_ layer: inout Atmosphere, styleValue:
|
|
2329
|
+
func setColor(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2330
2330
|
{
|
|
2331
2331
|
|
|
2332
2332
|
|
|
@@ -2335,12 +2335,12 @@ func setColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
|
|
|
2335
2335
|
|
|
2336
2336
|
}
|
|
2337
2337
|
|
|
2338
|
-
func setColorTransition(_ layer: inout Atmosphere, styleValue:
|
|
2338
|
+
func setColorTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2339
2339
|
{
|
|
2340
2340
|
layer.colorTransition = styleValue.getTransition();
|
|
2341
2341
|
}
|
|
2342
2342
|
|
|
2343
|
-
func setHighColor(_ layer: inout Atmosphere, styleValue:
|
|
2343
|
+
func setHighColor(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2344
2344
|
{
|
|
2345
2345
|
|
|
2346
2346
|
|
|
@@ -2349,12 +2349,12 @@ func setHighColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
|
|
|
2349
2349
|
|
|
2350
2350
|
}
|
|
2351
2351
|
|
|
2352
|
-
func setHighColorTransition(_ layer: inout Atmosphere, styleValue:
|
|
2352
|
+
func setHighColorTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2353
2353
|
{
|
|
2354
2354
|
layer.highColorTransition = styleValue.getTransition();
|
|
2355
2355
|
}
|
|
2356
2356
|
|
|
2357
|
-
func setSpaceColor(_ layer: inout Atmosphere, styleValue:
|
|
2357
|
+
func setSpaceColor(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2358
2358
|
{
|
|
2359
2359
|
|
|
2360
2360
|
|
|
@@ -2363,12 +2363,12 @@ func setSpaceColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
|
|
|
2363
2363
|
|
|
2364
2364
|
}
|
|
2365
2365
|
|
|
2366
|
-
func setSpaceColorTransition(_ layer: inout Atmosphere, styleValue:
|
|
2366
|
+
func setSpaceColorTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2367
2367
|
{
|
|
2368
2368
|
layer.spaceColorTransition = styleValue.getTransition();
|
|
2369
2369
|
}
|
|
2370
2370
|
|
|
2371
|
-
func setHorizonBlend(_ layer: inout Atmosphere, styleValue:
|
|
2371
|
+
func setHorizonBlend(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2372
2372
|
{
|
|
2373
2373
|
|
|
2374
2374
|
|
|
@@ -2377,12 +2377,12 @@ func setHorizonBlend(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
|
|
|
2377
2377
|
|
|
2378
2378
|
}
|
|
2379
2379
|
|
|
2380
|
-
func setHorizonBlendTransition(_ layer: inout Atmosphere, styleValue:
|
|
2380
|
+
func setHorizonBlendTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2381
2381
|
{
|
|
2382
2382
|
layer.horizonBlendTransition = styleValue.getTransition();
|
|
2383
2383
|
}
|
|
2384
2384
|
|
|
2385
|
-
func setStarIntensity(_ layer: inout Atmosphere, styleValue:
|
|
2385
|
+
func setStarIntensity(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2386
2386
|
{
|
|
2387
2387
|
|
|
2388
2388
|
|
|
@@ -2391,14 +2391,14 @@ func setStarIntensity(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
|
|
|
2391
2391
|
|
|
2392
2392
|
}
|
|
2393
2393
|
|
|
2394
|
-
func setStarIntensityTransition(_ layer: inout Atmosphere, styleValue:
|
|
2394
|
+
func setStarIntensityTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
|
|
2395
2395
|
{
|
|
2396
2396
|
layer.starIntensityTransition = styleValue.getTransition();
|
|
2397
2397
|
}
|
|
2398
2398
|
|
|
2399
2399
|
|
|
2400
2400
|
|
|
2401
|
-
func setExaggeration(_ layer: inout Terrain, styleValue:
|
|
2401
|
+
func setExaggeration(_ layer: inout Terrain, styleValue: RNMBXStyleValue)
|
|
2402
2402
|
{
|
|
2403
2403
|
|
|
2404
2404
|
|