@maplibre/maplibre-react-native 10.0.0-alpha.2 → 10.0.0-alpha.21
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/.sonarcloud.properties +1 -1
- package/CHANGELOG.md +141 -50
- package/CONTRIBUTING.md +10 -9
- package/README.md +1 -1
- package/android/build.gradle +1 -1
- package/android/rctmln/.settings/org.eclipse.buildship.core.prefs +2 -0
- package/android/{rctmgl → rctmln}/build.gradle +5 -5
- package/android/{rctmgl → rctmln}/src/main/AndroidManifest.xml +1 -1
- package/android/rctmln/src/main/java/com/maplibre/rctmln/RCTMLNPackage.java +99 -0
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/AbstractEvent.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/AbstractEventEmitter.java +2 -2
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/AbstractMapFeature.java +4 -4
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/annotation/MarkerView.java +3 -3
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/annotation/MarkerViewManager.java +12 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLCallout.java → rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCallout.java} +3 -3
- package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCalloutManager.java +22 -0
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerView.java → rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerView.java} +18 -18
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerViewManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerViewManager.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotation.java → rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotation.java} +27 -26
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotationManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotationManager.java} +14 -14
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraStop.java +21 -19
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraUpdateItem.java +12 -12
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraUpdateQueue.java +4 -4
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/camera/RCTMGLCamera.java → rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCamera.java} +50 -50
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/camera/RCTMGLCameraManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCameraManager.java} +19 -19
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/constants/CameraMode.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/images/RCTMGLImages.java → rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImages.java} +27 -27
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/images/RCTMGLImagesManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImagesManager.java} +17 -17
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/location/LocationComponentManager.java +25 -16
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.java → rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocation.java} +25 -15
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocationManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocationManager.java} +12 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/mapview/LayerSourceInfo.java +10 -10
- package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapView.java +16 -0
- package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapViewManager.java +31 -0
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java → rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapView.java} +171 -171
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapViewManager.java} +46 -46
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/mapview/helpers/CameraChangeTracker.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/RCTMGLStyle.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyle.java} +12 -12
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFactory.java} +434 -423
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/RCTMGLStyleFunctionParser.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFunctionParser.java} +8 -9
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleValue.java} +9 -9
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/styles/layers/RCTLayer.java +17 -17
- package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayer.java +27 -0
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayerManager.java} +13 -13
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayer.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayer.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayerManager.java} +15 -15
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayer.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayer.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayerManager.java} +16 -16
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayer.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayer.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayerManager.java} +16 -16
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayer.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayer.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayerManager.java} +15 -15
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayer.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayer.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayerManager.java} +17 -17
- package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayer.java +27 -0
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayerManager.java} +13 -13
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayer.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayer.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayerManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayerManager.java} +15 -15
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/light/RCTMGLLight.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLight.java} +16 -16
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/light/RCTMGLLightManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLightManager.java} +6 -6
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSource.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSource.java} +7 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSourceManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSourceManager.java} +15 -15
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSource.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSource.java} +6 -6
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSourceManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSourceManager.java} +7 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSource.java} +22 -22
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSourceManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSourceManager.java} +35 -35
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSource.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSource.java} +5 -5
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSourceManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSourceManager.java} +4 -4
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSource.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSource.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSourceManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSourceManager.java} +12 -12
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/styles/sources/RCTSource.java +14 -14
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/AbstractEvent.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/AndroidCallbackEvent.java +2 -2
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/EventEmitter.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/FeatureClickEvent.java +8 -8
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/IEvent.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/ImageMissingEvent.java +3 -3
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/LocationEvent.java +6 -6
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/MapChangeEvent.java +3 -3
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/MapClickEvent.java +5 -5
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/MapUserTrackingModeEvent.java +4 -4
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/OfflineEvent.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/PointAnnotationClickEvent.java +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/PointAnnotationDragEvent.java +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/constants/EventKeys.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/constants/EventTypes.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/http/CustomHeadersInterceptor.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/LocationManager.java +7 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserLocation.java +2 -2
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserLocationVerticalAlignment.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserTrackingMode.java +4 -4
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserTrackingState.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLLocationModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLocationModule.java} +11 -11
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLLogging.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLogging.java} +7 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNModule.java} +30 -30
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNOfflineModule.java} +21 -21
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNSnapshotModule.java} +14 -14
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/BitmapUtils.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ClusterPropertyEntry.java +2 -2
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ConvertUtils.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/DownloadMapImageTask.java +6 -6
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ExpressionParser.java +3 -3
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/GeoJSONUtils.java +14 -14
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/GeoViewport.java +4 -4
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ImageEntry.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ResourceUtils.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/SimpleEventCallback.java +5 -5
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/SphericalMercator.java +2 -2
- package/android/rctmln/src/main/res/values/strings.xml +3 -0
- package/android/settings.gradle +1 -1
- package/docs/Annotations.md +1 -1
- package/docs/Callout.md +1 -1
- package/docs/Camera.md +4 -4
- package/docs/CustomHttpHeaders.md +4 -4
- package/docs/FillExtrusionLayer.md +19 -0
- package/docs/MapView.md +12 -36
- package/docs/MarkerView.md +1 -1
- package/docs/NativeUserLocation.md +2 -1
- package/docs/PointAnnotation.md +2 -2
- package/docs/RasterLayer.md +1 -1
- package/docs/SymbolLayer.md +7 -5
- package/docs/UserLocation.md +13 -4
- package/docs/docs.json +79 -52
- package/docs/offlineManager.md +246 -0
- package/ios/{RCTMGL → RCTMLN}/CameraMode.h +1 -1
- package/ios/{RCTMGL → RCTMLN}/CameraMode.m +1 -1
- package/ios/{RCTMGL → RCTMLN}/CameraStop.h +4 -4
- package/ios/{RCTMGL → RCTMLN}/CameraStop.m +7 -7
- package/ios/{RCTMGL → RCTMLN}/CameraUpdateItem.h +3 -3
- package/ios/{RCTMGL → RCTMLN}/CameraUpdateItem.m +19 -19
- package/ios/{RCTMGL → RCTMLN}/CameraUpdateQueue.h +3 -3
- package/ios/{RCTMGL → RCTMLN}/CameraUpdateQueue.m +3 -3
- package/ios/{RCTMGL → RCTMLN}/FilterParser.h +1 -1
- package/ios/{RCTMGL → RCTMLN}/FilterParser.m +3 -3
- package/ios/{RCTMGL/MGLCustomHeaders.h → RCTMLN/MLNCustomHeaders.h} +3 -3
- package/ios/{RCTMGL/MGLCustomHeaders.m → RCTMLN/MLNCustomHeaders.m} +11 -11
- package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.h +23 -0
- package/ios/{RCTMGL/MGLFaux3DUserLocationAnnotationView.m → RCTMLN/MLNFaux3DUserLocationAnnotationView.m} +38 -38
- package/ios/{RCTMGL/MGLModule.h → RCTMLN/MLNModule.h} +3 -3
- package/ios/{RCTMGL/MGLModule.m → RCTMLN/MLNModule.m} +91 -91
- package/ios/{RCTMGL/MGLOfflineModule.h → RCTMLN/MLNOfflineModule.h} +4 -4
- package/ios/{RCTMGL/MGLOfflineModule.m → RCTMLN/MLNOfflineModule.m} +120 -99
- package/ios/{RCTMGL/MGLSnapshotModule.h → RCTMLN/MLNSnapshotModule.h} +3 -3
- package/ios/{RCTMGL/MGLSnapshotModule.m → RCTMLN/MLNSnapshotModule.m} +14 -14
- package/ios/{RCTMGL/MGLUserLocationHeadingArrowLayer.h → RCTMLN/MLNUserLocationHeadingArrowLayer.h} +4 -4
- package/ios/{RCTMGL/MGLUserLocationHeadingArrowLayer.m → RCTMLN/MLNUserLocationHeadingArrowLayer.m} +7 -7
- package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.h +11 -0
- package/ios/{RCTMGL/MGLUserLocationHeadingBeamLayer.m → RCTMLN/MLNUserLocationHeadingBeamLayer.m} +10 -10
- package/ios/{RCTMGL/MGLUserLocationHeadingIndicator.h → RCTMLN/MLNUserLocationHeadingIndicator.h} +3 -3
- package/ios/{RCTMGL → RCTMLN}/RCTConvert+Mapbox.h +1 -1
- package/ios/{RCTMGL → RCTMLN}/RCTConvert+Mapbox.m +1 -1
- package/ios/{RCTMGL/RCTMGL.h → RCTMLN/RCTMLN.h} +3 -3
- package/ios/{RCTMGL/RCTMGL.m → RCTMLN/RCTMLN.m} +4 -4
- package/ios/RCTMLN/RCTMLNBackgroundLayer.h +14 -0
- package/ios/RCTMLN/RCTMLNBackgroundLayer.m +27 -0
- package/ios/{RCTMGL/RCTMGLBackgroundLayerManager.h → RCTMLN/RCTMLNBackgroundLayerManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLBackgroundLayerManager.m → RCTMLN/RCTMLNBackgroundLayerManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLCallout.h → RCTMLN/RCTMLNCallout.h} +4 -4
- package/ios/{RCTMGL/RCTMGLCallout.m → RCTMLN/RCTMLNCallout.m} +6 -6
- package/ios/{RCTMGL/RCTMGLCalloutManager.h → RCTMLN/RCTMLNCalloutManager.h} +3 -3
- package/ios/RCTMLN/RCTMLNCalloutManager.m +21 -0
- package/ios/{RCTMGL/RCTMGLCamera.h → RCTMLN/RCTMLNCamera.h} +6 -6
- package/ios/{RCTMGL/RCTMGLCamera.m → RCTMLN/RCTMLNCamera.m} +30 -30
- package/ios/{RCTMGL/RCTMGLCameraManager.h → RCTMLN/RCTMLNCameraManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLCameraManager.m → RCTMLN/RCTMLNCameraManager.m} +7 -7
- package/ios/RCTMLN/RCTMLNCircleLayer.h +13 -0
- package/ios/{RCTMGL/RCTMGLCircleLayer.m → RCTMLN/RCTMLNCircleLayer.m} +10 -10
- package/ios/{RCTMGL/RCTMGLCircleLayerManager.h → RCTMLN/RCTMLNCircleLayerManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLCircleLayerManager.m → RCTMLN/RCTMLNCircleLayerManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLEvent.h → RCTMLN/RCTMLNEvent.h} +6 -6
- package/ios/{RCTMGL/RCTMGLEvent.m → RCTMLN/RCTMLNEvent.m} +8 -8
- package/ios/{RCTMGL/RCTMGLEventProtocol.h → RCTMLN/RCTMLNEventProtocol.h} +3 -3
- package/ios/{RCTMGL/RCTMGLEventTypes.h → RCTMLN/RCTMLNEventTypes.h} +3 -3
- package/ios/{RCTMGL/RCTMGLEventTypes.m → RCTMLN/RCTMLNEventTypes.m} +4 -4
- package/ios/RCTMLN/RCTMLNFillExtrusionLayer.h +14 -0
- package/ios/{RCTMGL/RCTMGLFillExtrusionLayer.m → RCTMLN/RCTMLNFillExtrusionLayer.m} +10 -10
- package/ios/{RCTMGL/RCTMGLFillExtrusionLayerManager.h → RCTMLN/RCTMLNFillExtrusionLayerManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLFillExtrusionLayerManager.m → RCTMLN/RCTMLNFillExtrusionLayerManager.m} +6 -6
- package/ios/RCTMLN/RCTMLNFillLayer.h +14 -0
- package/ios/{RCTMGL/RCTMGLFillLayer.m → RCTMLN/RCTMLNFillLayer.m} +10 -10
- package/ios/{RCTMGL/RCTMGLFillLayerManager.h → RCTMLN/RCTMLNFillLayerManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLFillLayerManager.m → RCTMLN/RCTMLNFillLayerManager.m} +6 -6
- package/ios/RCTMLN/RCTMLNHeatmapLayer.h +12 -0
- package/ios/RCTMLN/RCTMLNHeatmapLayer.m +30 -0
- package/ios/RCTMLN/RCTMLNHeatmapLayerManager.h +12 -0
- package/ios/{RCTMGL/RCTMGLHeatmapLayerManager.m → RCTMLN/RCTMLNHeatmapLayerManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLImageQueue.h → RCTMLN/RCTMLNImageQueue.h} +3 -3
- package/ios/{RCTMGL/RCTMGLImageQueue.m → RCTMLN/RCTMLNImageQueue.m} +10 -10
- package/ios/{RCTMGL/RCTMGLImageQueueOperation.h → RCTMLN/RCTMLNImageQueueOperation.h} +3 -3
- package/ios/{RCTMGL/RCTMGLImageQueueOperation.m → RCTMLN/RCTMLNImageQueueOperation.m} +12 -12
- package/ios/{RCTMGL/RCTMGLImageSource.h → RCTMLN/RCTMLNImageSource.h} +4 -4
- package/ios/{RCTMGL/RCTMGLImageSource.m → RCTMLN/RCTMLNImageSource.m} +11 -11
- package/ios/{RCTMGL/RCTMGLImageSourceManager.h → RCTMLN/RCTMLNImageSourceManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLImageSourceManager.m → RCTMLN/RCTMLNImageSourceManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLImages.h → RCTMLN/RCTMLNImages.h} +4 -4
- package/ios/{RCTMGL/RCTMGLImages.m → RCTMLN/RCTMLNImages.m} +10 -10
- package/ios/RCTMLN/RCTMLNImagesManager.h +5 -0
- package/ios/{RCTMGL/RCTMGLImagesManager.m → RCTMLN/RCTMLNImagesManager.m} +4 -4
- package/ios/{RCTMGL/RCTMGLLayer.h → RCTMLN/RCTMLNLayer.h} +11 -11
- package/ios/{RCTMGL/RCTMGLLayer.m → RCTMLN/RCTMLNLayer.m} +17 -17
- package/ios/{RCTMGL/RCTMGLLight.h → RCTMLN/RCTMLNLight.h} +5 -5
- package/ios/{RCTMGL/RCTMGLLight.m → RCTMLN/RCTMLNLight.m} +9 -9
- package/ios/{RCTMGL/RCTMGLLightManager.h → RCTMLN/RCTMLNLightManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLLightManager.m → RCTMLN/RCTMLNLightManager.m} +6 -6
- package/ios/RCTMLN/RCTMLNLineLayer.h +14 -0
- package/ios/{RCTMGL/RCTMGLLineLayer.m → RCTMLN/RCTMLNLineLayer.m} +10 -10
- package/ios/{RCTMGL/RCTMGLLineLayerManager.h → RCTMLN/RCTMLNLineLayerManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLLineLayerManager.m → RCTMLN/RCTMLNLineLayerManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLLocation.h → RCTMLN/RCTMLNLocation.h} +3 -3
- package/ios/{RCTMGL/RCTMGLLocation.m → RCTMLN/RCTMLNLocation.m} +4 -4
- package/ios/RCTMLN/RCTMLNLocationManager.h +30 -0
- package/ios/{RCTMGL/RCTMGLLocationManager.m → RCTMLN/RCTMLNLocationManager.m} +16 -16
- package/ios/RCTMLN/RCTMLNLocationManagerDelegate.h +20 -0
- package/ios/{RCTMGL/RCTMGLLocationModule.h → RCTMLN/RCTMLNLocationModule.h} +3 -3
- package/ios/{RCTMGL/RCTMGLLocationModule.m → RCTMLN/RCTMLNLocationModule.m} +13 -13
- package/ios/RCTMLN/RCTMLNLogging.h +18 -0
- package/ios/{RCTMGL/RCTMGLLogging.m → RCTMLN/RCTMLNLogging.m} +29 -29
- package/ios/{RCTMGL/RCTMGLMapTouchEvent.h → RCTMLN/RCTMLNMapTouchEvent.h} +10 -10
- package/ios/{RCTMGL/RCTMGLMapTouchEvent.m → RCTMLN/RCTMLNMapTouchEvent.m} +18 -18
- package/ios/{RCTMGL/RCTMGLMapView.h → RCTMLN/RCTMLNMapView.h} +30 -30
- package/ios/{RCTMGL/RCTMGLMapView.m → RCTMLN/RCTMLNMapView.m} +82 -82
- package/ios/{RCTMGL/RCTMGLMapViewManager.h → RCTMLN/RCTMLNMapViewManager.h} +4 -4
- package/ios/{RCTMGL/RCTMGLMapViewManager.m → RCTMLN/RCTMLNMapViewManager.m} +117 -117
- package/ios/{RCTMGL/RCTMGLNativeUserLocation.h → RCTMLN/RCTMLNNativeUserLocation.h} +5 -5
- package/ios/{RCTMGL/RCTMGLNativeUserLocation.m → RCTMLN/RCTMLNNativeUserLocation.m} +10 -10
- package/ios/RCTMLN/RCTMLNNativeUserLocationManager.h +5 -0
- package/ios/RCTMLN/RCTMLNNativeUserLocationManager.m +25 -0
- package/ios/{RCTMGL/RCTMGLPointAnnotation.h → RCTMLN/RCTMLNPointAnnotation.h} +8 -8
- package/ios/{RCTMGL/RCTMGLPointAnnotation.m → RCTMLN/RCTMLNPointAnnotation.m} +21 -21
- package/ios/{RCTMGL/RCTMGLPointAnnotationManager.h → RCTMLN/RCTMLNPointAnnotationManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLPointAnnotationManager.m → RCTMLN/RCTMLNPointAnnotationManager.m} +6 -6
- package/ios/RCTMLN/RCTMLNRasterLayer.h +14 -0
- package/ios/RCTMLN/RCTMLNRasterLayer.m +30 -0
- package/ios/{RCTMGL/RCTMGLRasterLayerManager.h → RCTMLN/RCTMLNRasterLayerManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLRasterLayerManager.m → RCTMLN/RCTMLNRasterLayerManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLRasterSource.h → RCTMLN/RCTMLNRasterSource.h} +5 -5
- package/ios/{RCTMGL/RCTMGLRasterSource.m → RCTMLN/RCTMLNRasterSource.m} +11 -11
- package/ios/{RCTMGL/RCTMGLRasterSourceManager.h → RCTMLN/RCTMLNRasterSourceManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLRasterSourceManager.m → RCTMLN/RCTMLNRasterSourceManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLShapeSource.h → RCTMLN/RCTMLNShapeSource.h} +10 -10
- package/ios/{RCTMGL/RCTMGLShapeSource.m → RCTMLN/RCTMLNShapeSource.m} +50 -50
- package/ios/{RCTMGL/RCTMGLShapeSourceManager.h → RCTMLN/RCTMLNShapeSourceManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLShapeSourceManager.m → RCTMLN/RCTMLNShapeSourceManager.m} +25 -25
- package/ios/{RCTMGL/RCTMGLSource.h → RCTMLN/RCTMLNSource.h} +8 -8
- package/ios/{RCTMGL/RCTMGLSource.m → RCTMLN/RCTMLNSource.m} +15 -15
- package/ios/RCTMLN/RCTMLNStyle.h +223 -0
- package/ios/{RCTMGL/RCTMGLStyle.m → RCTMLN/RCTMLNStyle.m} +352 -345
- package/ios/{RCTMGL/RCTMGLStyleValue.h → RCTMLN/RCTMLNStyleValue.h} +7 -7
- package/ios/{RCTMGL/RCTMGLStyleValue.m → RCTMLN/RCTMLNStyleValue.m} +24 -24
- package/ios/{RCTMGL/RCTMGLSymbolLayer.h → RCTMLN/RCTMLNSymbolLayer.h} +4 -4
- package/ios/{RCTMGL/RCTMGLSymbolLayer.m → RCTMLN/RCTMLNSymbolLayer.m} +12 -12
- package/ios/{RCTMGL/RCTMGLSymbolLayerManager.h → RCTMLN/RCTMLNSymbolLayerManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLSymbolLayerManager.m → RCTMLN/RCTMLNSymbolLayerManager.m} +6 -6
- package/ios/{RCTMGL/RCTMGLTileSource.h → RCTMLN/RCTMLNTileSource.h} +6 -6
- package/ios/RCTMLN/RCTMLNTileSource.m +31 -0
- package/ios/RCTMLN/RCTMLNUserLocation.h +15 -0
- package/ios/{RCTMGL/RCTMGLUserLocation.m → RCTMLN/RCTMLNUserLocation.m} +8 -8
- package/ios/{RCTMGL/RCTMGLUtils.h → RCTMLN/RCTMLNUtils.h} +7 -7
- package/ios/{RCTMGL/RCTMGLUtils.m → RCTMLN/RCTMLNUtils.m} +20 -20
- package/ios/{RCTMGL/RCTMGLVectorLayer.h → RCTMLN/RCTMLNVectorLayer.h} +4 -4
- package/ios/{RCTMGL/RCTMGLVectorLayer.m → RCTMLN/RCTMLNVectorLayer.m} +7 -7
- package/ios/{RCTMGL/RCTMGLVectorSource.h → RCTMLN/RCTMLNVectorSource.h} +6 -6
- package/ios/{RCTMGL/RCTMGLVectorSource.m → RCTMLN/RCTMLNVectorSource.m} +9 -9
- package/ios/{RCTMGL/RCTMGLVectorSourceManager.h → RCTMLN/RCTMLNVectorSourceManager.h} +3 -3
- package/ios/{RCTMGL/RCTMGLVectorSourceManager.m → RCTMLN/RCTMLNVectorSourceManager.m} +11 -11
- package/ios/{RCTMGL → RCTMLN}/RNMBImageUtils.h +1 -1
- package/ios/{RCTMGL → RCTMLN}/RNMBImageUtils.m +2 -2
- package/ios/{RCTMGL → RCTMLN}/ViewManager.h +3 -3
- package/ios/{RCTMGL → RCTMLN}/ViewManager.m +4 -4
- package/ios/RCTMLN.xcodeproj/project.pbxproj +775 -0
- package/ios/install.md +6 -7
- package/javascript/{MGLModule.ts → MLNModule.ts} +4 -4
- package/javascript/Maplibre.ts +44 -39
- package/javascript/components/BackgroundLayer.tsx +34 -27
- package/javascript/components/Callout.tsx +59 -59
- package/javascript/components/Camera.tsx +436 -493
- package/javascript/components/CircleLayer.tsx +35 -28
- package/javascript/components/FillExtrusionLayer.tsx +29 -29
- package/javascript/components/FillLayer.tsx +28 -25
- package/javascript/components/HeadingIndicator.tsx +8 -8
- package/javascript/components/HeatmapLayer.tsx +28 -26
- package/javascript/components/ImageSource.tsx +31 -38
- package/javascript/components/Images.tsx +54 -54
- package/javascript/components/Light.tsx +25 -52
- package/javascript/components/LineLayer.tsx +29 -26
- package/javascript/components/MapView.tsx +635 -580
- package/javascript/components/MarkerView.tsx +34 -49
- package/javascript/components/NativeUserLocation.tsx +12 -10
- package/javascript/components/PointAnnotation.tsx +121 -97
- package/javascript/components/RasterLayer.tsx +28 -25
- package/javascript/components/RasterSource.tsx +45 -48
- package/javascript/components/ShapeSource.tsx +300 -250
- package/javascript/components/Style.tsx +69 -59
- package/javascript/components/SymbolLayer.tsx +41 -35
- package/javascript/components/UserLocation.tsx +189 -168
- package/javascript/components/VectorSource.tsx +139 -128
- package/javascript/components/annotations/Annotation.tsx +119 -89
- package/javascript/hooks/useAbstractLayer.ts +127 -0
- package/javascript/hooks/useAbstractSource.ts +34 -0
- package/javascript/hooks/useNativeBridge.ts +125 -0
- package/javascript/hooks/useNativeRef.ts +13 -0
- package/javascript/hooks/useOnce.ts +12 -0
- package/javascript/index.ts +2 -2
- package/javascript/modules/location/locationManager.ts +6 -6
- package/javascript/modules/offline/OfflineCreatePackOptions.ts +5 -5
- package/javascript/modules/offline/OfflinePack.ts +5 -5
- package/javascript/modules/offline/offlineManager.ts +13 -14
- package/javascript/modules/snapshot/SnapshotOptions.ts +5 -5
- package/javascript/modules/snapshot/snapshotManager.ts +3 -3
- package/javascript/requestAndroidLocationPermissions.ts +3 -3
- package/javascript/types/OnPressEvent.ts +1 -1
- package/javascript/types/index.ts +6 -2
- package/javascript/utils/BridgeValue.ts +20 -20
- package/javascript/utils/Logger.ts +17 -17
- package/javascript/utils/MaplibreStyles.d.ts +399 -393
- package/javascript/utils/StyleValue.ts +12 -12
- package/javascript/utils/animated/AbstractAnimatedCoordinates.ts +6 -6
- package/javascript/utils/animated/Animated.ts +38 -16
- package/javascript/utils/animated/AnimatedCoordinatesArray.ts +7 -11
- package/javascript/utils/animated/AnimatedExtractCoordinateFromArray.ts +3 -3
- package/javascript/utils/animated/AnimatedPoint.ts +7 -7
- package/javascript/utils/animated/AnimatedRouteCoordinatesArray.ts +16 -20
- package/javascript/utils/animated/AnimatedShape.ts +16 -16
- package/javascript/utils/deprecation.ts +6 -3
- package/javascript/utils/filterUtils.ts +1 -1
- package/javascript/utils/geoUtils.ts +8 -8
- package/javascript/utils/index.ts +14 -14
- package/javascript/utils/styleMap.ts +19 -18
- package/maplibre-react-native.podspec +8 -8
- package/package.json +58 -39
- package/plugin/build/withMapLibre.d.ts +2 -2
- package/plugin/build/withMapLibre.js +33 -34
- package/react-native.config.js +1 -1
- package/scripts/autogenHelpers/globals.js +11 -10
- package/scripts/autogenerate.js +24 -17
- package/scripts/templates/{RCTMGLStyle.h.ejs → RCTMLNStyle.h.ejs} +8 -8
- package/scripts/templates/{RCTMGLStyle.m.ejs → RCTMLNStyle.m.ejs} +10 -10
- package/scripts/templates/{RCTMGLStyleFactory.java.ejs → RCTMLNStyleFactory.java.ejs} +24 -24
- package/setup-jest.js +4 -10
- package/style-spec/v8.json +1248 -655
- package/tsconfig.json +0 -1
- package/.eslintignore +0 -3
- package/.eslintrc.js +0 -166
- package/.prettierrc.js +0 -7
- package/.yarn/plugins/@yarnpkg/plugin-typescript.cjs +0 -9
- package/.yarn/sdks/eslint/bin/eslint.js +0 -20
- package/.yarn/sdks/eslint/lib/api.js +0 -20
- package/.yarn/sdks/eslint/package.json +0 -6
- package/.yarn/sdks/integrations.yml +0 -5
- package/.yarn/sdks/prettier/index.js +0 -20
- package/.yarn/sdks/prettier/package.json +0 -6
- package/.yarn/sdks/typescript/bin/tsc +0 -20
- package/.yarn/sdks/typescript/bin/tsserver +0 -20
- package/.yarn/sdks/typescript/lib/tsc.js +0 -20
- package/.yarn/sdks/typescript/lib/tsserver.js +0 -225
- package/.yarn/sdks/typescript/lib/tsserverlibrary.js +0 -225
- package/.yarn/sdks/typescript/lib/typescript.js +0 -20
- package/.yarn/sdks/typescript/package.json +0 -6
- package/android/rctmgl/.settings/org.eclipse.buildship.core.prefs +0 -2
- package/android/rctmgl/src/main/java/com/mapbox/rctmgl/RCTMGLPackage.java +0 -99
- package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLCalloutManager.java +0 -22
- package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapView.java +0 -16
- package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.java +0 -31
- package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.java +0 -27
- package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.java +0 -27
- package/android/rctmgl/src/main/res/values/strings.xml +0 -3
- package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.h +0 -23
- package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.h +0 -11
- package/ios/RCTMGL/RCTMGLBackgroundLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLBackgroundLayer.m +0 -27
- package/ios/RCTMGL/RCTMGLCalloutManager.m +0 -21
- package/ios/RCTMGL/RCTMGLCircleLayer.h +0 -13
- package/ios/RCTMGL/RCTMGLFillExtrusionLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLFillLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLHeatmapLayer.h +0 -12
- package/ios/RCTMGL/RCTMGLHeatmapLayer.m +0 -30
- package/ios/RCTMGL/RCTMGLHeatmapLayerManager.h +0 -12
- package/ios/RCTMGL/RCTMGLImagesManager.h +0 -5
- package/ios/RCTMGL/RCTMGLLineLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLLocationManager.h +0 -30
- package/ios/RCTMGL/RCTMGLLocationManagerDelegate.h +0 -20
- package/ios/RCTMGL/RCTMGLLogging.h +0 -18
- package/ios/RCTMGL/RCTMGLNativeUserLocationManager.h +0 -5
- package/ios/RCTMGL/RCTMGLNativeUserLocationManager.m +0 -25
- package/ios/RCTMGL/RCTMGLRasterLayer.h +0 -14
- package/ios/RCTMGL/RCTMGLRasterLayer.m +0 -30
- package/ios/RCTMGL/RCTMGLStyle.h +0 -222
- package/ios/RCTMGL/RCTMGLTileSource.m +0 -31
- package/ios/RCTMGL/RCTMGLUserLocation.h +0 -15
- package/ios/RCTMGL.xcodeproj/project.pbxproj +0 -775
- package/javascript/@types/assets.d.ts +0 -4
- package/javascript/components/AbstractLayer.tsx +0 -107
- package/javascript/components/AbstractSource.tsx +0 -27
- package/javascript/components/NativeBridgeComponent.tsx +0 -117
- /package/android/{rctmgl → rctmln}/proguard-rules.pro +0 -0
- /package/android/{rctmgl → rctmln}/src/main/res/drawable/empty.xml +0 -0
- /package/android/{rctmgl → rctmln}/src/main/res/drawable/empty_drawable.png +0 -0
- /package/android/{rctmgl → rctmln}/src/main/res/drawable-xxhdpi/red_marker.png +0 -0
- /package/android/{rctmgl → rctmln}/src/main/res/layout/annotation.xml +0 -0
- /package/ios/{RCTMGL → RCTMLN}/index.d.ts +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
// DO NOT MODIFY
|
|
2
2
|
// THIS FILE IS AUTOGENERATED
|
|
3
3
|
|
|
4
|
-
#import "
|
|
5
|
-
#import "
|
|
4
|
+
#import "RCTMLNStyle.h"
|
|
5
|
+
#import "RCTMLNUtils.h"
|
|
6
6
|
|
|
7
|
-
@implementation
|
|
7
|
+
@implementation RCTMLNStyle
|
|
8
8
|
|
|
9
|
-
- (id)
|
|
9
|
+
- (id)initWithMLNStyle:(MLNStyle*)mlnStyle
|
|
10
10
|
{
|
|
11
11
|
if (self = [super init]) {
|
|
12
|
-
_style =
|
|
12
|
+
_style = mlnStyle;
|
|
13
13
|
}
|
|
14
14
|
return self;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
- (void)fillLayer:(
|
|
18
|
+
- (void)fillLayer:(MLNFillStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
19
19
|
{
|
|
20
20
|
if (![self _hasReactStyle:reactStyle]) {
|
|
21
21
|
// TODO throw exception
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
continue;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
32
32
|
|
|
33
33
|
if ([prop isEqualToString:@"fillSortKey"]) {
|
|
34
34
|
[self setFillSortKey:layer withReactStyleValue:styleValue];
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
} else {
|
|
61
61
|
NSString *imageURI = [styleValue getImageURI];
|
|
62
62
|
|
|
63
|
-
[
|
|
63
|
+
[RCTMLNUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
|
|
64
64
|
if (image != nil) {
|
|
65
65
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
66
66
|
if (isValid()) {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
- (void)lineLayer:(
|
|
82
|
+
- (void)lineLayer:(MLNLineStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
83
83
|
{
|
|
84
84
|
if (![self _hasReactStyle:reactStyle]) {
|
|
85
85
|
// TODO throw exception
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
continue;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
|
|
95
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
96
96
|
|
|
97
97
|
if ([prop isEqualToString:@"lineCap"]) {
|
|
98
98
|
[self setLineCap:layer withReactStyleValue:styleValue];
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
} else {
|
|
147
147
|
NSString *imageURI = [styleValue getImageURI];
|
|
148
148
|
|
|
149
|
-
[
|
|
149
|
+
[RCTMLNUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
|
|
150
150
|
if (image != nil) {
|
|
151
151
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
152
152
|
if (isValid()) {
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
- (void)symbolLayer:(
|
|
170
|
+
- (void)symbolLayer:(MLNSymbolStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
171
171
|
{
|
|
172
172
|
if (![self _hasReactStyle:reactStyle]) {
|
|
173
173
|
// TODO throw exception
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
continue;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
|
|
183
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
184
184
|
|
|
185
185
|
if ([prop isEqualToString:@"symbolPlacement"]) {
|
|
186
186
|
[self setSymbolPlacement:layer withReactStyleValue:styleValue];
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
} else {
|
|
213
213
|
NSString *imageURI = [styleValue getImageURI];
|
|
214
214
|
|
|
215
|
-
[
|
|
215
|
+
[RCTMLNUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
|
|
216
216
|
if (image != nil) {
|
|
217
217
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
218
218
|
if (isValid()) {
|
|
@@ -339,7 +339,7 @@
|
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
- (void)circleLayer:(
|
|
342
|
+
- (void)circleLayer:(MLNCircleStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
343
343
|
{
|
|
344
344
|
if (![self _hasReactStyle:reactStyle]) {
|
|
345
345
|
// TODO throw exception
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
continue;
|
|
353
353
|
}
|
|
354
354
|
|
|
355
|
-
|
|
355
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
356
356
|
|
|
357
357
|
if ([prop isEqualToString:@"circleSortKey"]) {
|
|
358
358
|
[self setCircleSortKey:layer withReactStyleValue:styleValue];
|
|
@@ -402,7 +402,7 @@
|
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
- (void)heatmapLayer:(
|
|
405
|
+
- (void)heatmapLayer:(MLNHeatmapStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
406
406
|
{
|
|
407
407
|
if (![self _hasReactStyle:reactStyle]) {
|
|
408
408
|
// TODO throw exception
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
continue;
|
|
416
416
|
}
|
|
417
417
|
|
|
418
|
-
|
|
418
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
419
419
|
|
|
420
420
|
if ([prop isEqualToString:@"visibility"]) {
|
|
421
421
|
[self setHeatmapStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
}
|
|
442
442
|
}
|
|
443
443
|
|
|
444
|
-
- (void)fillExtrusionLayer:(
|
|
444
|
+
- (void)fillExtrusionLayer:(MLNFillExtrusionStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
445
445
|
{
|
|
446
446
|
if (![self _hasReactStyle:reactStyle]) {
|
|
447
447
|
// TODO throw exception
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
continue;
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
-
|
|
457
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
458
458
|
|
|
459
459
|
if ([prop isEqualToString:@"visibility"]) {
|
|
460
460
|
[self setFillExtrusionStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
} else {
|
|
479
479
|
NSString *imageURI = [styleValue getImageURI];
|
|
480
480
|
|
|
481
|
-
[
|
|
481
|
+
[RCTMLNUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
|
|
482
482
|
if (image != nil) {
|
|
483
483
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
484
484
|
if (isValid()) {
|
|
@@ -499,13 +499,15 @@
|
|
|
499
499
|
[self setFillExtrusionBase:layer withReactStyleValue:styleValue];
|
|
500
500
|
} else if ([prop isEqualToString:@"fillExtrusionBaseTransition"]) {
|
|
501
501
|
[self setFillExtrusionBaseTransition:layer withReactStyleValue:styleValue];
|
|
502
|
+
} else if ([prop isEqualToString:@"fillExtrusionVerticalGradient"]) {
|
|
503
|
+
[self setFillExtrusionVerticalGradient:layer withReactStyleValue:styleValue];
|
|
502
504
|
} else {
|
|
503
505
|
// TODO throw exception
|
|
504
506
|
}
|
|
505
507
|
}
|
|
506
508
|
}
|
|
507
509
|
|
|
508
|
-
- (void)rasterLayer:(
|
|
510
|
+
- (void)rasterLayer:(MLNRasterStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
509
511
|
{
|
|
510
512
|
if (![self _hasReactStyle:reactStyle]) {
|
|
511
513
|
// TODO throw exception
|
|
@@ -518,7 +520,7 @@
|
|
|
518
520
|
continue;
|
|
519
521
|
}
|
|
520
522
|
|
|
521
|
-
|
|
523
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
522
524
|
|
|
523
525
|
if ([prop isEqualToString:@"visibility"]) {
|
|
524
526
|
[self setRasterStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -556,7 +558,7 @@
|
|
|
556
558
|
}
|
|
557
559
|
}
|
|
558
560
|
|
|
559
|
-
- (void)hillshadeLayer:(
|
|
561
|
+
- (void)hillshadeLayer:(MLNHillshadeStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
560
562
|
{
|
|
561
563
|
if (![self _hasReactStyle:reactStyle]) {
|
|
562
564
|
// TODO throw exception
|
|
@@ -569,7 +571,7 @@
|
|
|
569
571
|
continue;
|
|
570
572
|
}
|
|
571
573
|
|
|
572
|
-
|
|
574
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
573
575
|
|
|
574
576
|
if ([prop isEqualToString:@"visibility"]) {
|
|
575
577
|
[self setHillshadeStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -599,7 +601,7 @@
|
|
|
599
601
|
}
|
|
600
602
|
}
|
|
601
603
|
|
|
602
|
-
- (void)backgroundLayer:(
|
|
604
|
+
- (void)backgroundLayer:(MLNBackgroundStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
603
605
|
{
|
|
604
606
|
if (![self _hasReactStyle:reactStyle]) {
|
|
605
607
|
// TODO throw exception
|
|
@@ -612,7 +614,7 @@
|
|
|
612
614
|
continue;
|
|
613
615
|
}
|
|
614
616
|
|
|
615
|
-
|
|
617
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
616
618
|
|
|
617
619
|
if ([prop isEqualToString:@"visibility"]) {
|
|
618
620
|
[self setBackgroundStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -626,7 +628,7 @@
|
|
|
626
628
|
} else {
|
|
627
629
|
NSString *imageURI = [styleValue getImageURI];
|
|
628
630
|
|
|
629
|
-
[
|
|
631
|
+
[RCTMLNUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
|
|
630
632
|
if (image != nil) {
|
|
631
633
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
632
634
|
if (isValid()) {
|
|
@@ -649,7 +651,7 @@
|
|
|
649
651
|
}
|
|
650
652
|
}
|
|
651
653
|
|
|
652
|
-
- (void)lightLayer:(
|
|
654
|
+
- (void)lightLayer:(MLNLight *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
653
655
|
{
|
|
654
656
|
if (![self _hasReactStyle:reactStyle]) {
|
|
655
657
|
// TODO throw exception
|
|
@@ -662,7 +664,7 @@
|
|
|
662
664
|
continue;
|
|
663
665
|
}
|
|
664
666
|
|
|
665
|
-
|
|
667
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
666
668
|
|
|
667
669
|
if ([prop isEqualToString:@"anchor"]) {
|
|
668
670
|
[self setAnchor:layer withReactStyleValue:styleValue];
|
|
@@ -687,980 +689,985 @@
|
|
|
687
689
|
|
|
688
690
|
|
|
689
691
|
|
|
690
|
-
- (void)setFillSortKey:(
|
|
692
|
+
- (void)setFillSortKey:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
691
693
|
{
|
|
692
|
-
layer.fillSortKey = styleValue.
|
|
694
|
+
layer.fillSortKey = styleValue.mlnStyleValue;
|
|
693
695
|
}
|
|
694
696
|
|
|
695
|
-
- (void)setFillStyleLayerVisibility:(
|
|
697
|
+
- (void)setFillStyleLayerVisibility:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
696
698
|
{
|
|
697
699
|
layer.visible = [styleValue isVisible];
|
|
698
700
|
}
|
|
699
701
|
|
|
700
|
-
- (void)setFillAntialias:(
|
|
702
|
+
- (void)setFillAntialias:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
701
703
|
{
|
|
702
|
-
layer.fillAntialiased = styleValue.
|
|
704
|
+
layer.fillAntialiased = styleValue.mlnStyleValue;
|
|
703
705
|
}
|
|
704
706
|
|
|
705
|
-
- (void)setFillOpacity:(
|
|
707
|
+
- (void)setFillOpacity:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
706
708
|
{
|
|
707
|
-
layer.fillOpacity = styleValue.
|
|
709
|
+
layer.fillOpacity = styleValue.mlnStyleValue;
|
|
708
710
|
}
|
|
709
711
|
|
|
710
|
-
- (void)setFillOpacityTransition:(
|
|
712
|
+
- (void)setFillOpacityTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
711
713
|
{
|
|
712
714
|
layer.fillOpacityTransition = [styleValue getTransition];
|
|
713
715
|
}
|
|
714
716
|
|
|
715
|
-
- (void)setFillColor:(
|
|
717
|
+
- (void)setFillColor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
716
718
|
{
|
|
717
|
-
layer.fillColor = styleValue.
|
|
719
|
+
layer.fillColor = styleValue.mlnStyleValue;
|
|
718
720
|
}
|
|
719
721
|
|
|
720
|
-
- (void)setFillColorTransition:(
|
|
722
|
+
- (void)setFillColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
721
723
|
{
|
|
722
724
|
layer.fillColorTransition = [styleValue getTransition];
|
|
723
725
|
}
|
|
724
726
|
|
|
725
|
-
- (void)setFillOutlineColor:(
|
|
727
|
+
- (void)setFillOutlineColor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
726
728
|
{
|
|
727
|
-
layer.fillOutlineColor = styleValue.
|
|
729
|
+
layer.fillOutlineColor = styleValue.mlnStyleValue;
|
|
728
730
|
}
|
|
729
731
|
|
|
730
|
-
- (void)setFillOutlineColorTransition:(
|
|
732
|
+
- (void)setFillOutlineColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
731
733
|
{
|
|
732
734
|
layer.fillOutlineColorTransition = [styleValue getTransition];
|
|
733
735
|
}
|
|
734
736
|
|
|
735
|
-
- (void)setFillTranslate:(
|
|
737
|
+
- (void)setFillTranslate:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
736
738
|
{
|
|
737
|
-
layer.fillTranslation = styleValue.
|
|
739
|
+
layer.fillTranslation = styleValue.mlnStyleValue;
|
|
738
740
|
}
|
|
739
741
|
|
|
740
|
-
- (void)setFillTranslateTransition:(
|
|
742
|
+
- (void)setFillTranslateTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
741
743
|
{
|
|
742
744
|
layer.fillTranslationTransition = [styleValue getTransition];
|
|
743
745
|
}
|
|
744
746
|
|
|
745
|
-
- (void)setFillTranslateAnchor:(
|
|
747
|
+
- (void)setFillTranslateAnchor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
746
748
|
{
|
|
747
|
-
layer.fillTranslationAnchor = styleValue.
|
|
749
|
+
layer.fillTranslationAnchor = styleValue.mlnStyleValue;
|
|
748
750
|
}
|
|
749
751
|
|
|
750
|
-
- (void)setFillPattern:(
|
|
752
|
+
- (void)setFillPattern:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
751
753
|
{
|
|
752
|
-
layer.fillPattern = styleValue.
|
|
754
|
+
layer.fillPattern = styleValue.mlnStyleValue;
|
|
753
755
|
}
|
|
754
756
|
|
|
755
|
-
- (void)setFillPatternTransition:(
|
|
757
|
+
- (void)setFillPatternTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
756
758
|
{
|
|
757
759
|
layer.fillPatternTransition = [styleValue getTransition];
|
|
758
760
|
}
|
|
759
761
|
|
|
760
762
|
|
|
761
763
|
|
|
762
|
-
- (void)setLineCap:(
|
|
764
|
+
- (void)setLineCap:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
763
765
|
{
|
|
764
|
-
layer.lineCap = styleValue.
|
|
766
|
+
layer.lineCap = styleValue.mlnStyleValue;
|
|
765
767
|
}
|
|
766
768
|
|
|
767
|
-
- (void)setLineJoin:(
|
|
769
|
+
- (void)setLineJoin:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
768
770
|
{
|
|
769
|
-
layer.lineJoin = styleValue.
|
|
771
|
+
layer.lineJoin = styleValue.mlnStyleValue;
|
|
770
772
|
}
|
|
771
773
|
|
|
772
|
-
- (void)setLineMiterLimit:(
|
|
774
|
+
- (void)setLineMiterLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
773
775
|
{
|
|
774
|
-
layer.lineMiterLimit = styleValue.
|
|
776
|
+
layer.lineMiterLimit = styleValue.mlnStyleValue;
|
|
775
777
|
}
|
|
776
778
|
|
|
777
|
-
- (void)setLineRoundLimit:(
|
|
779
|
+
- (void)setLineRoundLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
778
780
|
{
|
|
779
|
-
layer.lineRoundLimit = styleValue.
|
|
781
|
+
layer.lineRoundLimit = styleValue.mlnStyleValue;
|
|
780
782
|
}
|
|
781
783
|
|
|
782
|
-
- (void)setLineSortKey:(
|
|
784
|
+
- (void)setLineSortKey:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
783
785
|
{
|
|
784
|
-
layer.lineSortKey = styleValue.
|
|
786
|
+
layer.lineSortKey = styleValue.mlnStyleValue;
|
|
785
787
|
}
|
|
786
788
|
|
|
787
|
-
- (void)setLineStyleLayerVisibility:(
|
|
789
|
+
- (void)setLineStyleLayerVisibility:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
788
790
|
{
|
|
789
791
|
layer.visible = [styleValue isVisible];
|
|
790
792
|
}
|
|
791
793
|
|
|
792
|
-
- (void)setLineOpacity:(
|
|
794
|
+
- (void)setLineOpacity:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
793
795
|
{
|
|
794
|
-
layer.lineOpacity = styleValue.
|
|
796
|
+
layer.lineOpacity = styleValue.mlnStyleValue;
|
|
795
797
|
}
|
|
796
798
|
|
|
797
|
-
- (void)setLineOpacityTransition:(
|
|
799
|
+
- (void)setLineOpacityTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
798
800
|
{
|
|
799
801
|
layer.lineOpacityTransition = [styleValue getTransition];
|
|
800
802
|
}
|
|
801
803
|
|
|
802
|
-
- (void)setLineColor:(
|
|
804
|
+
- (void)setLineColor:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
803
805
|
{
|
|
804
|
-
layer.lineColor = styleValue.
|
|
806
|
+
layer.lineColor = styleValue.mlnStyleValue;
|
|
805
807
|
}
|
|
806
808
|
|
|
807
|
-
- (void)setLineColorTransition:(
|
|
809
|
+
- (void)setLineColorTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
808
810
|
{
|
|
809
811
|
layer.lineColorTransition = [styleValue getTransition];
|
|
810
812
|
}
|
|
811
813
|
|
|
812
|
-
- (void)setLineTranslate:(
|
|
814
|
+
- (void)setLineTranslate:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
813
815
|
{
|
|
814
|
-
layer.lineTranslation = styleValue.
|
|
816
|
+
layer.lineTranslation = styleValue.mlnStyleValue;
|
|
815
817
|
}
|
|
816
818
|
|
|
817
|
-
- (void)setLineTranslateTransition:(
|
|
819
|
+
- (void)setLineTranslateTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
818
820
|
{
|
|
819
821
|
layer.lineTranslationTransition = [styleValue getTransition];
|
|
820
822
|
}
|
|
821
823
|
|
|
822
|
-
- (void)setLineTranslateAnchor:(
|
|
824
|
+
- (void)setLineTranslateAnchor:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
823
825
|
{
|
|
824
|
-
layer.lineTranslationAnchor = styleValue.
|
|
826
|
+
layer.lineTranslationAnchor = styleValue.mlnStyleValue;
|
|
825
827
|
}
|
|
826
828
|
|
|
827
|
-
- (void)setLineWidth:(
|
|
829
|
+
- (void)setLineWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
828
830
|
{
|
|
829
|
-
layer.lineWidth = styleValue.
|
|
831
|
+
layer.lineWidth = styleValue.mlnStyleValue;
|
|
830
832
|
}
|
|
831
833
|
|
|
832
|
-
- (void)setLineWidthTransition:(
|
|
834
|
+
- (void)setLineWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
833
835
|
{
|
|
834
836
|
layer.lineWidthTransition = [styleValue getTransition];
|
|
835
837
|
}
|
|
836
838
|
|
|
837
|
-
- (void)setLineGapWidth:(
|
|
839
|
+
- (void)setLineGapWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
838
840
|
{
|
|
839
|
-
layer.lineGapWidth = styleValue.
|
|
841
|
+
layer.lineGapWidth = styleValue.mlnStyleValue;
|
|
840
842
|
}
|
|
841
843
|
|
|
842
|
-
- (void)setLineGapWidthTransition:(
|
|
844
|
+
- (void)setLineGapWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
843
845
|
{
|
|
844
846
|
layer.lineGapWidthTransition = [styleValue getTransition];
|
|
845
847
|
}
|
|
846
848
|
|
|
847
|
-
- (void)setLineOffset:(
|
|
849
|
+
- (void)setLineOffset:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
848
850
|
{
|
|
849
|
-
layer.lineOffset = styleValue.
|
|
851
|
+
layer.lineOffset = styleValue.mlnStyleValue;
|
|
850
852
|
}
|
|
851
853
|
|
|
852
|
-
- (void)setLineOffsetTransition:(
|
|
854
|
+
- (void)setLineOffsetTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
853
855
|
{
|
|
854
856
|
layer.lineOffsetTransition = [styleValue getTransition];
|
|
855
857
|
}
|
|
856
858
|
|
|
857
|
-
- (void)setLineBlur:(
|
|
859
|
+
- (void)setLineBlur:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
858
860
|
{
|
|
859
|
-
layer.lineBlur = styleValue.
|
|
861
|
+
layer.lineBlur = styleValue.mlnStyleValue;
|
|
860
862
|
}
|
|
861
863
|
|
|
862
|
-
- (void)setLineBlurTransition:(
|
|
864
|
+
- (void)setLineBlurTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
863
865
|
{
|
|
864
866
|
layer.lineBlurTransition = [styleValue getTransition];
|
|
865
867
|
}
|
|
866
868
|
|
|
867
|
-
- (void)setLineDasharray:(
|
|
869
|
+
- (void)setLineDasharray:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
868
870
|
{
|
|
869
|
-
layer.lineDashPattern = styleValue.
|
|
871
|
+
layer.lineDashPattern = styleValue.mlnStyleValue;
|
|
870
872
|
}
|
|
871
873
|
|
|
872
|
-
- (void)setLineDasharrayTransition:(
|
|
874
|
+
- (void)setLineDasharrayTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
873
875
|
{
|
|
874
876
|
layer.lineDashPatternTransition = [styleValue getTransition];
|
|
875
877
|
}
|
|
876
878
|
|
|
877
|
-
- (void)setLinePattern:(
|
|
879
|
+
- (void)setLinePattern:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
878
880
|
{
|
|
879
|
-
layer.linePattern = styleValue.
|
|
881
|
+
layer.linePattern = styleValue.mlnStyleValue;
|
|
880
882
|
}
|
|
881
883
|
|
|
882
|
-
- (void)setLinePatternTransition:(
|
|
884
|
+
- (void)setLinePatternTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
883
885
|
{
|
|
884
886
|
layer.linePatternTransition = [styleValue getTransition];
|
|
885
887
|
}
|
|
886
888
|
|
|
887
|
-
- (void)setLineGradient:(
|
|
889
|
+
- (void)setLineGradient:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
888
890
|
{
|
|
889
|
-
layer.lineGradient = styleValue.
|
|
891
|
+
layer.lineGradient = styleValue.mlnStyleValue;
|
|
890
892
|
}
|
|
891
893
|
|
|
892
894
|
|
|
893
895
|
|
|
894
|
-
- (void)setSymbolPlacement:(
|
|
896
|
+
- (void)setSymbolPlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
895
897
|
{
|
|
896
|
-
layer.symbolPlacement = styleValue.
|
|
898
|
+
layer.symbolPlacement = styleValue.mlnStyleValue;
|
|
897
899
|
}
|
|
898
900
|
|
|
899
|
-
- (void)setSymbolSpacing:(
|
|
901
|
+
- (void)setSymbolSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
900
902
|
{
|
|
901
|
-
layer.symbolSpacing = styleValue.
|
|
903
|
+
layer.symbolSpacing = styleValue.mlnStyleValue;
|
|
902
904
|
}
|
|
903
905
|
|
|
904
|
-
- (void)setSymbolAvoidEdges:(
|
|
906
|
+
- (void)setSymbolAvoidEdges:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
905
907
|
{
|
|
906
|
-
layer.symbolAvoidsEdges = styleValue.
|
|
908
|
+
layer.symbolAvoidsEdges = styleValue.mlnStyleValue;
|
|
907
909
|
}
|
|
908
910
|
|
|
909
|
-
- (void)setSymbolSortKey:(
|
|
911
|
+
- (void)setSymbolSortKey:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
910
912
|
{
|
|
911
|
-
layer.symbolSortKey = styleValue.
|
|
913
|
+
layer.symbolSortKey = styleValue.mlnStyleValue;
|
|
912
914
|
}
|
|
913
915
|
|
|
914
|
-
- (void)setSymbolZOrder:(
|
|
916
|
+
- (void)setSymbolZOrder:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
915
917
|
{
|
|
916
|
-
layer.symbolZOrder = styleValue.
|
|
918
|
+
layer.symbolZOrder = styleValue.mlnStyleValue;
|
|
917
919
|
}
|
|
918
920
|
|
|
919
|
-
- (void)setIconAllowOverlap:(
|
|
921
|
+
- (void)setIconAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
920
922
|
{
|
|
921
|
-
layer.iconAllowsOverlap = styleValue.
|
|
923
|
+
layer.iconAllowsOverlap = styleValue.mlnStyleValue;
|
|
922
924
|
}
|
|
923
925
|
|
|
924
|
-
- (void)setIconIgnorePlacement:(
|
|
926
|
+
- (void)setIconIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
925
927
|
{
|
|
926
|
-
layer.iconIgnoresPlacement = styleValue.
|
|
928
|
+
layer.iconIgnoresPlacement = styleValue.mlnStyleValue;
|
|
927
929
|
}
|
|
928
930
|
|
|
929
|
-
- (void)setIconOptional:(
|
|
931
|
+
- (void)setIconOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
930
932
|
{
|
|
931
|
-
layer.iconOptional = styleValue.
|
|
933
|
+
layer.iconOptional = styleValue.mlnStyleValue;
|
|
932
934
|
}
|
|
933
935
|
|
|
934
|
-
- (void)setIconRotationAlignment:(
|
|
936
|
+
- (void)setIconRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
935
937
|
{
|
|
936
|
-
layer.iconRotationAlignment = styleValue.
|
|
938
|
+
layer.iconRotationAlignment = styleValue.mlnStyleValue;
|
|
937
939
|
}
|
|
938
940
|
|
|
939
|
-
- (void)setIconSize:(
|
|
941
|
+
- (void)setIconSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
940
942
|
{
|
|
941
|
-
layer.iconScale = styleValue.
|
|
943
|
+
layer.iconScale = styleValue.mlnStyleValue;
|
|
942
944
|
}
|
|
943
945
|
|
|
944
|
-
- (void)setIconTextFit:(
|
|
946
|
+
- (void)setIconTextFit:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
945
947
|
{
|
|
946
|
-
layer.iconTextFit = styleValue.
|
|
948
|
+
layer.iconTextFit = styleValue.mlnStyleValue;
|
|
947
949
|
}
|
|
948
950
|
|
|
949
|
-
- (void)setIconTextFitPadding:(
|
|
951
|
+
- (void)setIconTextFitPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
950
952
|
{
|
|
951
|
-
layer.iconTextFitPadding = styleValue.
|
|
953
|
+
layer.iconTextFitPadding = styleValue.mlnStyleValue;
|
|
952
954
|
}
|
|
953
955
|
|
|
954
|
-
- (void)setIconImage:(
|
|
956
|
+
- (void)setIconImage:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
955
957
|
{
|
|
956
|
-
layer.iconImageName = styleValue.
|
|
958
|
+
layer.iconImageName = styleValue.mlnStyleValue;
|
|
957
959
|
}
|
|
958
960
|
|
|
959
|
-
- (void)setIconRotate:(
|
|
961
|
+
- (void)setIconRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
960
962
|
{
|
|
961
|
-
layer.iconRotation = styleValue.
|
|
963
|
+
layer.iconRotation = styleValue.mlnStyleValue;
|
|
962
964
|
}
|
|
963
965
|
|
|
964
|
-
- (void)setIconPadding:(
|
|
966
|
+
- (void)setIconPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
965
967
|
{
|
|
966
|
-
layer.iconPadding = styleValue.
|
|
968
|
+
layer.iconPadding = styleValue.mlnStyleValue;
|
|
967
969
|
}
|
|
968
970
|
|
|
969
|
-
- (void)setIconKeepUpright:(
|
|
971
|
+
- (void)setIconKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
970
972
|
{
|
|
971
|
-
layer.keepsIconUpright = styleValue.
|
|
973
|
+
layer.keepsIconUpright = styleValue.mlnStyleValue;
|
|
972
974
|
}
|
|
973
975
|
|
|
974
|
-
- (void)setIconOffset:(
|
|
976
|
+
- (void)setIconOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
975
977
|
{
|
|
976
|
-
layer.iconOffset = styleValue.
|
|
978
|
+
layer.iconOffset = styleValue.mlnStyleValue;
|
|
977
979
|
}
|
|
978
980
|
|
|
979
|
-
- (void)setIconAnchor:(
|
|
981
|
+
- (void)setIconAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
980
982
|
{
|
|
981
|
-
layer.iconAnchor = styleValue.
|
|
983
|
+
layer.iconAnchor = styleValue.mlnStyleValue;
|
|
982
984
|
}
|
|
983
985
|
|
|
984
|
-
- (void)setIconPitchAlignment:(
|
|
986
|
+
- (void)setIconPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
985
987
|
{
|
|
986
|
-
layer.iconPitchAlignment = styleValue.
|
|
988
|
+
layer.iconPitchAlignment = styleValue.mlnStyleValue;
|
|
987
989
|
}
|
|
988
990
|
|
|
989
|
-
- (void)setTextPitchAlignment:(
|
|
991
|
+
- (void)setTextPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
990
992
|
{
|
|
991
|
-
layer.textPitchAlignment = styleValue.
|
|
993
|
+
layer.textPitchAlignment = styleValue.mlnStyleValue;
|
|
992
994
|
}
|
|
993
995
|
|
|
994
|
-
- (void)setTextRotationAlignment:(
|
|
996
|
+
- (void)setTextRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
995
997
|
{
|
|
996
|
-
layer.textRotationAlignment = styleValue.
|
|
998
|
+
layer.textRotationAlignment = styleValue.mlnStyleValue;
|
|
997
999
|
}
|
|
998
1000
|
|
|
999
|
-
- (void)setTextField:(
|
|
1001
|
+
- (void)setTextField:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1000
1002
|
{
|
|
1001
|
-
layer.text = styleValue.
|
|
1003
|
+
layer.text = styleValue.mlnStyleValue;
|
|
1002
1004
|
}
|
|
1003
1005
|
|
|
1004
|
-
- (void)setTextFont:(
|
|
1006
|
+
- (void)setTextFont:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1005
1007
|
{
|
|
1006
|
-
layer.textFontNames = styleValue.
|
|
1008
|
+
layer.textFontNames = styleValue.mlnStyleValue;
|
|
1007
1009
|
}
|
|
1008
1010
|
|
|
1009
|
-
- (void)setTextSize:(
|
|
1011
|
+
- (void)setTextSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1010
1012
|
{
|
|
1011
|
-
layer.textFontSize = styleValue.
|
|
1013
|
+
layer.textFontSize = styleValue.mlnStyleValue;
|
|
1012
1014
|
}
|
|
1013
1015
|
|
|
1014
|
-
- (void)setTextMaxWidth:(
|
|
1016
|
+
- (void)setTextMaxWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1015
1017
|
{
|
|
1016
|
-
layer.maximumTextWidth = styleValue.
|
|
1018
|
+
layer.maximumTextWidth = styleValue.mlnStyleValue;
|
|
1017
1019
|
}
|
|
1018
1020
|
|
|
1019
|
-
- (void)setTextLineHeight:(
|
|
1021
|
+
- (void)setTextLineHeight:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1020
1022
|
{
|
|
1021
|
-
layer.textLineHeight = styleValue.
|
|
1023
|
+
layer.textLineHeight = styleValue.mlnStyleValue;
|
|
1022
1024
|
}
|
|
1023
1025
|
|
|
1024
|
-
- (void)setTextLetterSpacing:(
|
|
1026
|
+
- (void)setTextLetterSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1025
1027
|
{
|
|
1026
|
-
layer.textLetterSpacing = styleValue.
|
|
1028
|
+
layer.textLetterSpacing = styleValue.mlnStyleValue;
|
|
1027
1029
|
}
|
|
1028
1030
|
|
|
1029
|
-
- (void)setTextJustify:(
|
|
1031
|
+
- (void)setTextJustify:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1030
1032
|
{
|
|
1031
|
-
layer.textJustification = styleValue.
|
|
1033
|
+
layer.textJustification = styleValue.mlnStyleValue;
|
|
1032
1034
|
}
|
|
1033
1035
|
|
|
1034
|
-
- (void)setTextRadialOffset:(
|
|
1036
|
+
- (void)setTextRadialOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1035
1037
|
{
|
|
1036
|
-
layer.textRadialOffset = styleValue.
|
|
1038
|
+
layer.textRadialOffset = styleValue.mlnStyleValue;
|
|
1037
1039
|
}
|
|
1038
1040
|
|
|
1039
|
-
- (void)setTextVariableAnchor:(
|
|
1041
|
+
- (void)setTextVariableAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1040
1042
|
{
|
|
1041
|
-
layer.textVariableAnchor = styleValue.
|
|
1043
|
+
layer.textVariableAnchor = styleValue.mlnStyleValue;
|
|
1042
1044
|
}
|
|
1043
1045
|
|
|
1044
|
-
- (void)setTextAnchor:(
|
|
1046
|
+
- (void)setTextAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1045
1047
|
{
|
|
1046
|
-
layer.textAnchor = styleValue.
|
|
1048
|
+
layer.textAnchor = styleValue.mlnStyleValue;
|
|
1047
1049
|
}
|
|
1048
1050
|
|
|
1049
|
-
- (void)setTextMaxAngle:(
|
|
1051
|
+
- (void)setTextMaxAngle:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1050
1052
|
{
|
|
1051
|
-
layer.maximumTextAngle = styleValue.
|
|
1053
|
+
layer.maximumTextAngle = styleValue.mlnStyleValue;
|
|
1052
1054
|
}
|
|
1053
1055
|
|
|
1054
|
-
- (void)setTextWritingMode:(
|
|
1056
|
+
- (void)setTextWritingMode:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1055
1057
|
{
|
|
1056
|
-
layer.textWritingModes = styleValue.
|
|
1058
|
+
layer.textWritingModes = styleValue.mlnStyleValue;
|
|
1057
1059
|
}
|
|
1058
1060
|
|
|
1059
|
-
- (void)setTextRotate:(
|
|
1061
|
+
- (void)setTextRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1060
1062
|
{
|
|
1061
|
-
layer.textRotation = styleValue.
|
|
1063
|
+
layer.textRotation = styleValue.mlnStyleValue;
|
|
1062
1064
|
}
|
|
1063
1065
|
|
|
1064
|
-
- (void)setTextPadding:(
|
|
1066
|
+
- (void)setTextPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1065
1067
|
{
|
|
1066
|
-
layer.textPadding = styleValue.
|
|
1068
|
+
layer.textPadding = styleValue.mlnStyleValue;
|
|
1067
1069
|
}
|
|
1068
1070
|
|
|
1069
|
-
- (void)setTextKeepUpright:(
|
|
1071
|
+
- (void)setTextKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1070
1072
|
{
|
|
1071
|
-
layer.keepsTextUpright = styleValue.
|
|
1073
|
+
layer.keepsTextUpright = styleValue.mlnStyleValue;
|
|
1072
1074
|
}
|
|
1073
1075
|
|
|
1074
|
-
- (void)setTextTransform:(
|
|
1076
|
+
- (void)setTextTransform:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1075
1077
|
{
|
|
1076
|
-
layer.textTransform = styleValue.
|
|
1078
|
+
layer.textTransform = styleValue.mlnStyleValue;
|
|
1077
1079
|
}
|
|
1078
1080
|
|
|
1079
|
-
- (void)setTextOffset:(
|
|
1081
|
+
- (void)setTextOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1080
1082
|
{
|
|
1081
|
-
layer.textOffset = styleValue.
|
|
1083
|
+
layer.textOffset = styleValue.mlnStyleValue;
|
|
1082
1084
|
}
|
|
1083
1085
|
|
|
1084
|
-
- (void)setTextAllowOverlap:(
|
|
1086
|
+
- (void)setTextAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1085
1087
|
{
|
|
1086
|
-
layer.textAllowsOverlap = styleValue.
|
|
1088
|
+
layer.textAllowsOverlap = styleValue.mlnStyleValue;
|
|
1087
1089
|
}
|
|
1088
1090
|
|
|
1089
|
-
- (void)setTextIgnorePlacement:(
|
|
1091
|
+
- (void)setTextIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1090
1092
|
{
|
|
1091
|
-
layer.textIgnoresPlacement = styleValue.
|
|
1093
|
+
layer.textIgnoresPlacement = styleValue.mlnStyleValue;
|
|
1092
1094
|
}
|
|
1093
1095
|
|
|
1094
|
-
- (void)setTextOptional:(
|
|
1096
|
+
- (void)setTextOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1095
1097
|
{
|
|
1096
|
-
layer.textOptional = styleValue.
|
|
1098
|
+
layer.textOptional = styleValue.mlnStyleValue;
|
|
1097
1099
|
}
|
|
1098
1100
|
|
|
1099
|
-
- (void)setSymbolStyleLayerVisibility:(
|
|
1101
|
+
- (void)setSymbolStyleLayerVisibility:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1100
1102
|
{
|
|
1101
1103
|
layer.visible = [styleValue isVisible];
|
|
1102
1104
|
}
|
|
1103
1105
|
|
|
1104
|
-
- (void)setIconOpacity:(
|
|
1106
|
+
- (void)setIconOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1105
1107
|
{
|
|
1106
|
-
layer.iconOpacity = styleValue.
|
|
1108
|
+
layer.iconOpacity = styleValue.mlnStyleValue;
|
|
1107
1109
|
}
|
|
1108
1110
|
|
|
1109
|
-
- (void)setIconOpacityTransition:(
|
|
1111
|
+
- (void)setIconOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1110
1112
|
{
|
|
1111
1113
|
layer.iconOpacityTransition = [styleValue getTransition];
|
|
1112
1114
|
}
|
|
1113
1115
|
|
|
1114
|
-
- (void)setIconColor:(
|
|
1116
|
+
- (void)setIconColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1115
1117
|
{
|
|
1116
|
-
layer.iconColor = styleValue.
|
|
1118
|
+
layer.iconColor = styleValue.mlnStyleValue;
|
|
1117
1119
|
}
|
|
1118
1120
|
|
|
1119
|
-
- (void)setIconColorTransition:(
|
|
1121
|
+
- (void)setIconColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1120
1122
|
{
|
|
1121
1123
|
layer.iconColorTransition = [styleValue getTransition];
|
|
1122
1124
|
}
|
|
1123
1125
|
|
|
1124
|
-
- (void)setIconHaloColor:(
|
|
1126
|
+
- (void)setIconHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1125
1127
|
{
|
|
1126
|
-
layer.iconHaloColor = styleValue.
|
|
1128
|
+
layer.iconHaloColor = styleValue.mlnStyleValue;
|
|
1127
1129
|
}
|
|
1128
1130
|
|
|
1129
|
-
- (void)setIconHaloColorTransition:(
|
|
1131
|
+
- (void)setIconHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1130
1132
|
{
|
|
1131
1133
|
layer.iconHaloColorTransition = [styleValue getTransition];
|
|
1132
1134
|
}
|
|
1133
1135
|
|
|
1134
|
-
- (void)setIconHaloWidth:(
|
|
1136
|
+
- (void)setIconHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1135
1137
|
{
|
|
1136
|
-
layer.iconHaloWidth = styleValue.
|
|
1138
|
+
layer.iconHaloWidth = styleValue.mlnStyleValue;
|
|
1137
1139
|
}
|
|
1138
1140
|
|
|
1139
|
-
- (void)setIconHaloWidthTransition:(
|
|
1141
|
+
- (void)setIconHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1140
1142
|
{
|
|
1141
1143
|
layer.iconHaloWidthTransition = [styleValue getTransition];
|
|
1142
1144
|
}
|
|
1143
1145
|
|
|
1144
|
-
- (void)setIconHaloBlur:(
|
|
1146
|
+
- (void)setIconHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1145
1147
|
{
|
|
1146
|
-
layer.iconHaloBlur = styleValue.
|
|
1148
|
+
layer.iconHaloBlur = styleValue.mlnStyleValue;
|
|
1147
1149
|
}
|
|
1148
1150
|
|
|
1149
|
-
- (void)setIconHaloBlurTransition:(
|
|
1151
|
+
- (void)setIconHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1150
1152
|
{
|
|
1151
1153
|
layer.iconHaloBlurTransition = [styleValue getTransition];
|
|
1152
1154
|
}
|
|
1153
1155
|
|
|
1154
|
-
- (void)setIconTranslate:(
|
|
1156
|
+
- (void)setIconTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1155
1157
|
{
|
|
1156
|
-
layer.iconTranslation = styleValue.
|
|
1158
|
+
layer.iconTranslation = styleValue.mlnStyleValue;
|
|
1157
1159
|
}
|
|
1158
1160
|
|
|
1159
|
-
- (void)setIconTranslateTransition:(
|
|
1161
|
+
- (void)setIconTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1160
1162
|
{
|
|
1161
1163
|
layer.iconTranslationTransition = [styleValue getTransition];
|
|
1162
1164
|
}
|
|
1163
1165
|
|
|
1164
|
-
- (void)setIconTranslateAnchor:(
|
|
1166
|
+
- (void)setIconTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1165
1167
|
{
|
|
1166
|
-
layer.iconTranslationAnchor = styleValue.
|
|
1168
|
+
layer.iconTranslationAnchor = styleValue.mlnStyleValue;
|
|
1167
1169
|
}
|
|
1168
1170
|
|
|
1169
|
-
- (void)setTextOpacity:(
|
|
1171
|
+
- (void)setTextOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1170
1172
|
{
|
|
1171
|
-
layer.textOpacity = styleValue.
|
|
1173
|
+
layer.textOpacity = styleValue.mlnStyleValue;
|
|
1172
1174
|
}
|
|
1173
1175
|
|
|
1174
|
-
- (void)setTextOpacityTransition:(
|
|
1176
|
+
- (void)setTextOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1175
1177
|
{
|
|
1176
1178
|
layer.textOpacityTransition = [styleValue getTransition];
|
|
1177
1179
|
}
|
|
1178
1180
|
|
|
1179
|
-
- (void)setTextColor:(
|
|
1181
|
+
- (void)setTextColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1180
1182
|
{
|
|
1181
|
-
layer.textColor = styleValue.
|
|
1183
|
+
layer.textColor = styleValue.mlnStyleValue;
|
|
1182
1184
|
}
|
|
1183
1185
|
|
|
1184
|
-
- (void)setTextColorTransition:(
|
|
1186
|
+
- (void)setTextColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1185
1187
|
{
|
|
1186
1188
|
layer.textColorTransition = [styleValue getTransition];
|
|
1187
1189
|
}
|
|
1188
1190
|
|
|
1189
|
-
- (void)setTextHaloColor:(
|
|
1191
|
+
- (void)setTextHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1190
1192
|
{
|
|
1191
|
-
layer.textHaloColor = styleValue.
|
|
1193
|
+
layer.textHaloColor = styleValue.mlnStyleValue;
|
|
1192
1194
|
}
|
|
1193
1195
|
|
|
1194
|
-
- (void)setTextHaloColorTransition:(
|
|
1196
|
+
- (void)setTextHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1195
1197
|
{
|
|
1196
1198
|
layer.textHaloColorTransition = [styleValue getTransition];
|
|
1197
1199
|
}
|
|
1198
1200
|
|
|
1199
|
-
- (void)setTextHaloWidth:(
|
|
1201
|
+
- (void)setTextHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1200
1202
|
{
|
|
1201
|
-
layer.textHaloWidth = styleValue.
|
|
1203
|
+
layer.textHaloWidth = styleValue.mlnStyleValue;
|
|
1202
1204
|
}
|
|
1203
1205
|
|
|
1204
|
-
- (void)setTextHaloWidthTransition:(
|
|
1206
|
+
- (void)setTextHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1205
1207
|
{
|
|
1206
1208
|
layer.textHaloWidthTransition = [styleValue getTransition];
|
|
1207
1209
|
}
|
|
1208
1210
|
|
|
1209
|
-
- (void)setTextHaloBlur:(
|
|
1211
|
+
- (void)setTextHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1210
1212
|
{
|
|
1211
|
-
layer.textHaloBlur = styleValue.
|
|
1213
|
+
layer.textHaloBlur = styleValue.mlnStyleValue;
|
|
1212
1214
|
}
|
|
1213
1215
|
|
|
1214
|
-
- (void)setTextHaloBlurTransition:(
|
|
1216
|
+
- (void)setTextHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1215
1217
|
{
|
|
1216
1218
|
layer.textHaloBlurTransition = [styleValue getTransition];
|
|
1217
1219
|
}
|
|
1218
1220
|
|
|
1219
|
-
- (void)setTextTranslate:(
|
|
1221
|
+
- (void)setTextTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1220
1222
|
{
|
|
1221
|
-
layer.textTranslation = styleValue.
|
|
1223
|
+
layer.textTranslation = styleValue.mlnStyleValue;
|
|
1222
1224
|
}
|
|
1223
1225
|
|
|
1224
|
-
- (void)setTextTranslateTransition:(
|
|
1226
|
+
- (void)setTextTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1225
1227
|
{
|
|
1226
1228
|
layer.textTranslationTransition = [styleValue getTransition];
|
|
1227
1229
|
}
|
|
1228
1230
|
|
|
1229
|
-
- (void)setTextTranslateAnchor:(
|
|
1231
|
+
- (void)setTextTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1230
1232
|
{
|
|
1231
|
-
layer.textTranslationAnchor = styleValue.
|
|
1233
|
+
layer.textTranslationAnchor = styleValue.mlnStyleValue;
|
|
1232
1234
|
}
|
|
1233
1235
|
|
|
1234
1236
|
|
|
1235
1237
|
|
|
1236
|
-
- (void)setCircleSortKey:(
|
|
1238
|
+
- (void)setCircleSortKey:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1237
1239
|
{
|
|
1238
|
-
layer.circleSortKey = styleValue.
|
|
1240
|
+
layer.circleSortKey = styleValue.mlnStyleValue;
|
|
1239
1241
|
}
|
|
1240
1242
|
|
|
1241
|
-
- (void)setCircleStyleLayerVisibility:(
|
|
1243
|
+
- (void)setCircleStyleLayerVisibility:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1242
1244
|
{
|
|
1243
1245
|
layer.visible = [styleValue isVisible];
|
|
1244
1246
|
}
|
|
1245
1247
|
|
|
1246
|
-
- (void)setCircleRadius:(
|
|
1248
|
+
- (void)setCircleRadius:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1247
1249
|
{
|
|
1248
|
-
layer.circleRadius = styleValue.
|
|
1250
|
+
layer.circleRadius = styleValue.mlnStyleValue;
|
|
1249
1251
|
}
|
|
1250
1252
|
|
|
1251
|
-
- (void)setCircleRadiusTransition:(
|
|
1253
|
+
- (void)setCircleRadiusTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1252
1254
|
{
|
|
1253
1255
|
layer.circleRadiusTransition = [styleValue getTransition];
|
|
1254
1256
|
}
|
|
1255
1257
|
|
|
1256
|
-
- (void)setCircleColor:(
|
|
1258
|
+
- (void)setCircleColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1257
1259
|
{
|
|
1258
|
-
layer.circleColor = styleValue.
|
|
1260
|
+
layer.circleColor = styleValue.mlnStyleValue;
|
|
1259
1261
|
}
|
|
1260
1262
|
|
|
1261
|
-
- (void)setCircleColorTransition:(
|
|
1263
|
+
- (void)setCircleColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1262
1264
|
{
|
|
1263
1265
|
layer.circleColorTransition = [styleValue getTransition];
|
|
1264
1266
|
}
|
|
1265
1267
|
|
|
1266
|
-
- (void)setCircleBlur:(
|
|
1268
|
+
- (void)setCircleBlur:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1267
1269
|
{
|
|
1268
|
-
layer.circleBlur = styleValue.
|
|
1270
|
+
layer.circleBlur = styleValue.mlnStyleValue;
|
|
1269
1271
|
}
|
|
1270
1272
|
|
|
1271
|
-
- (void)setCircleBlurTransition:(
|
|
1273
|
+
- (void)setCircleBlurTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1272
1274
|
{
|
|
1273
1275
|
layer.circleBlurTransition = [styleValue getTransition];
|
|
1274
1276
|
}
|
|
1275
1277
|
|
|
1276
|
-
- (void)setCircleOpacity:(
|
|
1278
|
+
- (void)setCircleOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1277
1279
|
{
|
|
1278
|
-
layer.circleOpacity = styleValue.
|
|
1280
|
+
layer.circleOpacity = styleValue.mlnStyleValue;
|
|
1279
1281
|
}
|
|
1280
1282
|
|
|
1281
|
-
- (void)setCircleOpacityTransition:(
|
|
1283
|
+
- (void)setCircleOpacityTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1282
1284
|
{
|
|
1283
1285
|
layer.circleOpacityTransition = [styleValue getTransition];
|
|
1284
1286
|
}
|
|
1285
1287
|
|
|
1286
|
-
- (void)setCircleTranslate:(
|
|
1288
|
+
- (void)setCircleTranslate:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1287
1289
|
{
|
|
1288
|
-
layer.circleTranslation = styleValue.
|
|
1290
|
+
layer.circleTranslation = styleValue.mlnStyleValue;
|
|
1289
1291
|
}
|
|
1290
1292
|
|
|
1291
|
-
- (void)setCircleTranslateTransition:(
|
|
1293
|
+
- (void)setCircleTranslateTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1292
1294
|
{
|
|
1293
1295
|
layer.circleTranslationTransition = [styleValue getTransition];
|
|
1294
1296
|
}
|
|
1295
1297
|
|
|
1296
|
-
- (void)setCircleTranslateAnchor:(
|
|
1298
|
+
- (void)setCircleTranslateAnchor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1297
1299
|
{
|
|
1298
|
-
layer.circleTranslationAnchor = styleValue.
|
|
1300
|
+
layer.circleTranslationAnchor = styleValue.mlnStyleValue;
|
|
1299
1301
|
}
|
|
1300
1302
|
|
|
1301
|
-
- (void)setCirclePitchScale:(
|
|
1303
|
+
- (void)setCirclePitchScale:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1302
1304
|
{
|
|
1303
|
-
layer.circleScaleAlignment = styleValue.
|
|
1305
|
+
layer.circleScaleAlignment = styleValue.mlnStyleValue;
|
|
1304
1306
|
}
|
|
1305
1307
|
|
|
1306
|
-
- (void)setCirclePitchAlignment:(
|
|
1308
|
+
- (void)setCirclePitchAlignment:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1307
1309
|
{
|
|
1308
|
-
layer.circlePitchAlignment = styleValue.
|
|
1310
|
+
layer.circlePitchAlignment = styleValue.mlnStyleValue;
|
|
1309
1311
|
}
|
|
1310
1312
|
|
|
1311
|
-
- (void)setCircleStrokeWidth:(
|
|
1313
|
+
- (void)setCircleStrokeWidth:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1312
1314
|
{
|
|
1313
|
-
layer.circleStrokeWidth = styleValue.
|
|
1315
|
+
layer.circleStrokeWidth = styleValue.mlnStyleValue;
|
|
1314
1316
|
}
|
|
1315
1317
|
|
|
1316
|
-
- (void)setCircleStrokeWidthTransition:(
|
|
1318
|
+
- (void)setCircleStrokeWidthTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1317
1319
|
{
|
|
1318
1320
|
layer.circleStrokeWidthTransition = [styleValue getTransition];
|
|
1319
1321
|
}
|
|
1320
1322
|
|
|
1321
|
-
- (void)setCircleStrokeColor:(
|
|
1323
|
+
- (void)setCircleStrokeColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1322
1324
|
{
|
|
1323
|
-
layer.circleStrokeColor = styleValue.
|
|
1325
|
+
layer.circleStrokeColor = styleValue.mlnStyleValue;
|
|
1324
1326
|
}
|
|
1325
1327
|
|
|
1326
|
-
- (void)setCircleStrokeColorTransition:(
|
|
1328
|
+
- (void)setCircleStrokeColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1327
1329
|
{
|
|
1328
1330
|
layer.circleStrokeColorTransition = [styleValue getTransition];
|
|
1329
1331
|
}
|
|
1330
1332
|
|
|
1331
|
-
- (void)setCircleStrokeOpacity:(
|
|
1333
|
+
- (void)setCircleStrokeOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1332
1334
|
{
|
|
1333
|
-
layer.circleStrokeOpacity = styleValue.
|
|
1335
|
+
layer.circleStrokeOpacity = styleValue.mlnStyleValue;
|
|
1334
1336
|
}
|
|
1335
1337
|
|
|
1336
|
-
- (void)setCircleStrokeOpacityTransition:(
|
|
1338
|
+
- (void)setCircleStrokeOpacityTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1337
1339
|
{
|
|
1338
1340
|
layer.circleStrokeOpacityTransition = [styleValue getTransition];
|
|
1339
1341
|
}
|
|
1340
1342
|
|
|
1341
1343
|
|
|
1342
1344
|
|
|
1343
|
-
- (void)setHeatmapStyleLayerVisibility:(
|
|
1345
|
+
- (void)setHeatmapStyleLayerVisibility:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1344
1346
|
{
|
|
1345
1347
|
layer.visible = [styleValue isVisible];
|
|
1346
1348
|
}
|
|
1347
1349
|
|
|
1348
|
-
- (void)setHeatmapRadius:(
|
|
1350
|
+
- (void)setHeatmapRadius:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1349
1351
|
{
|
|
1350
|
-
layer.heatmapRadius = styleValue.
|
|
1352
|
+
layer.heatmapRadius = styleValue.mlnStyleValue;
|
|
1351
1353
|
}
|
|
1352
1354
|
|
|
1353
|
-
- (void)setHeatmapRadiusTransition:(
|
|
1355
|
+
- (void)setHeatmapRadiusTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1354
1356
|
{
|
|
1355
1357
|
layer.heatmapRadiusTransition = [styleValue getTransition];
|
|
1356
1358
|
}
|
|
1357
1359
|
|
|
1358
|
-
- (void)setHeatmapWeight:(
|
|
1360
|
+
- (void)setHeatmapWeight:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1359
1361
|
{
|
|
1360
|
-
layer.heatmapWeight = styleValue.
|
|
1362
|
+
layer.heatmapWeight = styleValue.mlnStyleValue;
|
|
1361
1363
|
}
|
|
1362
1364
|
|
|
1363
|
-
- (void)setHeatmapIntensity:(
|
|
1365
|
+
- (void)setHeatmapIntensity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1364
1366
|
{
|
|
1365
|
-
layer.heatmapIntensity = styleValue.
|
|
1367
|
+
layer.heatmapIntensity = styleValue.mlnStyleValue;
|
|
1366
1368
|
}
|
|
1367
1369
|
|
|
1368
|
-
- (void)setHeatmapIntensityTransition:(
|
|
1370
|
+
- (void)setHeatmapIntensityTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1369
1371
|
{
|
|
1370
1372
|
layer.heatmapIntensityTransition = [styleValue getTransition];
|
|
1371
1373
|
}
|
|
1372
1374
|
|
|
1373
|
-
- (void)setHeatmapColor:(
|
|
1375
|
+
- (void)setHeatmapColor:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1374
1376
|
{
|
|
1375
|
-
layer.heatmapColor = styleValue.
|
|
1377
|
+
layer.heatmapColor = styleValue.mlnStyleValue;
|
|
1376
1378
|
}
|
|
1377
1379
|
|
|
1378
|
-
- (void)setHeatmapOpacity:(
|
|
1380
|
+
- (void)setHeatmapOpacity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1379
1381
|
{
|
|
1380
|
-
layer.heatmapOpacity = styleValue.
|
|
1382
|
+
layer.heatmapOpacity = styleValue.mlnStyleValue;
|
|
1381
1383
|
}
|
|
1382
1384
|
|
|
1383
|
-
- (void)setHeatmapOpacityTransition:(
|
|
1385
|
+
- (void)setHeatmapOpacityTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1384
1386
|
{
|
|
1385
1387
|
layer.heatmapOpacityTransition = [styleValue getTransition];
|
|
1386
1388
|
}
|
|
1387
1389
|
|
|
1388
1390
|
|
|
1389
1391
|
|
|
1390
|
-
- (void)setFillExtrusionStyleLayerVisibility:(
|
|
1392
|
+
- (void)setFillExtrusionStyleLayerVisibility:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1391
1393
|
{
|
|
1392
1394
|
layer.visible = [styleValue isVisible];
|
|
1393
1395
|
}
|
|
1394
1396
|
|
|
1395
|
-
- (void)setFillExtrusionOpacity:(
|
|
1397
|
+
- (void)setFillExtrusionOpacity:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1396
1398
|
{
|
|
1397
|
-
layer.fillExtrusionOpacity = styleValue.
|
|
1399
|
+
layer.fillExtrusionOpacity = styleValue.mlnStyleValue;
|
|
1398
1400
|
}
|
|
1399
1401
|
|
|
1400
|
-
- (void)setFillExtrusionOpacityTransition:(
|
|
1402
|
+
- (void)setFillExtrusionOpacityTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1401
1403
|
{
|
|
1402
1404
|
layer.fillExtrusionOpacityTransition = [styleValue getTransition];
|
|
1403
1405
|
}
|
|
1404
1406
|
|
|
1405
|
-
- (void)setFillExtrusionColor:(
|
|
1407
|
+
- (void)setFillExtrusionColor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1406
1408
|
{
|
|
1407
|
-
layer.fillExtrusionColor = styleValue.
|
|
1409
|
+
layer.fillExtrusionColor = styleValue.mlnStyleValue;
|
|
1408
1410
|
}
|
|
1409
1411
|
|
|
1410
|
-
- (void)setFillExtrusionColorTransition:(
|
|
1412
|
+
- (void)setFillExtrusionColorTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1411
1413
|
{
|
|
1412
1414
|
layer.fillExtrusionColorTransition = [styleValue getTransition];
|
|
1413
1415
|
}
|
|
1414
1416
|
|
|
1415
|
-
- (void)setFillExtrusionTranslate:(
|
|
1417
|
+
- (void)setFillExtrusionTranslate:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1416
1418
|
{
|
|
1417
|
-
layer.fillExtrusionTranslation = styleValue.
|
|
1419
|
+
layer.fillExtrusionTranslation = styleValue.mlnStyleValue;
|
|
1418
1420
|
}
|
|
1419
1421
|
|
|
1420
|
-
- (void)setFillExtrusionTranslateTransition:(
|
|
1422
|
+
- (void)setFillExtrusionTranslateTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1421
1423
|
{
|
|
1422
1424
|
layer.fillExtrusionTranslationTransition = [styleValue getTransition];
|
|
1423
1425
|
}
|
|
1424
1426
|
|
|
1425
|
-
- (void)setFillExtrusionTranslateAnchor:(
|
|
1427
|
+
- (void)setFillExtrusionTranslateAnchor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1426
1428
|
{
|
|
1427
|
-
layer.fillExtrusionTranslationAnchor = styleValue.
|
|
1429
|
+
layer.fillExtrusionTranslationAnchor = styleValue.mlnStyleValue;
|
|
1428
1430
|
}
|
|
1429
1431
|
|
|
1430
|
-
- (void)setFillExtrusionPattern:(
|
|
1432
|
+
- (void)setFillExtrusionPattern:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1431
1433
|
{
|
|
1432
|
-
layer.fillExtrusionPattern = styleValue.
|
|
1434
|
+
layer.fillExtrusionPattern = styleValue.mlnStyleValue;
|
|
1433
1435
|
}
|
|
1434
1436
|
|
|
1435
|
-
- (void)setFillExtrusionPatternTransition:(
|
|
1437
|
+
- (void)setFillExtrusionPatternTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1436
1438
|
{
|
|
1437
1439
|
layer.fillExtrusionPatternTransition = [styleValue getTransition];
|
|
1438
1440
|
}
|
|
1439
1441
|
|
|
1440
|
-
- (void)setFillExtrusionHeight:(
|
|
1442
|
+
- (void)setFillExtrusionHeight:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1441
1443
|
{
|
|
1442
|
-
layer.fillExtrusionHeight = styleValue.
|
|
1444
|
+
layer.fillExtrusionHeight = styleValue.mlnStyleValue;
|
|
1443
1445
|
}
|
|
1444
1446
|
|
|
1445
|
-
- (void)setFillExtrusionHeightTransition:(
|
|
1447
|
+
- (void)setFillExtrusionHeightTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1446
1448
|
{
|
|
1447
1449
|
layer.fillExtrusionHeightTransition = [styleValue getTransition];
|
|
1448
1450
|
}
|
|
1449
1451
|
|
|
1450
|
-
- (void)setFillExtrusionBase:(
|
|
1452
|
+
- (void)setFillExtrusionBase:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1451
1453
|
{
|
|
1452
|
-
layer.fillExtrusionBase = styleValue.
|
|
1454
|
+
layer.fillExtrusionBase = styleValue.mlnStyleValue;
|
|
1453
1455
|
}
|
|
1454
1456
|
|
|
1455
|
-
- (void)setFillExtrusionBaseTransition:(
|
|
1457
|
+
- (void)setFillExtrusionBaseTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1456
1458
|
{
|
|
1457
1459
|
layer.fillExtrusionBaseTransition = [styleValue getTransition];
|
|
1458
1460
|
}
|
|
1459
1461
|
|
|
1462
|
+
- (void)setFillExtrusionVerticalGradient:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1463
|
+
{
|
|
1464
|
+
layer.fillExtrusionHasVerticalGradient = styleValue.mlnStyleValue;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1460
1467
|
|
|
1461
1468
|
|
|
1462
|
-
- (void)setRasterStyleLayerVisibility:(
|
|
1469
|
+
- (void)setRasterStyleLayerVisibility:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1463
1470
|
{
|
|
1464
1471
|
layer.visible = [styleValue isVisible];
|
|
1465
1472
|
}
|
|
1466
1473
|
|
|
1467
|
-
- (void)setRasterOpacity:(
|
|
1474
|
+
- (void)setRasterOpacity:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1468
1475
|
{
|
|
1469
|
-
layer.rasterOpacity = styleValue.
|
|
1476
|
+
layer.rasterOpacity = styleValue.mlnStyleValue;
|
|
1470
1477
|
}
|
|
1471
1478
|
|
|
1472
|
-
- (void)setRasterOpacityTransition:(
|
|
1479
|
+
- (void)setRasterOpacityTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1473
1480
|
{
|
|
1474
1481
|
layer.rasterOpacityTransition = [styleValue getTransition];
|
|
1475
1482
|
}
|
|
1476
1483
|
|
|
1477
|
-
- (void)setRasterHueRotate:(
|
|
1484
|
+
- (void)setRasterHueRotate:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1478
1485
|
{
|
|
1479
|
-
layer.rasterHueRotation = styleValue.
|
|
1486
|
+
layer.rasterHueRotation = styleValue.mlnStyleValue;
|
|
1480
1487
|
}
|
|
1481
1488
|
|
|
1482
|
-
- (void)setRasterHueRotateTransition:(
|
|
1489
|
+
- (void)setRasterHueRotateTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1483
1490
|
{
|
|
1484
1491
|
layer.rasterHueRotationTransition = [styleValue getTransition];
|
|
1485
1492
|
}
|
|
1486
1493
|
|
|
1487
|
-
- (void)setRasterBrightnessMin:(
|
|
1494
|
+
- (void)setRasterBrightnessMin:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1488
1495
|
{
|
|
1489
|
-
layer.minimumRasterBrightness = styleValue.
|
|
1496
|
+
layer.minimumRasterBrightness = styleValue.mlnStyleValue;
|
|
1490
1497
|
}
|
|
1491
1498
|
|
|
1492
|
-
- (void)setRasterBrightnessMinTransition:(
|
|
1499
|
+
- (void)setRasterBrightnessMinTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1493
1500
|
{
|
|
1494
1501
|
layer.minimumRasterBrightnessTransition = [styleValue getTransition];
|
|
1495
1502
|
}
|
|
1496
1503
|
|
|
1497
|
-
- (void)setRasterBrightnessMax:(
|
|
1504
|
+
- (void)setRasterBrightnessMax:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1498
1505
|
{
|
|
1499
|
-
layer.maximumRasterBrightness = styleValue.
|
|
1506
|
+
layer.maximumRasterBrightness = styleValue.mlnStyleValue;
|
|
1500
1507
|
}
|
|
1501
1508
|
|
|
1502
|
-
- (void)setRasterBrightnessMaxTransition:(
|
|
1509
|
+
- (void)setRasterBrightnessMaxTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1503
1510
|
{
|
|
1504
1511
|
layer.maximumRasterBrightnessTransition = [styleValue getTransition];
|
|
1505
1512
|
}
|
|
1506
1513
|
|
|
1507
|
-
- (void)setRasterSaturation:(
|
|
1514
|
+
- (void)setRasterSaturation:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1508
1515
|
{
|
|
1509
|
-
layer.rasterSaturation = styleValue.
|
|
1516
|
+
layer.rasterSaturation = styleValue.mlnStyleValue;
|
|
1510
1517
|
}
|
|
1511
1518
|
|
|
1512
|
-
- (void)setRasterSaturationTransition:(
|
|
1519
|
+
- (void)setRasterSaturationTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1513
1520
|
{
|
|
1514
1521
|
layer.rasterSaturationTransition = [styleValue getTransition];
|
|
1515
1522
|
}
|
|
1516
1523
|
|
|
1517
|
-
- (void)setRasterContrast:(
|
|
1524
|
+
- (void)setRasterContrast:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1518
1525
|
{
|
|
1519
|
-
layer.rasterContrast = styleValue.
|
|
1526
|
+
layer.rasterContrast = styleValue.mlnStyleValue;
|
|
1520
1527
|
}
|
|
1521
1528
|
|
|
1522
|
-
- (void)setRasterContrastTransition:(
|
|
1529
|
+
- (void)setRasterContrastTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1523
1530
|
{
|
|
1524
1531
|
layer.rasterContrastTransition = [styleValue getTransition];
|
|
1525
1532
|
}
|
|
1526
1533
|
|
|
1527
|
-
- (void)setRasterResampling:(
|
|
1534
|
+
- (void)setRasterResampling:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1528
1535
|
{
|
|
1529
|
-
layer.rasterResamplingMode = styleValue.
|
|
1536
|
+
layer.rasterResamplingMode = styleValue.mlnStyleValue;
|
|
1530
1537
|
}
|
|
1531
1538
|
|
|
1532
|
-
- (void)setRasterFadeDuration:(
|
|
1539
|
+
- (void)setRasterFadeDuration:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1533
1540
|
{
|
|
1534
|
-
layer.rasterFadeDuration = styleValue.
|
|
1541
|
+
layer.rasterFadeDuration = styleValue.mlnStyleValue;
|
|
1535
1542
|
}
|
|
1536
1543
|
|
|
1537
1544
|
|
|
1538
1545
|
|
|
1539
|
-
- (void)setHillshadeStyleLayerVisibility:(
|
|
1546
|
+
- (void)setHillshadeStyleLayerVisibility:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1540
1547
|
{
|
|
1541
1548
|
layer.visible = [styleValue isVisible];
|
|
1542
1549
|
}
|
|
1543
1550
|
|
|
1544
|
-
- (void)setHillshadeIlluminationDirection:(
|
|
1551
|
+
- (void)setHillshadeIlluminationDirection:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1545
1552
|
{
|
|
1546
|
-
layer.hillshadeIlluminationDirection = styleValue.
|
|
1553
|
+
layer.hillshadeIlluminationDirection = styleValue.mlnStyleValue;
|
|
1547
1554
|
}
|
|
1548
1555
|
|
|
1549
|
-
- (void)setHillshadeIlluminationAnchor:(
|
|
1556
|
+
- (void)setHillshadeIlluminationAnchor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1550
1557
|
{
|
|
1551
|
-
layer.hillshadeIlluminationAnchor = styleValue.
|
|
1558
|
+
layer.hillshadeIlluminationAnchor = styleValue.mlnStyleValue;
|
|
1552
1559
|
}
|
|
1553
1560
|
|
|
1554
|
-
- (void)setHillshadeExaggeration:(
|
|
1561
|
+
- (void)setHillshadeExaggeration:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1555
1562
|
{
|
|
1556
|
-
layer.hillshadeExaggeration = styleValue.
|
|
1563
|
+
layer.hillshadeExaggeration = styleValue.mlnStyleValue;
|
|
1557
1564
|
}
|
|
1558
1565
|
|
|
1559
|
-
- (void)setHillshadeExaggerationTransition:(
|
|
1566
|
+
- (void)setHillshadeExaggerationTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1560
1567
|
{
|
|
1561
1568
|
layer.hillshadeExaggerationTransition = [styleValue getTransition];
|
|
1562
1569
|
}
|
|
1563
1570
|
|
|
1564
|
-
- (void)setHillshadeShadowColor:(
|
|
1571
|
+
- (void)setHillshadeShadowColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1565
1572
|
{
|
|
1566
|
-
layer.hillshadeShadowColor = styleValue.
|
|
1573
|
+
layer.hillshadeShadowColor = styleValue.mlnStyleValue;
|
|
1567
1574
|
}
|
|
1568
1575
|
|
|
1569
|
-
- (void)setHillshadeShadowColorTransition:(
|
|
1576
|
+
- (void)setHillshadeShadowColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1570
1577
|
{
|
|
1571
1578
|
layer.hillshadeShadowColorTransition = [styleValue getTransition];
|
|
1572
1579
|
}
|
|
1573
1580
|
|
|
1574
|
-
- (void)setHillshadeHighlightColor:(
|
|
1581
|
+
- (void)setHillshadeHighlightColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1575
1582
|
{
|
|
1576
|
-
layer.hillshadeHighlightColor = styleValue.
|
|
1583
|
+
layer.hillshadeHighlightColor = styleValue.mlnStyleValue;
|
|
1577
1584
|
}
|
|
1578
1585
|
|
|
1579
|
-
- (void)setHillshadeHighlightColorTransition:(
|
|
1586
|
+
- (void)setHillshadeHighlightColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1580
1587
|
{
|
|
1581
1588
|
layer.hillshadeHighlightColorTransition = [styleValue getTransition];
|
|
1582
1589
|
}
|
|
1583
1590
|
|
|
1584
|
-
- (void)setHillshadeAccentColor:(
|
|
1591
|
+
- (void)setHillshadeAccentColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1585
1592
|
{
|
|
1586
|
-
layer.hillshadeAccentColor = styleValue.
|
|
1593
|
+
layer.hillshadeAccentColor = styleValue.mlnStyleValue;
|
|
1587
1594
|
}
|
|
1588
1595
|
|
|
1589
|
-
- (void)setHillshadeAccentColorTransition:(
|
|
1596
|
+
- (void)setHillshadeAccentColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1590
1597
|
{
|
|
1591
1598
|
layer.hillshadeAccentColorTransition = [styleValue getTransition];
|
|
1592
1599
|
}
|
|
1593
1600
|
|
|
1594
1601
|
|
|
1595
1602
|
|
|
1596
|
-
- (void)setBackgroundStyleLayerVisibility:(
|
|
1603
|
+
- (void)setBackgroundStyleLayerVisibility:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1597
1604
|
{
|
|
1598
1605
|
layer.visible = [styleValue isVisible];
|
|
1599
1606
|
}
|
|
1600
1607
|
|
|
1601
|
-
- (void)setBackgroundColor:(
|
|
1608
|
+
- (void)setBackgroundColor:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1602
1609
|
{
|
|
1603
|
-
layer.backgroundColor = styleValue.
|
|
1610
|
+
layer.backgroundColor = styleValue.mlnStyleValue;
|
|
1604
1611
|
}
|
|
1605
1612
|
|
|
1606
|
-
- (void)setBackgroundColorTransition:(
|
|
1613
|
+
- (void)setBackgroundColorTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1607
1614
|
{
|
|
1608
1615
|
layer.backgroundColorTransition = [styleValue getTransition];
|
|
1609
1616
|
}
|
|
1610
1617
|
|
|
1611
|
-
- (void)setBackgroundPattern:(
|
|
1618
|
+
- (void)setBackgroundPattern:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1612
1619
|
{
|
|
1613
|
-
layer.backgroundPattern = styleValue.
|
|
1620
|
+
layer.backgroundPattern = styleValue.mlnStyleValue;
|
|
1614
1621
|
}
|
|
1615
1622
|
|
|
1616
|
-
- (void)setBackgroundPatternTransition:(
|
|
1623
|
+
- (void)setBackgroundPatternTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1617
1624
|
{
|
|
1618
1625
|
layer.backgroundPatternTransition = [styleValue getTransition];
|
|
1619
1626
|
}
|
|
1620
1627
|
|
|
1621
|
-
- (void)setBackgroundOpacity:(
|
|
1628
|
+
- (void)setBackgroundOpacity:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1622
1629
|
{
|
|
1623
|
-
layer.backgroundOpacity = styleValue.
|
|
1630
|
+
layer.backgroundOpacity = styleValue.mlnStyleValue;
|
|
1624
1631
|
}
|
|
1625
1632
|
|
|
1626
|
-
- (void)setBackgroundOpacityTransition:(
|
|
1633
|
+
- (void)setBackgroundOpacityTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1627
1634
|
{
|
|
1628
1635
|
layer.backgroundOpacityTransition = [styleValue getTransition];
|
|
1629
1636
|
}
|
|
1630
1637
|
|
|
1631
1638
|
|
|
1632
1639
|
|
|
1633
|
-
- (void)setAnchor:(
|
|
1640
|
+
- (void)setAnchor:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1634
1641
|
{
|
|
1635
|
-
layer.anchor = styleValue.
|
|
1642
|
+
layer.anchor = styleValue.mlnStyleValue;
|
|
1636
1643
|
}
|
|
1637
1644
|
|
|
1638
|
-
- (void)setPosition:(
|
|
1645
|
+
- (void)setPosition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1639
1646
|
{
|
|
1640
1647
|
layer.position = [styleValue getSphericalPosition];
|
|
1641
1648
|
}
|
|
1642
1649
|
|
|
1643
|
-
- (void)setPositionTransition:(
|
|
1650
|
+
- (void)setPositionTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1644
1651
|
{
|
|
1645
1652
|
layer.positionTransition = [styleValue getTransition];
|
|
1646
1653
|
}
|
|
1647
1654
|
|
|
1648
|
-
- (void)setColor:(
|
|
1655
|
+
- (void)setColor:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1649
1656
|
{
|
|
1650
|
-
layer.color = styleValue.
|
|
1657
|
+
layer.color = styleValue.mlnStyleValue;
|
|
1651
1658
|
}
|
|
1652
1659
|
|
|
1653
|
-
- (void)setColorTransition:(
|
|
1660
|
+
- (void)setColorTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1654
1661
|
{
|
|
1655
1662
|
layer.colorTransition = [styleValue getTransition];
|
|
1656
1663
|
}
|
|
1657
1664
|
|
|
1658
|
-
- (void)setIntensity:(
|
|
1665
|
+
- (void)setIntensity:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1659
1666
|
{
|
|
1660
|
-
layer.intensity = styleValue.
|
|
1667
|
+
layer.intensity = styleValue.mlnStyleValue;
|
|
1661
1668
|
}
|
|
1662
1669
|
|
|
1663
|
-
- (void)setIntensityTransition:(
|
|
1670
|
+
- (void)setIntensityTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1664
1671
|
{
|
|
1665
1672
|
layer.intensityTransition = [styleValue getTransition];
|
|
1666
1673
|
}
|