@maplibre/maplibre-react-native 10.0.0-alpha.2 → 10.0.0-alpha.4
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/.eslintrc.js +3 -2
- package/.sonarcloud.properties +1 -1
- package/.yarn/sdks/eslint/lib/unsupported-api.js +20 -0
- package/.yarn/sdks/eslint/package.json +10 -2
- package/.yarn/sdks/prettier/bin/prettier.cjs +20 -0
- package/.yarn/sdks/prettier/package.json +4 -3
- package/.yarn/sdks/typescript/lib/typescript.js +3 -3
- package/.yarn/sdks/typescript/package.json +6 -2
- package/CHANGELOG.md +9 -0
- 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 +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/annotation/MarkerViewManager.java +1 -1
- 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} +13 -13
- 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} +18 -18
- 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 +6 -6
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraUpdateItem.java +2 -2
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraUpdateQueue.java +3 -3
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/camera/RCTMGLCamera.java → rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCamera.java} +24 -24
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/camera/RCTMGLCameraManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCameraManager.java} +18 -18
- 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} +15 -15
- 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 +7 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.java → rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocation.java} +8 -8
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocationManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocationManager.java} +6 -6
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/mapview/LayerSourceInfo.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapView.java → rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapView.java} +4 -4
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapViewManager.java} +7 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java → rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapView.java} +66 -66
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java → rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapViewManager.java} +40 -40
- 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} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFactory.java} +407 -407
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/RCTMGLStyleFunctionParser.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFunctionParser.java} +6 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.java → rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleValue.java} +7 -7
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/styles/layers/RCTLayer.java +9 -9
- 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} +8 -8
- 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} +8 -8
- 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} +8 -8
- 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} +8 -8
- 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} +8 -8
- 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} +8 -8
- 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} +10 -10
- 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} +4 -4
- 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} +14 -14
- 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} +3 -3
- 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} +13 -13
- 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} +34 -34
- 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} +3 -3
- 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} +6 -6
- 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 +7 -7
- 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 +6 -6
- 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 +4 -4
- 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 +8 -8
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/PointAnnotationDragEvent.java +8 -8
- 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 +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserLocation.java +1 -1
- 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 +1 -1
- 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} +8 -8
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLLogging.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLogging.java} +5 -5
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNModule.java} +22 -22
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNOfflineModule.java} +10 -10
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNSnapshotModule.java} +7 -7
- 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 +1 -1
- 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 +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ExpressionParser.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/GeoJSONUtils.java +1 -1
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/GeoViewport.java +1 -1
- 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 +3 -3
- package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/SphericalMercator.java +1 -1
- 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/CustomHttpHeaders.md +4 -4
- package/docs/MapView.md +1 -1
- package/docs/docs.json +2 -2
- 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} +10 -10
- 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} +59 -59
- 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 +222 -0
- package/ios/{RCTMGL/RCTMGLStyle.m → RCTMLN/RCTMLNStyle.m} +345 -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 +4 -4
- package/javascript/{MGLModule.ts → MLNModule.ts} +3 -3
- package/javascript/Maplibre.ts +1 -1
- package/javascript/components/BackgroundLayer.tsx +5 -5
- package/javascript/components/Callout.tsx +5 -5
- package/javascript/components/Camera.tsx +4 -4
- package/javascript/components/CircleLayer.tsx +5 -5
- package/javascript/components/FillExtrusionLayer.tsx +4 -4
- package/javascript/components/FillLayer.tsx +4 -4
- package/javascript/components/HeatmapLayer.tsx +4 -4
- package/javascript/components/ImageSource.tsx +4 -4
- package/javascript/components/Images.tsx +3 -3
- package/javascript/components/Light.tsx +4 -4
- package/javascript/components/LineLayer.tsx +4 -4
- package/javascript/components/MapView.tsx +16 -16
- package/javascript/components/MarkerView.tsx +3 -3
- package/javascript/components/NativeBridgeComponent.tsx +1 -1
- package/javascript/components/NativeUserLocation.tsx +3 -3
- package/javascript/components/PointAnnotation.tsx +4 -4
- package/javascript/components/RasterLayer.tsx +4 -4
- package/javascript/components/RasterSource.tsx +5 -5
- package/javascript/components/ShapeSource.tsx +5 -5
- package/javascript/components/SymbolLayer.tsx +5 -5
- package/javascript/components/VectorSource.tsx +5 -5
- package/javascript/modules/location/locationManager.ts +2 -2
- package/javascript/modules/offline/OfflinePack.ts +1 -1
- package/javascript/modules/offline/offlineManager.ts +2 -2
- package/javascript/modules/snapshot/SnapshotOptions.ts +1 -1
- package/javascript/modules/snapshot/snapshotManager.ts +1 -1
- package/javascript/utils/Logger.ts +3 -3
- package/javascript/utils/animated/AnimatedShape.ts +1 -1
- package/maplibre-react-native.podspec +3 -3
- package/package.json +26 -28
- package/react-native.config.js +1 -1
- package/scripts/autogenHelpers/globals.js +10 -10
- package/scripts/autogenerate.js +11 -11
- 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} +10 -10
- package/setup-jest.js +4 -4
- package/.yarn/plugins/@yarnpkg/plugin-typescript.cjs +0 -9
- 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/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/.yarn/sdks/prettier/{index.js → index.cjs} +0 -0
- /package/android/{rctmgl → rctmln}/.settings/org.eclipse.buildship.core.prefs +0 -0
- /package/android/{rctmgl → rctmln}/build.gradle +0 -0
- /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()) {
|
|
@@ -505,7 +505,7 @@
|
|
|
505
505
|
}
|
|
506
506
|
}
|
|
507
507
|
|
|
508
|
-
- (void)rasterLayer:(
|
|
508
|
+
- (void)rasterLayer:(MLNRasterStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
509
509
|
{
|
|
510
510
|
if (![self _hasReactStyle:reactStyle]) {
|
|
511
511
|
// TODO throw exception
|
|
@@ -518,7 +518,7 @@
|
|
|
518
518
|
continue;
|
|
519
519
|
}
|
|
520
520
|
|
|
521
|
-
|
|
521
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
522
522
|
|
|
523
523
|
if ([prop isEqualToString:@"visibility"]) {
|
|
524
524
|
[self setRasterStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -556,7 +556,7 @@
|
|
|
556
556
|
}
|
|
557
557
|
}
|
|
558
558
|
|
|
559
|
-
- (void)hillshadeLayer:(
|
|
559
|
+
- (void)hillshadeLayer:(MLNHillshadeStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
560
560
|
{
|
|
561
561
|
if (![self _hasReactStyle:reactStyle]) {
|
|
562
562
|
// TODO throw exception
|
|
@@ -569,7 +569,7 @@
|
|
|
569
569
|
continue;
|
|
570
570
|
}
|
|
571
571
|
|
|
572
|
-
|
|
572
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
573
573
|
|
|
574
574
|
if ([prop isEqualToString:@"visibility"]) {
|
|
575
575
|
[self setHillshadeStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -599,7 +599,7 @@
|
|
|
599
599
|
}
|
|
600
600
|
}
|
|
601
601
|
|
|
602
|
-
- (void)backgroundLayer:(
|
|
602
|
+
- (void)backgroundLayer:(MLNBackgroundStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
603
603
|
{
|
|
604
604
|
if (![self _hasReactStyle:reactStyle]) {
|
|
605
605
|
// TODO throw exception
|
|
@@ -612,7 +612,7 @@
|
|
|
612
612
|
continue;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
|
-
|
|
615
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
616
616
|
|
|
617
617
|
if ([prop isEqualToString:@"visibility"]) {
|
|
618
618
|
[self setBackgroundStyleLayerVisibility:layer withReactStyleValue:styleValue];
|
|
@@ -626,7 +626,7 @@
|
|
|
626
626
|
} else {
|
|
627
627
|
NSString *imageURI = [styleValue getImageURI];
|
|
628
628
|
|
|
629
|
-
[
|
|
629
|
+
[RCTMLNUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
|
|
630
630
|
if (image != nil) {
|
|
631
631
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
632
632
|
if (isValid()) {
|
|
@@ -649,7 +649,7 @@
|
|
|
649
649
|
}
|
|
650
650
|
}
|
|
651
651
|
|
|
652
|
-
- (void)lightLayer:(
|
|
652
|
+
- (void)lightLayer:(MLNLight *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
|
|
653
653
|
{
|
|
654
654
|
if (![self _hasReactStyle:reactStyle]) {
|
|
655
655
|
// TODO throw exception
|
|
@@ -662,7 +662,7 @@
|
|
|
662
662
|
continue;
|
|
663
663
|
}
|
|
664
664
|
|
|
665
|
-
|
|
665
|
+
RCTMLNStyleValue *styleValue = [RCTMLNStyleValue make:reactStyle[prop]];
|
|
666
666
|
|
|
667
667
|
if ([prop isEqualToString:@"anchor"]) {
|
|
668
668
|
[self setAnchor:layer withReactStyleValue:styleValue];
|
|
@@ -687,980 +687,980 @@
|
|
|
687
687
|
|
|
688
688
|
|
|
689
689
|
|
|
690
|
-
- (void)setFillSortKey:(
|
|
690
|
+
- (void)setFillSortKey:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
691
691
|
{
|
|
692
|
-
layer.fillSortKey = styleValue.
|
|
692
|
+
layer.fillSortKey = styleValue.mlnStyleValue;
|
|
693
693
|
}
|
|
694
694
|
|
|
695
|
-
- (void)setFillStyleLayerVisibility:(
|
|
695
|
+
- (void)setFillStyleLayerVisibility:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
696
696
|
{
|
|
697
697
|
layer.visible = [styleValue isVisible];
|
|
698
698
|
}
|
|
699
699
|
|
|
700
|
-
- (void)setFillAntialias:(
|
|
700
|
+
- (void)setFillAntialias:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
701
701
|
{
|
|
702
|
-
layer.fillAntialiased = styleValue.
|
|
702
|
+
layer.fillAntialiased = styleValue.mlnStyleValue;
|
|
703
703
|
}
|
|
704
704
|
|
|
705
|
-
- (void)setFillOpacity:(
|
|
705
|
+
- (void)setFillOpacity:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
706
706
|
{
|
|
707
|
-
layer.fillOpacity = styleValue.
|
|
707
|
+
layer.fillOpacity = styleValue.mlnStyleValue;
|
|
708
708
|
}
|
|
709
709
|
|
|
710
|
-
- (void)setFillOpacityTransition:(
|
|
710
|
+
- (void)setFillOpacityTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
711
711
|
{
|
|
712
712
|
layer.fillOpacityTransition = [styleValue getTransition];
|
|
713
713
|
}
|
|
714
714
|
|
|
715
|
-
- (void)setFillColor:(
|
|
715
|
+
- (void)setFillColor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
716
716
|
{
|
|
717
|
-
layer.fillColor = styleValue.
|
|
717
|
+
layer.fillColor = styleValue.mlnStyleValue;
|
|
718
718
|
}
|
|
719
719
|
|
|
720
|
-
- (void)setFillColorTransition:(
|
|
720
|
+
- (void)setFillColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
721
721
|
{
|
|
722
722
|
layer.fillColorTransition = [styleValue getTransition];
|
|
723
723
|
}
|
|
724
724
|
|
|
725
|
-
- (void)setFillOutlineColor:(
|
|
725
|
+
- (void)setFillOutlineColor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
726
726
|
{
|
|
727
|
-
layer.fillOutlineColor = styleValue.
|
|
727
|
+
layer.fillOutlineColor = styleValue.mlnStyleValue;
|
|
728
728
|
}
|
|
729
729
|
|
|
730
|
-
- (void)setFillOutlineColorTransition:(
|
|
730
|
+
- (void)setFillOutlineColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
731
731
|
{
|
|
732
732
|
layer.fillOutlineColorTransition = [styleValue getTransition];
|
|
733
733
|
}
|
|
734
734
|
|
|
735
|
-
- (void)setFillTranslate:(
|
|
735
|
+
- (void)setFillTranslate:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
736
736
|
{
|
|
737
|
-
layer.fillTranslation = styleValue.
|
|
737
|
+
layer.fillTranslation = styleValue.mlnStyleValue;
|
|
738
738
|
}
|
|
739
739
|
|
|
740
|
-
- (void)setFillTranslateTransition:(
|
|
740
|
+
- (void)setFillTranslateTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
741
741
|
{
|
|
742
742
|
layer.fillTranslationTransition = [styleValue getTransition];
|
|
743
743
|
}
|
|
744
744
|
|
|
745
|
-
- (void)setFillTranslateAnchor:(
|
|
745
|
+
- (void)setFillTranslateAnchor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
746
746
|
{
|
|
747
|
-
layer.fillTranslationAnchor = styleValue.
|
|
747
|
+
layer.fillTranslationAnchor = styleValue.mlnStyleValue;
|
|
748
748
|
}
|
|
749
749
|
|
|
750
|
-
- (void)setFillPattern:(
|
|
750
|
+
- (void)setFillPattern:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
751
751
|
{
|
|
752
|
-
layer.fillPattern = styleValue.
|
|
752
|
+
layer.fillPattern = styleValue.mlnStyleValue;
|
|
753
753
|
}
|
|
754
754
|
|
|
755
|
-
- (void)setFillPatternTransition:(
|
|
755
|
+
- (void)setFillPatternTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
756
756
|
{
|
|
757
757
|
layer.fillPatternTransition = [styleValue getTransition];
|
|
758
758
|
}
|
|
759
759
|
|
|
760
760
|
|
|
761
761
|
|
|
762
|
-
- (void)setLineCap:(
|
|
762
|
+
- (void)setLineCap:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
763
763
|
{
|
|
764
|
-
layer.lineCap = styleValue.
|
|
764
|
+
layer.lineCap = styleValue.mlnStyleValue;
|
|
765
765
|
}
|
|
766
766
|
|
|
767
|
-
- (void)setLineJoin:(
|
|
767
|
+
- (void)setLineJoin:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
768
768
|
{
|
|
769
|
-
layer.lineJoin = styleValue.
|
|
769
|
+
layer.lineJoin = styleValue.mlnStyleValue;
|
|
770
770
|
}
|
|
771
771
|
|
|
772
|
-
- (void)setLineMiterLimit:(
|
|
772
|
+
- (void)setLineMiterLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
773
773
|
{
|
|
774
|
-
layer.lineMiterLimit = styleValue.
|
|
774
|
+
layer.lineMiterLimit = styleValue.mlnStyleValue;
|
|
775
775
|
}
|
|
776
776
|
|
|
777
|
-
- (void)setLineRoundLimit:(
|
|
777
|
+
- (void)setLineRoundLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
778
778
|
{
|
|
779
|
-
layer.lineRoundLimit = styleValue.
|
|
779
|
+
layer.lineRoundLimit = styleValue.mlnStyleValue;
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
-
- (void)setLineSortKey:(
|
|
782
|
+
- (void)setLineSortKey:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
783
783
|
{
|
|
784
|
-
layer.lineSortKey = styleValue.
|
|
784
|
+
layer.lineSortKey = styleValue.mlnStyleValue;
|
|
785
785
|
}
|
|
786
786
|
|
|
787
|
-
- (void)setLineStyleLayerVisibility:(
|
|
787
|
+
- (void)setLineStyleLayerVisibility:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
788
788
|
{
|
|
789
789
|
layer.visible = [styleValue isVisible];
|
|
790
790
|
}
|
|
791
791
|
|
|
792
|
-
- (void)setLineOpacity:(
|
|
792
|
+
- (void)setLineOpacity:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
793
793
|
{
|
|
794
|
-
layer.lineOpacity = styleValue.
|
|
794
|
+
layer.lineOpacity = styleValue.mlnStyleValue;
|
|
795
795
|
}
|
|
796
796
|
|
|
797
|
-
- (void)setLineOpacityTransition:(
|
|
797
|
+
- (void)setLineOpacityTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
798
798
|
{
|
|
799
799
|
layer.lineOpacityTransition = [styleValue getTransition];
|
|
800
800
|
}
|
|
801
801
|
|
|
802
|
-
- (void)setLineColor:(
|
|
802
|
+
- (void)setLineColor:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
803
803
|
{
|
|
804
|
-
layer.lineColor = styleValue.
|
|
804
|
+
layer.lineColor = styleValue.mlnStyleValue;
|
|
805
805
|
}
|
|
806
806
|
|
|
807
|
-
- (void)setLineColorTransition:(
|
|
807
|
+
- (void)setLineColorTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
808
808
|
{
|
|
809
809
|
layer.lineColorTransition = [styleValue getTransition];
|
|
810
810
|
}
|
|
811
811
|
|
|
812
|
-
- (void)setLineTranslate:(
|
|
812
|
+
- (void)setLineTranslate:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
813
813
|
{
|
|
814
|
-
layer.lineTranslation = styleValue.
|
|
814
|
+
layer.lineTranslation = styleValue.mlnStyleValue;
|
|
815
815
|
}
|
|
816
816
|
|
|
817
|
-
- (void)setLineTranslateTransition:(
|
|
817
|
+
- (void)setLineTranslateTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
818
818
|
{
|
|
819
819
|
layer.lineTranslationTransition = [styleValue getTransition];
|
|
820
820
|
}
|
|
821
821
|
|
|
822
|
-
- (void)setLineTranslateAnchor:(
|
|
822
|
+
- (void)setLineTranslateAnchor:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
823
823
|
{
|
|
824
|
-
layer.lineTranslationAnchor = styleValue.
|
|
824
|
+
layer.lineTranslationAnchor = styleValue.mlnStyleValue;
|
|
825
825
|
}
|
|
826
826
|
|
|
827
|
-
- (void)setLineWidth:(
|
|
827
|
+
- (void)setLineWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
828
828
|
{
|
|
829
|
-
layer.lineWidth = styleValue.
|
|
829
|
+
layer.lineWidth = styleValue.mlnStyleValue;
|
|
830
830
|
}
|
|
831
831
|
|
|
832
|
-
- (void)setLineWidthTransition:(
|
|
832
|
+
- (void)setLineWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
833
833
|
{
|
|
834
834
|
layer.lineWidthTransition = [styleValue getTransition];
|
|
835
835
|
}
|
|
836
836
|
|
|
837
|
-
- (void)setLineGapWidth:(
|
|
837
|
+
- (void)setLineGapWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
838
838
|
{
|
|
839
|
-
layer.lineGapWidth = styleValue.
|
|
839
|
+
layer.lineGapWidth = styleValue.mlnStyleValue;
|
|
840
840
|
}
|
|
841
841
|
|
|
842
|
-
- (void)setLineGapWidthTransition:(
|
|
842
|
+
- (void)setLineGapWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
843
843
|
{
|
|
844
844
|
layer.lineGapWidthTransition = [styleValue getTransition];
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
-
- (void)setLineOffset:(
|
|
847
|
+
- (void)setLineOffset:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
848
848
|
{
|
|
849
|
-
layer.lineOffset = styleValue.
|
|
849
|
+
layer.lineOffset = styleValue.mlnStyleValue;
|
|
850
850
|
}
|
|
851
851
|
|
|
852
|
-
- (void)setLineOffsetTransition:(
|
|
852
|
+
- (void)setLineOffsetTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
853
853
|
{
|
|
854
854
|
layer.lineOffsetTransition = [styleValue getTransition];
|
|
855
855
|
}
|
|
856
856
|
|
|
857
|
-
- (void)setLineBlur:(
|
|
857
|
+
- (void)setLineBlur:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
858
858
|
{
|
|
859
|
-
layer.lineBlur = styleValue.
|
|
859
|
+
layer.lineBlur = styleValue.mlnStyleValue;
|
|
860
860
|
}
|
|
861
861
|
|
|
862
|
-
- (void)setLineBlurTransition:(
|
|
862
|
+
- (void)setLineBlurTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
863
863
|
{
|
|
864
864
|
layer.lineBlurTransition = [styleValue getTransition];
|
|
865
865
|
}
|
|
866
866
|
|
|
867
|
-
- (void)setLineDasharray:(
|
|
867
|
+
- (void)setLineDasharray:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
868
868
|
{
|
|
869
|
-
layer.lineDashPattern = styleValue.
|
|
869
|
+
layer.lineDashPattern = styleValue.mlnStyleValue;
|
|
870
870
|
}
|
|
871
871
|
|
|
872
|
-
- (void)setLineDasharrayTransition:(
|
|
872
|
+
- (void)setLineDasharrayTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
873
873
|
{
|
|
874
874
|
layer.lineDashPatternTransition = [styleValue getTransition];
|
|
875
875
|
}
|
|
876
876
|
|
|
877
|
-
- (void)setLinePattern:(
|
|
877
|
+
- (void)setLinePattern:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
878
878
|
{
|
|
879
|
-
layer.linePattern = styleValue.
|
|
879
|
+
layer.linePattern = styleValue.mlnStyleValue;
|
|
880
880
|
}
|
|
881
881
|
|
|
882
|
-
- (void)setLinePatternTransition:(
|
|
882
|
+
- (void)setLinePatternTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
883
883
|
{
|
|
884
884
|
layer.linePatternTransition = [styleValue getTransition];
|
|
885
885
|
}
|
|
886
886
|
|
|
887
|
-
- (void)setLineGradient:(
|
|
887
|
+
- (void)setLineGradient:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
888
888
|
{
|
|
889
|
-
layer.lineGradient = styleValue.
|
|
889
|
+
layer.lineGradient = styleValue.mlnStyleValue;
|
|
890
890
|
}
|
|
891
891
|
|
|
892
892
|
|
|
893
893
|
|
|
894
|
-
- (void)setSymbolPlacement:(
|
|
894
|
+
- (void)setSymbolPlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
895
895
|
{
|
|
896
|
-
layer.symbolPlacement = styleValue.
|
|
896
|
+
layer.symbolPlacement = styleValue.mlnStyleValue;
|
|
897
897
|
}
|
|
898
898
|
|
|
899
|
-
- (void)setSymbolSpacing:(
|
|
899
|
+
- (void)setSymbolSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
900
900
|
{
|
|
901
|
-
layer.symbolSpacing = styleValue.
|
|
901
|
+
layer.symbolSpacing = styleValue.mlnStyleValue;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
-
- (void)setSymbolAvoidEdges:(
|
|
904
|
+
- (void)setSymbolAvoidEdges:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
905
905
|
{
|
|
906
|
-
layer.symbolAvoidsEdges = styleValue.
|
|
906
|
+
layer.symbolAvoidsEdges = styleValue.mlnStyleValue;
|
|
907
907
|
}
|
|
908
908
|
|
|
909
|
-
- (void)setSymbolSortKey:(
|
|
909
|
+
- (void)setSymbolSortKey:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
910
910
|
{
|
|
911
|
-
layer.symbolSortKey = styleValue.
|
|
911
|
+
layer.symbolSortKey = styleValue.mlnStyleValue;
|
|
912
912
|
}
|
|
913
913
|
|
|
914
|
-
- (void)setSymbolZOrder:(
|
|
914
|
+
- (void)setSymbolZOrder:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
915
915
|
{
|
|
916
|
-
layer.symbolZOrder = styleValue.
|
|
916
|
+
layer.symbolZOrder = styleValue.mlnStyleValue;
|
|
917
917
|
}
|
|
918
918
|
|
|
919
|
-
- (void)setIconAllowOverlap:(
|
|
919
|
+
- (void)setIconAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
920
920
|
{
|
|
921
|
-
layer.iconAllowsOverlap = styleValue.
|
|
921
|
+
layer.iconAllowsOverlap = styleValue.mlnStyleValue;
|
|
922
922
|
}
|
|
923
923
|
|
|
924
|
-
- (void)setIconIgnorePlacement:(
|
|
924
|
+
- (void)setIconIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
925
925
|
{
|
|
926
|
-
layer.iconIgnoresPlacement = styleValue.
|
|
926
|
+
layer.iconIgnoresPlacement = styleValue.mlnStyleValue;
|
|
927
927
|
}
|
|
928
928
|
|
|
929
|
-
- (void)setIconOptional:(
|
|
929
|
+
- (void)setIconOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
930
930
|
{
|
|
931
|
-
layer.iconOptional = styleValue.
|
|
931
|
+
layer.iconOptional = styleValue.mlnStyleValue;
|
|
932
932
|
}
|
|
933
933
|
|
|
934
|
-
- (void)setIconRotationAlignment:(
|
|
934
|
+
- (void)setIconRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
935
935
|
{
|
|
936
|
-
layer.iconRotationAlignment = styleValue.
|
|
936
|
+
layer.iconRotationAlignment = styleValue.mlnStyleValue;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
|
-
- (void)setIconSize:(
|
|
939
|
+
- (void)setIconSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
940
940
|
{
|
|
941
|
-
layer.iconScale = styleValue.
|
|
941
|
+
layer.iconScale = styleValue.mlnStyleValue;
|
|
942
942
|
}
|
|
943
943
|
|
|
944
|
-
- (void)setIconTextFit:(
|
|
944
|
+
- (void)setIconTextFit:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
945
945
|
{
|
|
946
|
-
layer.iconTextFit = styleValue.
|
|
946
|
+
layer.iconTextFit = styleValue.mlnStyleValue;
|
|
947
947
|
}
|
|
948
948
|
|
|
949
|
-
- (void)setIconTextFitPadding:(
|
|
949
|
+
- (void)setIconTextFitPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
950
950
|
{
|
|
951
|
-
layer.iconTextFitPadding = styleValue.
|
|
951
|
+
layer.iconTextFitPadding = styleValue.mlnStyleValue;
|
|
952
952
|
}
|
|
953
953
|
|
|
954
|
-
- (void)setIconImage:(
|
|
954
|
+
- (void)setIconImage:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
955
955
|
{
|
|
956
|
-
layer.iconImageName = styleValue.
|
|
956
|
+
layer.iconImageName = styleValue.mlnStyleValue;
|
|
957
957
|
}
|
|
958
958
|
|
|
959
|
-
- (void)setIconRotate:(
|
|
959
|
+
- (void)setIconRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
960
960
|
{
|
|
961
|
-
layer.iconRotation = styleValue.
|
|
961
|
+
layer.iconRotation = styleValue.mlnStyleValue;
|
|
962
962
|
}
|
|
963
963
|
|
|
964
|
-
- (void)setIconPadding:(
|
|
964
|
+
- (void)setIconPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
965
965
|
{
|
|
966
|
-
layer.iconPadding = styleValue.
|
|
966
|
+
layer.iconPadding = styleValue.mlnStyleValue;
|
|
967
967
|
}
|
|
968
968
|
|
|
969
|
-
- (void)setIconKeepUpright:(
|
|
969
|
+
- (void)setIconKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
970
970
|
{
|
|
971
|
-
layer.keepsIconUpright = styleValue.
|
|
971
|
+
layer.keepsIconUpright = styleValue.mlnStyleValue;
|
|
972
972
|
}
|
|
973
973
|
|
|
974
|
-
- (void)setIconOffset:(
|
|
974
|
+
- (void)setIconOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
975
975
|
{
|
|
976
|
-
layer.iconOffset = styleValue.
|
|
976
|
+
layer.iconOffset = styleValue.mlnStyleValue;
|
|
977
977
|
}
|
|
978
978
|
|
|
979
|
-
- (void)setIconAnchor:(
|
|
979
|
+
- (void)setIconAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
980
980
|
{
|
|
981
|
-
layer.iconAnchor = styleValue.
|
|
981
|
+
layer.iconAnchor = styleValue.mlnStyleValue;
|
|
982
982
|
}
|
|
983
983
|
|
|
984
|
-
- (void)setIconPitchAlignment:(
|
|
984
|
+
- (void)setIconPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
985
985
|
{
|
|
986
|
-
layer.iconPitchAlignment = styleValue.
|
|
986
|
+
layer.iconPitchAlignment = styleValue.mlnStyleValue;
|
|
987
987
|
}
|
|
988
988
|
|
|
989
|
-
- (void)setTextPitchAlignment:(
|
|
989
|
+
- (void)setTextPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
990
990
|
{
|
|
991
|
-
layer.textPitchAlignment = styleValue.
|
|
991
|
+
layer.textPitchAlignment = styleValue.mlnStyleValue;
|
|
992
992
|
}
|
|
993
993
|
|
|
994
|
-
- (void)setTextRotationAlignment:(
|
|
994
|
+
- (void)setTextRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
995
995
|
{
|
|
996
|
-
layer.textRotationAlignment = styleValue.
|
|
996
|
+
layer.textRotationAlignment = styleValue.mlnStyleValue;
|
|
997
997
|
}
|
|
998
998
|
|
|
999
|
-
- (void)setTextField:(
|
|
999
|
+
- (void)setTextField:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1000
1000
|
{
|
|
1001
|
-
layer.text = styleValue.
|
|
1001
|
+
layer.text = styleValue.mlnStyleValue;
|
|
1002
1002
|
}
|
|
1003
1003
|
|
|
1004
|
-
- (void)setTextFont:(
|
|
1004
|
+
- (void)setTextFont:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1005
1005
|
{
|
|
1006
|
-
layer.textFontNames = styleValue.
|
|
1006
|
+
layer.textFontNames = styleValue.mlnStyleValue;
|
|
1007
1007
|
}
|
|
1008
1008
|
|
|
1009
|
-
- (void)setTextSize:(
|
|
1009
|
+
- (void)setTextSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1010
1010
|
{
|
|
1011
|
-
layer.textFontSize = styleValue.
|
|
1011
|
+
layer.textFontSize = styleValue.mlnStyleValue;
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
|
-
- (void)setTextMaxWidth:(
|
|
1014
|
+
- (void)setTextMaxWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1015
1015
|
{
|
|
1016
|
-
layer.maximumTextWidth = styleValue.
|
|
1016
|
+
layer.maximumTextWidth = styleValue.mlnStyleValue;
|
|
1017
1017
|
}
|
|
1018
1018
|
|
|
1019
|
-
- (void)setTextLineHeight:(
|
|
1019
|
+
- (void)setTextLineHeight:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1020
1020
|
{
|
|
1021
|
-
layer.textLineHeight = styleValue.
|
|
1021
|
+
layer.textLineHeight = styleValue.mlnStyleValue;
|
|
1022
1022
|
}
|
|
1023
1023
|
|
|
1024
|
-
- (void)setTextLetterSpacing:(
|
|
1024
|
+
- (void)setTextLetterSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1025
1025
|
{
|
|
1026
|
-
layer.textLetterSpacing = styleValue.
|
|
1026
|
+
layer.textLetterSpacing = styleValue.mlnStyleValue;
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
|
-
- (void)setTextJustify:(
|
|
1029
|
+
- (void)setTextJustify:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1030
1030
|
{
|
|
1031
|
-
layer.textJustification = styleValue.
|
|
1031
|
+
layer.textJustification = styleValue.mlnStyleValue;
|
|
1032
1032
|
}
|
|
1033
1033
|
|
|
1034
|
-
- (void)setTextRadialOffset:(
|
|
1034
|
+
- (void)setTextRadialOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1035
1035
|
{
|
|
1036
|
-
layer.textRadialOffset = styleValue.
|
|
1036
|
+
layer.textRadialOffset = styleValue.mlnStyleValue;
|
|
1037
1037
|
}
|
|
1038
1038
|
|
|
1039
|
-
- (void)setTextVariableAnchor:(
|
|
1039
|
+
- (void)setTextVariableAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1040
1040
|
{
|
|
1041
|
-
layer.textVariableAnchor = styleValue.
|
|
1041
|
+
layer.textVariableAnchor = styleValue.mlnStyleValue;
|
|
1042
1042
|
}
|
|
1043
1043
|
|
|
1044
|
-
- (void)setTextAnchor:(
|
|
1044
|
+
- (void)setTextAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1045
1045
|
{
|
|
1046
|
-
layer.textAnchor = styleValue.
|
|
1046
|
+
layer.textAnchor = styleValue.mlnStyleValue;
|
|
1047
1047
|
}
|
|
1048
1048
|
|
|
1049
|
-
- (void)setTextMaxAngle:(
|
|
1049
|
+
- (void)setTextMaxAngle:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1050
1050
|
{
|
|
1051
|
-
layer.maximumTextAngle = styleValue.
|
|
1051
|
+
layer.maximumTextAngle = styleValue.mlnStyleValue;
|
|
1052
1052
|
}
|
|
1053
1053
|
|
|
1054
|
-
- (void)setTextWritingMode:(
|
|
1054
|
+
- (void)setTextWritingMode:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1055
1055
|
{
|
|
1056
|
-
layer.textWritingModes = styleValue.
|
|
1056
|
+
layer.textWritingModes = styleValue.mlnStyleValue;
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
|
-
- (void)setTextRotate:(
|
|
1059
|
+
- (void)setTextRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1060
1060
|
{
|
|
1061
|
-
layer.textRotation = styleValue.
|
|
1061
|
+
layer.textRotation = styleValue.mlnStyleValue;
|
|
1062
1062
|
}
|
|
1063
1063
|
|
|
1064
|
-
- (void)setTextPadding:(
|
|
1064
|
+
- (void)setTextPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1065
1065
|
{
|
|
1066
|
-
layer.textPadding = styleValue.
|
|
1066
|
+
layer.textPadding = styleValue.mlnStyleValue;
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
-
- (void)setTextKeepUpright:(
|
|
1069
|
+
- (void)setTextKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1070
1070
|
{
|
|
1071
|
-
layer.keepsTextUpright = styleValue.
|
|
1071
|
+
layer.keepsTextUpright = styleValue.mlnStyleValue;
|
|
1072
1072
|
}
|
|
1073
1073
|
|
|
1074
|
-
- (void)setTextTransform:(
|
|
1074
|
+
- (void)setTextTransform:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1075
1075
|
{
|
|
1076
|
-
layer.textTransform = styleValue.
|
|
1076
|
+
layer.textTransform = styleValue.mlnStyleValue;
|
|
1077
1077
|
}
|
|
1078
1078
|
|
|
1079
|
-
- (void)setTextOffset:(
|
|
1079
|
+
- (void)setTextOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1080
1080
|
{
|
|
1081
|
-
layer.textOffset = styleValue.
|
|
1081
|
+
layer.textOffset = styleValue.mlnStyleValue;
|
|
1082
1082
|
}
|
|
1083
1083
|
|
|
1084
|
-
- (void)setTextAllowOverlap:(
|
|
1084
|
+
- (void)setTextAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1085
1085
|
{
|
|
1086
|
-
layer.textAllowsOverlap = styleValue.
|
|
1086
|
+
layer.textAllowsOverlap = styleValue.mlnStyleValue;
|
|
1087
1087
|
}
|
|
1088
1088
|
|
|
1089
|
-
- (void)setTextIgnorePlacement:(
|
|
1089
|
+
- (void)setTextIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1090
1090
|
{
|
|
1091
|
-
layer.textIgnoresPlacement = styleValue.
|
|
1091
|
+
layer.textIgnoresPlacement = styleValue.mlnStyleValue;
|
|
1092
1092
|
}
|
|
1093
1093
|
|
|
1094
|
-
- (void)setTextOptional:(
|
|
1094
|
+
- (void)setTextOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1095
1095
|
{
|
|
1096
|
-
layer.textOptional = styleValue.
|
|
1096
|
+
layer.textOptional = styleValue.mlnStyleValue;
|
|
1097
1097
|
}
|
|
1098
1098
|
|
|
1099
|
-
- (void)setSymbolStyleLayerVisibility:(
|
|
1099
|
+
- (void)setSymbolStyleLayerVisibility:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1100
1100
|
{
|
|
1101
1101
|
layer.visible = [styleValue isVisible];
|
|
1102
1102
|
}
|
|
1103
1103
|
|
|
1104
|
-
- (void)setIconOpacity:(
|
|
1104
|
+
- (void)setIconOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1105
1105
|
{
|
|
1106
|
-
layer.iconOpacity = styleValue.
|
|
1106
|
+
layer.iconOpacity = styleValue.mlnStyleValue;
|
|
1107
1107
|
}
|
|
1108
1108
|
|
|
1109
|
-
- (void)setIconOpacityTransition:(
|
|
1109
|
+
- (void)setIconOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1110
1110
|
{
|
|
1111
1111
|
layer.iconOpacityTransition = [styleValue getTransition];
|
|
1112
1112
|
}
|
|
1113
1113
|
|
|
1114
|
-
- (void)setIconColor:(
|
|
1114
|
+
- (void)setIconColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1115
1115
|
{
|
|
1116
|
-
layer.iconColor = styleValue.
|
|
1116
|
+
layer.iconColor = styleValue.mlnStyleValue;
|
|
1117
1117
|
}
|
|
1118
1118
|
|
|
1119
|
-
- (void)setIconColorTransition:(
|
|
1119
|
+
- (void)setIconColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1120
1120
|
{
|
|
1121
1121
|
layer.iconColorTransition = [styleValue getTransition];
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
1124
|
-
- (void)setIconHaloColor:(
|
|
1124
|
+
- (void)setIconHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1125
1125
|
{
|
|
1126
|
-
layer.iconHaloColor = styleValue.
|
|
1126
|
+
layer.iconHaloColor = styleValue.mlnStyleValue;
|
|
1127
1127
|
}
|
|
1128
1128
|
|
|
1129
|
-
- (void)setIconHaloColorTransition:(
|
|
1129
|
+
- (void)setIconHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1130
1130
|
{
|
|
1131
1131
|
layer.iconHaloColorTransition = [styleValue getTransition];
|
|
1132
1132
|
}
|
|
1133
1133
|
|
|
1134
|
-
- (void)setIconHaloWidth:(
|
|
1134
|
+
- (void)setIconHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1135
1135
|
{
|
|
1136
|
-
layer.iconHaloWidth = styleValue.
|
|
1136
|
+
layer.iconHaloWidth = styleValue.mlnStyleValue;
|
|
1137
1137
|
}
|
|
1138
1138
|
|
|
1139
|
-
- (void)setIconHaloWidthTransition:(
|
|
1139
|
+
- (void)setIconHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1140
1140
|
{
|
|
1141
1141
|
layer.iconHaloWidthTransition = [styleValue getTransition];
|
|
1142
1142
|
}
|
|
1143
1143
|
|
|
1144
|
-
- (void)setIconHaloBlur:(
|
|
1144
|
+
- (void)setIconHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1145
1145
|
{
|
|
1146
|
-
layer.iconHaloBlur = styleValue.
|
|
1146
|
+
layer.iconHaloBlur = styleValue.mlnStyleValue;
|
|
1147
1147
|
}
|
|
1148
1148
|
|
|
1149
|
-
- (void)setIconHaloBlurTransition:(
|
|
1149
|
+
- (void)setIconHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1150
1150
|
{
|
|
1151
1151
|
layer.iconHaloBlurTransition = [styleValue getTransition];
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
|
-
- (void)setIconTranslate:(
|
|
1154
|
+
- (void)setIconTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1155
1155
|
{
|
|
1156
|
-
layer.iconTranslation = styleValue.
|
|
1156
|
+
layer.iconTranslation = styleValue.mlnStyleValue;
|
|
1157
1157
|
}
|
|
1158
1158
|
|
|
1159
|
-
- (void)setIconTranslateTransition:(
|
|
1159
|
+
- (void)setIconTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1160
1160
|
{
|
|
1161
1161
|
layer.iconTranslationTransition = [styleValue getTransition];
|
|
1162
1162
|
}
|
|
1163
1163
|
|
|
1164
|
-
- (void)setIconTranslateAnchor:(
|
|
1164
|
+
- (void)setIconTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1165
1165
|
{
|
|
1166
|
-
layer.iconTranslationAnchor = styleValue.
|
|
1166
|
+
layer.iconTranslationAnchor = styleValue.mlnStyleValue;
|
|
1167
1167
|
}
|
|
1168
1168
|
|
|
1169
|
-
- (void)setTextOpacity:(
|
|
1169
|
+
- (void)setTextOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1170
1170
|
{
|
|
1171
|
-
layer.textOpacity = styleValue.
|
|
1171
|
+
layer.textOpacity = styleValue.mlnStyleValue;
|
|
1172
1172
|
}
|
|
1173
1173
|
|
|
1174
|
-
- (void)setTextOpacityTransition:(
|
|
1174
|
+
- (void)setTextOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1175
1175
|
{
|
|
1176
1176
|
layer.textOpacityTransition = [styleValue getTransition];
|
|
1177
1177
|
}
|
|
1178
1178
|
|
|
1179
|
-
- (void)setTextColor:(
|
|
1179
|
+
- (void)setTextColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1180
1180
|
{
|
|
1181
|
-
layer.textColor = styleValue.
|
|
1181
|
+
layer.textColor = styleValue.mlnStyleValue;
|
|
1182
1182
|
}
|
|
1183
1183
|
|
|
1184
|
-
- (void)setTextColorTransition:(
|
|
1184
|
+
- (void)setTextColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1185
1185
|
{
|
|
1186
1186
|
layer.textColorTransition = [styleValue getTransition];
|
|
1187
1187
|
}
|
|
1188
1188
|
|
|
1189
|
-
- (void)setTextHaloColor:(
|
|
1189
|
+
- (void)setTextHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1190
1190
|
{
|
|
1191
|
-
layer.textHaloColor = styleValue.
|
|
1191
|
+
layer.textHaloColor = styleValue.mlnStyleValue;
|
|
1192
1192
|
}
|
|
1193
1193
|
|
|
1194
|
-
- (void)setTextHaloColorTransition:(
|
|
1194
|
+
- (void)setTextHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1195
1195
|
{
|
|
1196
1196
|
layer.textHaloColorTransition = [styleValue getTransition];
|
|
1197
1197
|
}
|
|
1198
1198
|
|
|
1199
|
-
- (void)setTextHaloWidth:(
|
|
1199
|
+
- (void)setTextHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1200
1200
|
{
|
|
1201
|
-
layer.textHaloWidth = styleValue.
|
|
1201
|
+
layer.textHaloWidth = styleValue.mlnStyleValue;
|
|
1202
1202
|
}
|
|
1203
1203
|
|
|
1204
|
-
- (void)setTextHaloWidthTransition:(
|
|
1204
|
+
- (void)setTextHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1205
1205
|
{
|
|
1206
1206
|
layer.textHaloWidthTransition = [styleValue getTransition];
|
|
1207
1207
|
}
|
|
1208
1208
|
|
|
1209
|
-
- (void)setTextHaloBlur:(
|
|
1209
|
+
- (void)setTextHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1210
1210
|
{
|
|
1211
|
-
layer.textHaloBlur = styleValue.
|
|
1211
|
+
layer.textHaloBlur = styleValue.mlnStyleValue;
|
|
1212
1212
|
}
|
|
1213
1213
|
|
|
1214
|
-
- (void)setTextHaloBlurTransition:(
|
|
1214
|
+
- (void)setTextHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1215
1215
|
{
|
|
1216
1216
|
layer.textHaloBlurTransition = [styleValue getTransition];
|
|
1217
1217
|
}
|
|
1218
1218
|
|
|
1219
|
-
- (void)setTextTranslate:(
|
|
1219
|
+
- (void)setTextTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1220
1220
|
{
|
|
1221
|
-
layer.textTranslation = styleValue.
|
|
1221
|
+
layer.textTranslation = styleValue.mlnStyleValue;
|
|
1222
1222
|
}
|
|
1223
1223
|
|
|
1224
|
-
- (void)setTextTranslateTransition:(
|
|
1224
|
+
- (void)setTextTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1225
1225
|
{
|
|
1226
1226
|
layer.textTranslationTransition = [styleValue getTransition];
|
|
1227
1227
|
}
|
|
1228
1228
|
|
|
1229
|
-
- (void)setTextTranslateAnchor:(
|
|
1229
|
+
- (void)setTextTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1230
1230
|
{
|
|
1231
|
-
layer.textTranslationAnchor = styleValue.
|
|
1231
|
+
layer.textTranslationAnchor = styleValue.mlnStyleValue;
|
|
1232
1232
|
}
|
|
1233
1233
|
|
|
1234
1234
|
|
|
1235
1235
|
|
|
1236
|
-
- (void)setCircleSortKey:(
|
|
1236
|
+
- (void)setCircleSortKey:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1237
1237
|
{
|
|
1238
|
-
layer.circleSortKey = styleValue.
|
|
1238
|
+
layer.circleSortKey = styleValue.mlnStyleValue;
|
|
1239
1239
|
}
|
|
1240
1240
|
|
|
1241
|
-
- (void)setCircleStyleLayerVisibility:(
|
|
1241
|
+
- (void)setCircleStyleLayerVisibility:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1242
1242
|
{
|
|
1243
1243
|
layer.visible = [styleValue isVisible];
|
|
1244
1244
|
}
|
|
1245
1245
|
|
|
1246
|
-
- (void)setCircleRadius:(
|
|
1246
|
+
- (void)setCircleRadius:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1247
1247
|
{
|
|
1248
|
-
layer.circleRadius = styleValue.
|
|
1248
|
+
layer.circleRadius = styleValue.mlnStyleValue;
|
|
1249
1249
|
}
|
|
1250
1250
|
|
|
1251
|
-
- (void)setCircleRadiusTransition:(
|
|
1251
|
+
- (void)setCircleRadiusTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1252
1252
|
{
|
|
1253
1253
|
layer.circleRadiusTransition = [styleValue getTransition];
|
|
1254
1254
|
}
|
|
1255
1255
|
|
|
1256
|
-
- (void)setCircleColor:(
|
|
1256
|
+
- (void)setCircleColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1257
1257
|
{
|
|
1258
|
-
layer.circleColor = styleValue.
|
|
1258
|
+
layer.circleColor = styleValue.mlnStyleValue;
|
|
1259
1259
|
}
|
|
1260
1260
|
|
|
1261
|
-
- (void)setCircleColorTransition:(
|
|
1261
|
+
- (void)setCircleColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1262
1262
|
{
|
|
1263
1263
|
layer.circleColorTransition = [styleValue getTransition];
|
|
1264
1264
|
}
|
|
1265
1265
|
|
|
1266
|
-
- (void)setCircleBlur:(
|
|
1266
|
+
- (void)setCircleBlur:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1267
1267
|
{
|
|
1268
|
-
layer.circleBlur = styleValue.
|
|
1268
|
+
layer.circleBlur = styleValue.mlnStyleValue;
|
|
1269
1269
|
}
|
|
1270
1270
|
|
|
1271
|
-
- (void)setCircleBlurTransition:(
|
|
1271
|
+
- (void)setCircleBlurTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1272
1272
|
{
|
|
1273
1273
|
layer.circleBlurTransition = [styleValue getTransition];
|
|
1274
1274
|
}
|
|
1275
1275
|
|
|
1276
|
-
- (void)setCircleOpacity:(
|
|
1276
|
+
- (void)setCircleOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1277
1277
|
{
|
|
1278
|
-
layer.circleOpacity = styleValue.
|
|
1278
|
+
layer.circleOpacity = styleValue.mlnStyleValue;
|
|
1279
1279
|
}
|
|
1280
1280
|
|
|
1281
|
-
- (void)setCircleOpacityTransition:(
|
|
1281
|
+
- (void)setCircleOpacityTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1282
1282
|
{
|
|
1283
1283
|
layer.circleOpacityTransition = [styleValue getTransition];
|
|
1284
1284
|
}
|
|
1285
1285
|
|
|
1286
|
-
- (void)setCircleTranslate:(
|
|
1286
|
+
- (void)setCircleTranslate:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1287
1287
|
{
|
|
1288
|
-
layer.circleTranslation = styleValue.
|
|
1288
|
+
layer.circleTranslation = styleValue.mlnStyleValue;
|
|
1289
1289
|
}
|
|
1290
1290
|
|
|
1291
|
-
- (void)setCircleTranslateTransition:(
|
|
1291
|
+
- (void)setCircleTranslateTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1292
1292
|
{
|
|
1293
1293
|
layer.circleTranslationTransition = [styleValue getTransition];
|
|
1294
1294
|
}
|
|
1295
1295
|
|
|
1296
|
-
- (void)setCircleTranslateAnchor:(
|
|
1296
|
+
- (void)setCircleTranslateAnchor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1297
1297
|
{
|
|
1298
|
-
layer.circleTranslationAnchor = styleValue.
|
|
1298
|
+
layer.circleTranslationAnchor = styleValue.mlnStyleValue;
|
|
1299
1299
|
}
|
|
1300
1300
|
|
|
1301
|
-
- (void)setCirclePitchScale:(
|
|
1301
|
+
- (void)setCirclePitchScale:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1302
1302
|
{
|
|
1303
|
-
layer.circleScaleAlignment = styleValue.
|
|
1303
|
+
layer.circleScaleAlignment = styleValue.mlnStyleValue;
|
|
1304
1304
|
}
|
|
1305
1305
|
|
|
1306
|
-
- (void)setCirclePitchAlignment:(
|
|
1306
|
+
- (void)setCirclePitchAlignment:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1307
1307
|
{
|
|
1308
|
-
layer.circlePitchAlignment = styleValue.
|
|
1308
|
+
layer.circlePitchAlignment = styleValue.mlnStyleValue;
|
|
1309
1309
|
}
|
|
1310
1310
|
|
|
1311
|
-
- (void)setCircleStrokeWidth:(
|
|
1311
|
+
- (void)setCircleStrokeWidth:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1312
1312
|
{
|
|
1313
|
-
layer.circleStrokeWidth = styleValue.
|
|
1313
|
+
layer.circleStrokeWidth = styleValue.mlnStyleValue;
|
|
1314
1314
|
}
|
|
1315
1315
|
|
|
1316
|
-
- (void)setCircleStrokeWidthTransition:(
|
|
1316
|
+
- (void)setCircleStrokeWidthTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1317
1317
|
{
|
|
1318
1318
|
layer.circleStrokeWidthTransition = [styleValue getTransition];
|
|
1319
1319
|
}
|
|
1320
1320
|
|
|
1321
|
-
- (void)setCircleStrokeColor:(
|
|
1321
|
+
- (void)setCircleStrokeColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1322
1322
|
{
|
|
1323
|
-
layer.circleStrokeColor = styleValue.
|
|
1323
|
+
layer.circleStrokeColor = styleValue.mlnStyleValue;
|
|
1324
1324
|
}
|
|
1325
1325
|
|
|
1326
|
-
- (void)setCircleStrokeColorTransition:(
|
|
1326
|
+
- (void)setCircleStrokeColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1327
1327
|
{
|
|
1328
1328
|
layer.circleStrokeColorTransition = [styleValue getTransition];
|
|
1329
1329
|
}
|
|
1330
1330
|
|
|
1331
|
-
- (void)setCircleStrokeOpacity:(
|
|
1331
|
+
- (void)setCircleStrokeOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1332
1332
|
{
|
|
1333
|
-
layer.circleStrokeOpacity = styleValue.
|
|
1333
|
+
layer.circleStrokeOpacity = styleValue.mlnStyleValue;
|
|
1334
1334
|
}
|
|
1335
1335
|
|
|
1336
|
-
- (void)setCircleStrokeOpacityTransition:(
|
|
1336
|
+
- (void)setCircleStrokeOpacityTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1337
1337
|
{
|
|
1338
1338
|
layer.circleStrokeOpacityTransition = [styleValue getTransition];
|
|
1339
1339
|
}
|
|
1340
1340
|
|
|
1341
1341
|
|
|
1342
1342
|
|
|
1343
|
-
- (void)setHeatmapStyleLayerVisibility:(
|
|
1343
|
+
- (void)setHeatmapStyleLayerVisibility:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1344
1344
|
{
|
|
1345
1345
|
layer.visible = [styleValue isVisible];
|
|
1346
1346
|
}
|
|
1347
1347
|
|
|
1348
|
-
- (void)setHeatmapRadius:(
|
|
1348
|
+
- (void)setHeatmapRadius:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1349
1349
|
{
|
|
1350
|
-
layer.heatmapRadius = styleValue.
|
|
1350
|
+
layer.heatmapRadius = styleValue.mlnStyleValue;
|
|
1351
1351
|
}
|
|
1352
1352
|
|
|
1353
|
-
- (void)setHeatmapRadiusTransition:(
|
|
1353
|
+
- (void)setHeatmapRadiusTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1354
1354
|
{
|
|
1355
1355
|
layer.heatmapRadiusTransition = [styleValue getTransition];
|
|
1356
1356
|
}
|
|
1357
1357
|
|
|
1358
|
-
- (void)setHeatmapWeight:(
|
|
1358
|
+
- (void)setHeatmapWeight:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1359
1359
|
{
|
|
1360
|
-
layer.heatmapWeight = styleValue.
|
|
1360
|
+
layer.heatmapWeight = styleValue.mlnStyleValue;
|
|
1361
1361
|
}
|
|
1362
1362
|
|
|
1363
|
-
- (void)setHeatmapIntensity:(
|
|
1363
|
+
- (void)setHeatmapIntensity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1364
1364
|
{
|
|
1365
|
-
layer.heatmapIntensity = styleValue.
|
|
1365
|
+
layer.heatmapIntensity = styleValue.mlnStyleValue;
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
1368
|
-
- (void)setHeatmapIntensityTransition:(
|
|
1368
|
+
- (void)setHeatmapIntensityTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1369
1369
|
{
|
|
1370
1370
|
layer.heatmapIntensityTransition = [styleValue getTransition];
|
|
1371
1371
|
}
|
|
1372
1372
|
|
|
1373
|
-
- (void)setHeatmapColor:(
|
|
1373
|
+
- (void)setHeatmapColor:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1374
1374
|
{
|
|
1375
|
-
layer.heatmapColor = styleValue.
|
|
1375
|
+
layer.heatmapColor = styleValue.mlnStyleValue;
|
|
1376
1376
|
}
|
|
1377
1377
|
|
|
1378
|
-
- (void)setHeatmapOpacity:(
|
|
1378
|
+
- (void)setHeatmapOpacity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1379
1379
|
{
|
|
1380
|
-
layer.heatmapOpacity = styleValue.
|
|
1380
|
+
layer.heatmapOpacity = styleValue.mlnStyleValue;
|
|
1381
1381
|
}
|
|
1382
1382
|
|
|
1383
|
-
- (void)setHeatmapOpacityTransition:(
|
|
1383
|
+
- (void)setHeatmapOpacityTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1384
1384
|
{
|
|
1385
1385
|
layer.heatmapOpacityTransition = [styleValue getTransition];
|
|
1386
1386
|
}
|
|
1387
1387
|
|
|
1388
1388
|
|
|
1389
1389
|
|
|
1390
|
-
- (void)setFillExtrusionStyleLayerVisibility:(
|
|
1390
|
+
- (void)setFillExtrusionStyleLayerVisibility:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1391
1391
|
{
|
|
1392
1392
|
layer.visible = [styleValue isVisible];
|
|
1393
1393
|
}
|
|
1394
1394
|
|
|
1395
|
-
- (void)setFillExtrusionOpacity:(
|
|
1395
|
+
- (void)setFillExtrusionOpacity:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1396
1396
|
{
|
|
1397
|
-
layer.fillExtrusionOpacity = styleValue.
|
|
1397
|
+
layer.fillExtrusionOpacity = styleValue.mlnStyleValue;
|
|
1398
1398
|
}
|
|
1399
1399
|
|
|
1400
|
-
- (void)setFillExtrusionOpacityTransition:(
|
|
1400
|
+
- (void)setFillExtrusionOpacityTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1401
1401
|
{
|
|
1402
1402
|
layer.fillExtrusionOpacityTransition = [styleValue getTransition];
|
|
1403
1403
|
}
|
|
1404
1404
|
|
|
1405
|
-
- (void)setFillExtrusionColor:(
|
|
1405
|
+
- (void)setFillExtrusionColor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1406
1406
|
{
|
|
1407
|
-
layer.fillExtrusionColor = styleValue.
|
|
1407
|
+
layer.fillExtrusionColor = styleValue.mlnStyleValue;
|
|
1408
1408
|
}
|
|
1409
1409
|
|
|
1410
|
-
- (void)setFillExtrusionColorTransition:(
|
|
1410
|
+
- (void)setFillExtrusionColorTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1411
1411
|
{
|
|
1412
1412
|
layer.fillExtrusionColorTransition = [styleValue getTransition];
|
|
1413
1413
|
}
|
|
1414
1414
|
|
|
1415
|
-
- (void)setFillExtrusionTranslate:(
|
|
1415
|
+
- (void)setFillExtrusionTranslate:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1416
1416
|
{
|
|
1417
|
-
layer.fillExtrusionTranslation = styleValue.
|
|
1417
|
+
layer.fillExtrusionTranslation = styleValue.mlnStyleValue;
|
|
1418
1418
|
}
|
|
1419
1419
|
|
|
1420
|
-
- (void)setFillExtrusionTranslateTransition:(
|
|
1420
|
+
- (void)setFillExtrusionTranslateTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1421
1421
|
{
|
|
1422
1422
|
layer.fillExtrusionTranslationTransition = [styleValue getTransition];
|
|
1423
1423
|
}
|
|
1424
1424
|
|
|
1425
|
-
- (void)setFillExtrusionTranslateAnchor:(
|
|
1425
|
+
- (void)setFillExtrusionTranslateAnchor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1426
1426
|
{
|
|
1427
|
-
layer.fillExtrusionTranslationAnchor = styleValue.
|
|
1427
|
+
layer.fillExtrusionTranslationAnchor = styleValue.mlnStyleValue;
|
|
1428
1428
|
}
|
|
1429
1429
|
|
|
1430
|
-
- (void)setFillExtrusionPattern:(
|
|
1430
|
+
- (void)setFillExtrusionPattern:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1431
1431
|
{
|
|
1432
|
-
layer.fillExtrusionPattern = styleValue.
|
|
1432
|
+
layer.fillExtrusionPattern = styleValue.mlnStyleValue;
|
|
1433
1433
|
}
|
|
1434
1434
|
|
|
1435
|
-
- (void)setFillExtrusionPatternTransition:(
|
|
1435
|
+
- (void)setFillExtrusionPatternTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1436
1436
|
{
|
|
1437
1437
|
layer.fillExtrusionPatternTransition = [styleValue getTransition];
|
|
1438
1438
|
}
|
|
1439
1439
|
|
|
1440
|
-
- (void)setFillExtrusionHeight:(
|
|
1440
|
+
- (void)setFillExtrusionHeight:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1441
1441
|
{
|
|
1442
|
-
layer.fillExtrusionHeight = styleValue.
|
|
1442
|
+
layer.fillExtrusionHeight = styleValue.mlnStyleValue;
|
|
1443
1443
|
}
|
|
1444
1444
|
|
|
1445
|
-
- (void)setFillExtrusionHeightTransition:(
|
|
1445
|
+
- (void)setFillExtrusionHeightTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1446
1446
|
{
|
|
1447
1447
|
layer.fillExtrusionHeightTransition = [styleValue getTransition];
|
|
1448
1448
|
}
|
|
1449
1449
|
|
|
1450
|
-
- (void)setFillExtrusionBase:(
|
|
1450
|
+
- (void)setFillExtrusionBase:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1451
1451
|
{
|
|
1452
|
-
layer.fillExtrusionBase = styleValue.
|
|
1452
|
+
layer.fillExtrusionBase = styleValue.mlnStyleValue;
|
|
1453
1453
|
}
|
|
1454
1454
|
|
|
1455
|
-
- (void)setFillExtrusionBaseTransition:(
|
|
1455
|
+
- (void)setFillExtrusionBaseTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1456
1456
|
{
|
|
1457
1457
|
layer.fillExtrusionBaseTransition = [styleValue getTransition];
|
|
1458
1458
|
}
|
|
1459
1459
|
|
|
1460
1460
|
|
|
1461
1461
|
|
|
1462
|
-
- (void)setRasterStyleLayerVisibility:(
|
|
1462
|
+
- (void)setRasterStyleLayerVisibility:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1463
1463
|
{
|
|
1464
1464
|
layer.visible = [styleValue isVisible];
|
|
1465
1465
|
}
|
|
1466
1466
|
|
|
1467
|
-
- (void)setRasterOpacity:(
|
|
1467
|
+
- (void)setRasterOpacity:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1468
1468
|
{
|
|
1469
|
-
layer.rasterOpacity = styleValue.
|
|
1469
|
+
layer.rasterOpacity = styleValue.mlnStyleValue;
|
|
1470
1470
|
}
|
|
1471
1471
|
|
|
1472
|
-
- (void)setRasterOpacityTransition:(
|
|
1472
|
+
- (void)setRasterOpacityTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1473
1473
|
{
|
|
1474
1474
|
layer.rasterOpacityTransition = [styleValue getTransition];
|
|
1475
1475
|
}
|
|
1476
1476
|
|
|
1477
|
-
- (void)setRasterHueRotate:(
|
|
1477
|
+
- (void)setRasterHueRotate:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1478
1478
|
{
|
|
1479
|
-
layer.rasterHueRotation = styleValue.
|
|
1479
|
+
layer.rasterHueRotation = styleValue.mlnStyleValue;
|
|
1480
1480
|
}
|
|
1481
1481
|
|
|
1482
|
-
- (void)setRasterHueRotateTransition:(
|
|
1482
|
+
- (void)setRasterHueRotateTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1483
1483
|
{
|
|
1484
1484
|
layer.rasterHueRotationTransition = [styleValue getTransition];
|
|
1485
1485
|
}
|
|
1486
1486
|
|
|
1487
|
-
- (void)setRasterBrightnessMin:(
|
|
1487
|
+
- (void)setRasterBrightnessMin:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1488
1488
|
{
|
|
1489
|
-
layer.minimumRasterBrightness = styleValue.
|
|
1489
|
+
layer.minimumRasterBrightness = styleValue.mlnStyleValue;
|
|
1490
1490
|
}
|
|
1491
1491
|
|
|
1492
|
-
- (void)setRasterBrightnessMinTransition:(
|
|
1492
|
+
- (void)setRasterBrightnessMinTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1493
1493
|
{
|
|
1494
1494
|
layer.minimumRasterBrightnessTransition = [styleValue getTransition];
|
|
1495
1495
|
}
|
|
1496
1496
|
|
|
1497
|
-
- (void)setRasterBrightnessMax:(
|
|
1497
|
+
- (void)setRasterBrightnessMax:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1498
1498
|
{
|
|
1499
|
-
layer.maximumRasterBrightness = styleValue.
|
|
1499
|
+
layer.maximumRasterBrightness = styleValue.mlnStyleValue;
|
|
1500
1500
|
}
|
|
1501
1501
|
|
|
1502
|
-
- (void)setRasterBrightnessMaxTransition:(
|
|
1502
|
+
- (void)setRasterBrightnessMaxTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1503
1503
|
{
|
|
1504
1504
|
layer.maximumRasterBrightnessTransition = [styleValue getTransition];
|
|
1505
1505
|
}
|
|
1506
1506
|
|
|
1507
|
-
- (void)setRasterSaturation:(
|
|
1507
|
+
- (void)setRasterSaturation:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1508
1508
|
{
|
|
1509
|
-
layer.rasterSaturation = styleValue.
|
|
1509
|
+
layer.rasterSaturation = styleValue.mlnStyleValue;
|
|
1510
1510
|
}
|
|
1511
1511
|
|
|
1512
|
-
- (void)setRasterSaturationTransition:(
|
|
1512
|
+
- (void)setRasterSaturationTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1513
1513
|
{
|
|
1514
1514
|
layer.rasterSaturationTransition = [styleValue getTransition];
|
|
1515
1515
|
}
|
|
1516
1516
|
|
|
1517
|
-
- (void)setRasterContrast:(
|
|
1517
|
+
- (void)setRasterContrast:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1518
1518
|
{
|
|
1519
|
-
layer.rasterContrast = styleValue.
|
|
1519
|
+
layer.rasterContrast = styleValue.mlnStyleValue;
|
|
1520
1520
|
}
|
|
1521
1521
|
|
|
1522
|
-
- (void)setRasterContrastTransition:(
|
|
1522
|
+
- (void)setRasterContrastTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1523
1523
|
{
|
|
1524
1524
|
layer.rasterContrastTransition = [styleValue getTransition];
|
|
1525
1525
|
}
|
|
1526
1526
|
|
|
1527
|
-
- (void)setRasterResampling:(
|
|
1527
|
+
- (void)setRasterResampling:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1528
1528
|
{
|
|
1529
|
-
layer.rasterResamplingMode = styleValue.
|
|
1529
|
+
layer.rasterResamplingMode = styleValue.mlnStyleValue;
|
|
1530
1530
|
}
|
|
1531
1531
|
|
|
1532
|
-
- (void)setRasterFadeDuration:(
|
|
1532
|
+
- (void)setRasterFadeDuration:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1533
1533
|
{
|
|
1534
|
-
layer.rasterFadeDuration = styleValue.
|
|
1534
|
+
layer.rasterFadeDuration = styleValue.mlnStyleValue;
|
|
1535
1535
|
}
|
|
1536
1536
|
|
|
1537
1537
|
|
|
1538
1538
|
|
|
1539
|
-
- (void)setHillshadeStyleLayerVisibility:(
|
|
1539
|
+
- (void)setHillshadeStyleLayerVisibility:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1540
1540
|
{
|
|
1541
1541
|
layer.visible = [styleValue isVisible];
|
|
1542
1542
|
}
|
|
1543
1543
|
|
|
1544
|
-
- (void)setHillshadeIlluminationDirection:(
|
|
1544
|
+
- (void)setHillshadeIlluminationDirection:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1545
1545
|
{
|
|
1546
|
-
layer.hillshadeIlluminationDirection = styleValue.
|
|
1546
|
+
layer.hillshadeIlluminationDirection = styleValue.mlnStyleValue;
|
|
1547
1547
|
}
|
|
1548
1548
|
|
|
1549
|
-
- (void)setHillshadeIlluminationAnchor:(
|
|
1549
|
+
- (void)setHillshadeIlluminationAnchor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1550
1550
|
{
|
|
1551
|
-
layer.hillshadeIlluminationAnchor = styleValue.
|
|
1551
|
+
layer.hillshadeIlluminationAnchor = styleValue.mlnStyleValue;
|
|
1552
1552
|
}
|
|
1553
1553
|
|
|
1554
|
-
- (void)setHillshadeExaggeration:(
|
|
1554
|
+
- (void)setHillshadeExaggeration:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1555
1555
|
{
|
|
1556
|
-
layer.hillshadeExaggeration = styleValue.
|
|
1556
|
+
layer.hillshadeExaggeration = styleValue.mlnStyleValue;
|
|
1557
1557
|
}
|
|
1558
1558
|
|
|
1559
|
-
- (void)setHillshadeExaggerationTransition:(
|
|
1559
|
+
- (void)setHillshadeExaggerationTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1560
1560
|
{
|
|
1561
1561
|
layer.hillshadeExaggerationTransition = [styleValue getTransition];
|
|
1562
1562
|
}
|
|
1563
1563
|
|
|
1564
|
-
- (void)setHillshadeShadowColor:(
|
|
1564
|
+
- (void)setHillshadeShadowColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1565
1565
|
{
|
|
1566
|
-
layer.hillshadeShadowColor = styleValue.
|
|
1566
|
+
layer.hillshadeShadowColor = styleValue.mlnStyleValue;
|
|
1567
1567
|
}
|
|
1568
1568
|
|
|
1569
|
-
- (void)setHillshadeShadowColorTransition:(
|
|
1569
|
+
- (void)setHillshadeShadowColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1570
1570
|
{
|
|
1571
1571
|
layer.hillshadeShadowColorTransition = [styleValue getTransition];
|
|
1572
1572
|
}
|
|
1573
1573
|
|
|
1574
|
-
- (void)setHillshadeHighlightColor:(
|
|
1574
|
+
- (void)setHillshadeHighlightColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1575
1575
|
{
|
|
1576
|
-
layer.hillshadeHighlightColor = styleValue.
|
|
1576
|
+
layer.hillshadeHighlightColor = styleValue.mlnStyleValue;
|
|
1577
1577
|
}
|
|
1578
1578
|
|
|
1579
|
-
- (void)setHillshadeHighlightColorTransition:(
|
|
1579
|
+
- (void)setHillshadeHighlightColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1580
1580
|
{
|
|
1581
1581
|
layer.hillshadeHighlightColorTransition = [styleValue getTransition];
|
|
1582
1582
|
}
|
|
1583
1583
|
|
|
1584
|
-
- (void)setHillshadeAccentColor:(
|
|
1584
|
+
- (void)setHillshadeAccentColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1585
1585
|
{
|
|
1586
|
-
layer.hillshadeAccentColor = styleValue.
|
|
1586
|
+
layer.hillshadeAccentColor = styleValue.mlnStyleValue;
|
|
1587
1587
|
}
|
|
1588
1588
|
|
|
1589
|
-
- (void)setHillshadeAccentColorTransition:(
|
|
1589
|
+
- (void)setHillshadeAccentColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1590
1590
|
{
|
|
1591
1591
|
layer.hillshadeAccentColorTransition = [styleValue getTransition];
|
|
1592
1592
|
}
|
|
1593
1593
|
|
|
1594
1594
|
|
|
1595
1595
|
|
|
1596
|
-
- (void)setBackgroundStyleLayerVisibility:(
|
|
1596
|
+
- (void)setBackgroundStyleLayerVisibility:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1597
1597
|
{
|
|
1598
1598
|
layer.visible = [styleValue isVisible];
|
|
1599
1599
|
}
|
|
1600
1600
|
|
|
1601
|
-
- (void)setBackgroundColor:(
|
|
1601
|
+
- (void)setBackgroundColor:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1602
1602
|
{
|
|
1603
|
-
layer.backgroundColor = styleValue.
|
|
1603
|
+
layer.backgroundColor = styleValue.mlnStyleValue;
|
|
1604
1604
|
}
|
|
1605
1605
|
|
|
1606
|
-
- (void)setBackgroundColorTransition:(
|
|
1606
|
+
- (void)setBackgroundColorTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1607
1607
|
{
|
|
1608
1608
|
layer.backgroundColorTransition = [styleValue getTransition];
|
|
1609
1609
|
}
|
|
1610
1610
|
|
|
1611
|
-
- (void)setBackgroundPattern:(
|
|
1611
|
+
- (void)setBackgroundPattern:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1612
1612
|
{
|
|
1613
|
-
layer.backgroundPattern = styleValue.
|
|
1613
|
+
layer.backgroundPattern = styleValue.mlnStyleValue;
|
|
1614
1614
|
}
|
|
1615
1615
|
|
|
1616
|
-
- (void)setBackgroundPatternTransition:(
|
|
1616
|
+
- (void)setBackgroundPatternTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1617
1617
|
{
|
|
1618
1618
|
layer.backgroundPatternTransition = [styleValue getTransition];
|
|
1619
1619
|
}
|
|
1620
1620
|
|
|
1621
|
-
- (void)setBackgroundOpacity:(
|
|
1621
|
+
- (void)setBackgroundOpacity:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1622
1622
|
{
|
|
1623
|
-
layer.backgroundOpacity = styleValue.
|
|
1623
|
+
layer.backgroundOpacity = styleValue.mlnStyleValue;
|
|
1624
1624
|
}
|
|
1625
1625
|
|
|
1626
|
-
- (void)setBackgroundOpacityTransition:(
|
|
1626
|
+
- (void)setBackgroundOpacityTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1627
1627
|
{
|
|
1628
1628
|
layer.backgroundOpacityTransition = [styleValue getTransition];
|
|
1629
1629
|
}
|
|
1630
1630
|
|
|
1631
1631
|
|
|
1632
1632
|
|
|
1633
|
-
- (void)setAnchor:(
|
|
1633
|
+
- (void)setAnchor:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1634
1634
|
{
|
|
1635
|
-
layer.anchor = styleValue.
|
|
1635
|
+
layer.anchor = styleValue.mlnStyleValue;
|
|
1636
1636
|
}
|
|
1637
1637
|
|
|
1638
|
-
- (void)setPosition:(
|
|
1638
|
+
- (void)setPosition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1639
1639
|
{
|
|
1640
1640
|
layer.position = [styleValue getSphericalPosition];
|
|
1641
1641
|
}
|
|
1642
1642
|
|
|
1643
|
-
- (void)setPositionTransition:(
|
|
1643
|
+
- (void)setPositionTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1644
1644
|
{
|
|
1645
1645
|
layer.positionTransition = [styleValue getTransition];
|
|
1646
1646
|
}
|
|
1647
1647
|
|
|
1648
|
-
- (void)setColor:(
|
|
1648
|
+
- (void)setColor:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1649
1649
|
{
|
|
1650
|
-
layer.color = styleValue.
|
|
1650
|
+
layer.color = styleValue.mlnStyleValue;
|
|
1651
1651
|
}
|
|
1652
1652
|
|
|
1653
|
-
- (void)setColorTransition:(
|
|
1653
|
+
- (void)setColorTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1654
1654
|
{
|
|
1655
1655
|
layer.colorTransition = [styleValue getTransition];
|
|
1656
1656
|
}
|
|
1657
1657
|
|
|
1658
|
-
- (void)setIntensity:(
|
|
1658
|
+
- (void)setIntensity:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1659
1659
|
{
|
|
1660
|
-
layer.intensity = styleValue.
|
|
1660
|
+
layer.intensity = styleValue.mlnStyleValue;
|
|
1661
1661
|
}
|
|
1662
1662
|
|
|
1663
|
-
- (void)setIntensityTransition:(
|
|
1663
|
+
- (void)setIntensityTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
|
|
1664
1664
|
{
|
|
1665
1665
|
layer.intensityTransition = [styleValue getTransition];
|
|
1666
1666
|
}
|