@maplibre/maplibre-react-native 10.0.0-alpha.3 → 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.
Files changed (332) hide show
  1. package/.sonarcloud.properties +1 -1
  2. package/CHANGELOG.md +3 -0
  3. package/android/{rctmgl → rctmln}/src/main/AndroidManifest.xml +1 -1
  4. package/android/rctmln/src/main/java/com/maplibre/rctmln/RCTMLNPackage.java +99 -0
  5. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/AbstractEvent.java +1 -1
  6. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/AbstractEventEmitter.java +2 -2
  7. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/AbstractMapFeature.java +4 -4
  8. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/annotation/MarkerView.java +1 -1
  9. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/annotation/MarkerViewManager.java +1 -1
  10. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLCallout.java → rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCallout.java} +3 -3
  11. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCalloutManager.java +22 -0
  12. 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
  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
  14. 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
  15. 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
  16. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraStop.java +6 -6
  17. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraUpdateItem.java +2 -2
  18. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/CameraUpdateQueue.java +3 -3
  19. 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
  20. 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
  21. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/camera/constants/CameraMode.java +1 -1
  22. 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
  23. 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
  24. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/location/LocationComponentManager.java +7 -7
  25. 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
  26. 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
  27. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/mapview/LayerSourceInfo.java +1 -1
  28. 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
  29. 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
  30. 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
  31. 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
  32. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/mapview/helpers/CameraChangeTracker.java +1 -1
  33. 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
  34. 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
  35. 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 -6
  36. 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
  37. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/styles/layers/RCTLayer.java +9 -9
  38. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayer.java +27 -0
  39. 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
  40. 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
  41. 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
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. 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
  49. 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
  50. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayer.java +27 -0
  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. 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
  58. 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
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/components/styles/sources/RCTSource.java +7 -7
  67. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/AbstractEvent.java +1 -1
  68. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/AndroidCallbackEvent.java +2 -2
  69. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/EventEmitter.java +1 -1
  70. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/FeatureClickEvent.java +6 -6
  71. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/IEvent.java +1 -1
  72. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/ImageMissingEvent.java +3 -3
  73. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/LocationEvent.java +6 -6
  74. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/MapChangeEvent.java +3 -3
  75. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/MapClickEvent.java +4 -4
  76. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/MapUserTrackingModeEvent.java +4 -4
  77. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/OfflineEvent.java +1 -1
  78. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/PointAnnotationClickEvent.java +8 -8
  79. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/PointAnnotationDragEvent.java +8 -8
  80. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/constants/EventKeys.java +1 -1
  81. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/events/constants/EventTypes.java +1 -1
  82. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/http/CustomHeadersInterceptor.java +1 -1
  83. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/LocationManager.java +1 -1
  84. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserLocation.java +1 -1
  85. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserLocationVerticalAlignment.java +1 -1
  86. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserTrackingMode.java +1 -1
  87. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/location/UserTrackingState.java +1 -1
  88. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLLocationModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLocationModule.java} +8 -8
  89. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLLogging.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLogging.java} +5 -5
  90. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNModule.java} +22 -22
  91. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNOfflineModule.java} +10 -10
  92. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java → rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNSnapshotModule.java} +7 -7
  93. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/BitmapUtils.java +1 -1
  94. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ClusterPropertyEntry.java +1 -1
  95. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ConvertUtils.java +1 -1
  96. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/DownloadMapImageTask.java +1 -1
  97. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ExpressionParser.java +1 -1
  98. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/GeoJSONUtils.java +1 -1
  99. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/GeoViewport.java +1 -1
  100. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ImageEntry.java +1 -1
  101. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/ResourceUtils.java +1 -1
  102. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/SimpleEventCallback.java +3 -3
  103. package/android/{rctmgl/src/main/java/com/mapbox/rctmgl → rctmln/src/main/java/com/maplibre/rctmln}/utils/SphericalMercator.java +1 -1
  104. package/android/rctmln/src/main/res/values/strings.xml +3 -0
  105. package/android/settings.gradle +1 -1
  106. package/docs/Annotations.md +1 -1
  107. package/docs/Callout.md +1 -1
  108. package/docs/CustomHttpHeaders.md +4 -4
  109. package/docs/MapView.md +1 -1
  110. package/docs/docs.json +2 -2
  111. package/ios/{RCTMGL → RCTMLN}/CameraMode.h +1 -1
  112. package/ios/{RCTMGL → RCTMLN}/CameraMode.m +1 -1
  113. package/ios/{RCTMGL → RCTMLN}/CameraStop.h +4 -4
  114. package/ios/{RCTMGL → RCTMLN}/CameraStop.m +7 -7
  115. package/ios/{RCTMGL → RCTMLN}/CameraUpdateItem.h +3 -3
  116. package/ios/{RCTMGL → RCTMLN}/CameraUpdateItem.m +19 -19
  117. package/ios/{RCTMGL → RCTMLN}/CameraUpdateQueue.h +3 -3
  118. package/ios/{RCTMGL → RCTMLN}/CameraUpdateQueue.m +3 -3
  119. package/ios/{RCTMGL → RCTMLN}/FilterParser.h +1 -1
  120. package/ios/{RCTMGL → RCTMLN}/FilterParser.m +3 -3
  121. package/ios/{RCTMGL/MGLCustomHeaders.h → RCTMLN/MLNCustomHeaders.h} +3 -3
  122. package/ios/{RCTMGL/MGLCustomHeaders.m → RCTMLN/MLNCustomHeaders.m} +10 -10
  123. package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.h +23 -0
  124. package/ios/{RCTMGL/MGLFaux3DUserLocationAnnotationView.m → RCTMLN/MLNFaux3DUserLocationAnnotationView.m} +38 -38
  125. package/ios/{RCTMGL/MGLModule.h → RCTMLN/MLNModule.h} +3 -3
  126. package/ios/{RCTMGL/MGLModule.m → RCTMLN/MLNModule.m} +91 -91
  127. package/ios/{RCTMGL/MGLOfflineModule.h → RCTMLN/MLNOfflineModule.h} +4 -4
  128. package/ios/{RCTMGL/MGLOfflineModule.m → RCTMLN/MLNOfflineModule.m} +59 -59
  129. package/ios/{RCTMGL/MGLSnapshotModule.h → RCTMLN/MLNSnapshotModule.h} +3 -3
  130. package/ios/{RCTMGL/MGLSnapshotModule.m → RCTMLN/MLNSnapshotModule.m} +14 -14
  131. package/ios/{RCTMGL/MGLUserLocationHeadingArrowLayer.h → RCTMLN/MLNUserLocationHeadingArrowLayer.h} +4 -4
  132. package/ios/{RCTMGL/MGLUserLocationHeadingArrowLayer.m → RCTMLN/MLNUserLocationHeadingArrowLayer.m} +7 -7
  133. package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.h +11 -0
  134. package/ios/{RCTMGL/MGLUserLocationHeadingBeamLayer.m → RCTMLN/MLNUserLocationHeadingBeamLayer.m} +10 -10
  135. package/ios/{RCTMGL/MGLUserLocationHeadingIndicator.h → RCTMLN/MLNUserLocationHeadingIndicator.h} +3 -3
  136. package/ios/{RCTMGL → RCTMLN}/RCTConvert+Mapbox.h +1 -1
  137. package/ios/{RCTMGL → RCTMLN}/RCTConvert+Mapbox.m +1 -1
  138. package/ios/{RCTMGL/RCTMGL.h → RCTMLN/RCTMLN.h} +3 -3
  139. package/ios/{RCTMGL/RCTMGL.m → RCTMLN/RCTMLN.m} +4 -4
  140. package/ios/RCTMLN/RCTMLNBackgroundLayer.h +14 -0
  141. package/ios/RCTMLN/RCTMLNBackgroundLayer.m +27 -0
  142. package/ios/{RCTMGL/RCTMGLBackgroundLayerManager.h → RCTMLN/RCTMLNBackgroundLayerManager.h} +3 -3
  143. package/ios/{RCTMGL/RCTMGLBackgroundLayerManager.m → RCTMLN/RCTMLNBackgroundLayerManager.m} +6 -6
  144. package/ios/{RCTMGL/RCTMGLCallout.h → RCTMLN/RCTMLNCallout.h} +4 -4
  145. package/ios/{RCTMGL/RCTMGLCallout.m → RCTMLN/RCTMLNCallout.m} +6 -6
  146. package/ios/{RCTMGL/RCTMGLCalloutManager.h → RCTMLN/RCTMLNCalloutManager.h} +3 -3
  147. package/ios/RCTMLN/RCTMLNCalloutManager.m +21 -0
  148. package/ios/{RCTMGL/RCTMGLCamera.h → RCTMLN/RCTMLNCamera.h} +6 -6
  149. package/ios/{RCTMGL/RCTMGLCamera.m → RCTMLN/RCTMLNCamera.m} +30 -30
  150. package/ios/{RCTMGL/RCTMGLCameraManager.h → RCTMLN/RCTMLNCameraManager.h} +3 -3
  151. package/ios/{RCTMGL/RCTMGLCameraManager.m → RCTMLN/RCTMLNCameraManager.m} +7 -7
  152. package/ios/RCTMLN/RCTMLNCircleLayer.h +13 -0
  153. package/ios/{RCTMGL/RCTMGLCircleLayer.m → RCTMLN/RCTMLNCircleLayer.m} +10 -10
  154. package/ios/{RCTMGL/RCTMGLCircleLayerManager.h → RCTMLN/RCTMLNCircleLayerManager.h} +3 -3
  155. package/ios/{RCTMGL/RCTMGLCircleLayerManager.m → RCTMLN/RCTMLNCircleLayerManager.m} +6 -6
  156. package/ios/{RCTMGL/RCTMGLEvent.h → RCTMLN/RCTMLNEvent.h} +6 -6
  157. package/ios/{RCTMGL/RCTMGLEvent.m → RCTMLN/RCTMLNEvent.m} +8 -8
  158. package/ios/{RCTMGL/RCTMGLEventProtocol.h → RCTMLN/RCTMLNEventProtocol.h} +3 -3
  159. package/ios/{RCTMGL/RCTMGLEventTypes.h → RCTMLN/RCTMLNEventTypes.h} +3 -3
  160. package/ios/{RCTMGL/RCTMGLEventTypes.m → RCTMLN/RCTMLNEventTypes.m} +4 -4
  161. package/ios/RCTMLN/RCTMLNFillExtrusionLayer.h +14 -0
  162. package/ios/{RCTMGL/RCTMGLFillExtrusionLayer.m → RCTMLN/RCTMLNFillExtrusionLayer.m} +10 -10
  163. package/ios/{RCTMGL/RCTMGLFillExtrusionLayerManager.h → RCTMLN/RCTMLNFillExtrusionLayerManager.h} +3 -3
  164. package/ios/{RCTMGL/RCTMGLFillExtrusionLayerManager.m → RCTMLN/RCTMLNFillExtrusionLayerManager.m} +6 -6
  165. package/ios/RCTMLN/RCTMLNFillLayer.h +14 -0
  166. package/ios/{RCTMGL/RCTMGLFillLayer.m → RCTMLN/RCTMLNFillLayer.m} +10 -10
  167. package/ios/{RCTMGL/RCTMGLFillLayerManager.h → RCTMLN/RCTMLNFillLayerManager.h} +3 -3
  168. package/ios/{RCTMGL/RCTMGLFillLayerManager.m → RCTMLN/RCTMLNFillLayerManager.m} +6 -6
  169. package/ios/RCTMLN/RCTMLNHeatmapLayer.h +12 -0
  170. package/ios/RCTMLN/RCTMLNHeatmapLayer.m +30 -0
  171. package/ios/RCTMLN/RCTMLNHeatmapLayerManager.h +12 -0
  172. package/ios/{RCTMGL/RCTMGLHeatmapLayerManager.m → RCTMLN/RCTMLNHeatmapLayerManager.m} +6 -6
  173. package/ios/{RCTMGL/RCTMGLImageQueue.h → RCTMLN/RCTMLNImageQueue.h} +3 -3
  174. package/ios/{RCTMGL/RCTMGLImageQueue.m → RCTMLN/RCTMLNImageQueue.m} +10 -10
  175. package/ios/{RCTMGL/RCTMGLImageQueueOperation.h → RCTMLN/RCTMLNImageQueueOperation.h} +3 -3
  176. package/ios/{RCTMGL/RCTMGLImageQueueOperation.m → RCTMLN/RCTMLNImageQueueOperation.m} +12 -12
  177. package/ios/{RCTMGL/RCTMGLImageSource.h → RCTMLN/RCTMLNImageSource.h} +4 -4
  178. package/ios/{RCTMGL/RCTMGLImageSource.m → RCTMLN/RCTMLNImageSource.m} +11 -11
  179. package/ios/{RCTMGL/RCTMGLImageSourceManager.h → RCTMLN/RCTMLNImageSourceManager.h} +3 -3
  180. package/ios/{RCTMGL/RCTMGLImageSourceManager.m → RCTMLN/RCTMLNImageSourceManager.m} +6 -6
  181. package/ios/{RCTMGL/RCTMGLImages.h → RCTMLN/RCTMLNImages.h} +4 -4
  182. package/ios/{RCTMGL/RCTMGLImages.m → RCTMLN/RCTMLNImages.m} +10 -10
  183. package/ios/RCTMLN/RCTMLNImagesManager.h +5 -0
  184. package/ios/{RCTMGL/RCTMGLImagesManager.m → RCTMLN/RCTMLNImagesManager.m} +4 -4
  185. package/ios/{RCTMGL/RCTMGLLayer.h → RCTMLN/RCTMLNLayer.h} +11 -11
  186. package/ios/{RCTMGL/RCTMGLLayer.m → RCTMLN/RCTMLNLayer.m} +17 -17
  187. package/ios/{RCTMGL/RCTMGLLight.h → RCTMLN/RCTMLNLight.h} +5 -5
  188. package/ios/{RCTMGL/RCTMGLLight.m → RCTMLN/RCTMLNLight.m} +9 -9
  189. package/ios/{RCTMGL/RCTMGLLightManager.h → RCTMLN/RCTMLNLightManager.h} +3 -3
  190. package/ios/{RCTMGL/RCTMGLLightManager.m → RCTMLN/RCTMLNLightManager.m} +6 -6
  191. package/ios/RCTMLN/RCTMLNLineLayer.h +14 -0
  192. package/ios/{RCTMGL/RCTMGLLineLayer.m → RCTMLN/RCTMLNLineLayer.m} +10 -10
  193. package/ios/{RCTMGL/RCTMGLLineLayerManager.h → RCTMLN/RCTMLNLineLayerManager.h} +3 -3
  194. package/ios/{RCTMGL/RCTMGLLineLayerManager.m → RCTMLN/RCTMLNLineLayerManager.m} +6 -6
  195. package/ios/{RCTMGL/RCTMGLLocation.h → RCTMLN/RCTMLNLocation.h} +3 -3
  196. package/ios/{RCTMGL/RCTMGLLocation.m → RCTMLN/RCTMLNLocation.m} +4 -4
  197. package/ios/RCTMLN/RCTMLNLocationManager.h +30 -0
  198. package/ios/{RCTMGL/RCTMGLLocationManager.m → RCTMLN/RCTMLNLocationManager.m} +16 -16
  199. package/ios/RCTMLN/RCTMLNLocationManagerDelegate.h +20 -0
  200. package/ios/{RCTMGL/RCTMGLLocationModule.h → RCTMLN/RCTMLNLocationModule.h} +3 -3
  201. package/ios/{RCTMGL/RCTMGLLocationModule.m → RCTMLN/RCTMLNLocationModule.m} +13 -13
  202. package/ios/RCTMLN/RCTMLNLogging.h +18 -0
  203. package/ios/{RCTMGL/RCTMGLLogging.m → RCTMLN/RCTMLNLogging.m} +29 -29
  204. package/ios/{RCTMGL/RCTMGLMapTouchEvent.h → RCTMLN/RCTMLNMapTouchEvent.h} +10 -10
  205. package/ios/{RCTMGL/RCTMGLMapTouchEvent.m → RCTMLN/RCTMLNMapTouchEvent.m} +18 -18
  206. package/ios/{RCTMGL/RCTMGLMapView.h → RCTMLN/RCTMLNMapView.h} +30 -30
  207. package/ios/{RCTMGL/RCTMGLMapView.m → RCTMLN/RCTMLNMapView.m} +82 -82
  208. package/ios/{RCTMGL/RCTMGLMapViewManager.h → RCTMLN/RCTMLNMapViewManager.h} +4 -4
  209. package/ios/{RCTMGL/RCTMGLMapViewManager.m → RCTMLN/RCTMLNMapViewManager.m} +117 -117
  210. package/ios/{RCTMGL/RCTMGLNativeUserLocation.h → RCTMLN/RCTMLNNativeUserLocation.h} +5 -5
  211. package/ios/{RCTMGL/RCTMGLNativeUserLocation.m → RCTMLN/RCTMLNNativeUserLocation.m} +10 -10
  212. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.h +5 -0
  213. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.m +25 -0
  214. package/ios/{RCTMGL/RCTMGLPointAnnotation.h → RCTMLN/RCTMLNPointAnnotation.h} +8 -8
  215. package/ios/{RCTMGL/RCTMGLPointAnnotation.m → RCTMLN/RCTMLNPointAnnotation.m} +21 -21
  216. package/ios/{RCTMGL/RCTMGLPointAnnotationManager.h → RCTMLN/RCTMLNPointAnnotationManager.h} +3 -3
  217. package/ios/{RCTMGL/RCTMGLPointAnnotationManager.m → RCTMLN/RCTMLNPointAnnotationManager.m} +6 -6
  218. package/ios/RCTMLN/RCTMLNRasterLayer.h +14 -0
  219. package/ios/RCTMLN/RCTMLNRasterLayer.m +30 -0
  220. package/ios/{RCTMGL/RCTMGLRasterLayerManager.h → RCTMLN/RCTMLNRasterLayerManager.h} +3 -3
  221. package/ios/{RCTMGL/RCTMGLRasterLayerManager.m → RCTMLN/RCTMLNRasterLayerManager.m} +6 -6
  222. package/ios/{RCTMGL/RCTMGLRasterSource.h → RCTMLN/RCTMLNRasterSource.h} +5 -5
  223. package/ios/{RCTMGL/RCTMGLRasterSource.m → RCTMLN/RCTMLNRasterSource.m} +11 -11
  224. package/ios/{RCTMGL/RCTMGLRasterSourceManager.h → RCTMLN/RCTMLNRasterSourceManager.h} +3 -3
  225. package/ios/{RCTMGL/RCTMGLRasterSourceManager.m → RCTMLN/RCTMLNRasterSourceManager.m} +6 -6
  226. package/ios/{RCTMGL/RCTMGLShapeSource.h → RCTMLN/RCTMLNShapeSource.h} +10 -10
  227. package/ios/{RCTMGL/RCTMGLShapeSource.m → RCTMLN/RCTMLNShapeSource.m} +50 -50
  228. package/ios/{RCTMGL/RCTMGLShapeSourceManager.h → RCTMLN/RCTMLNShapeSourceManager.h} +3 -3
  229. package/ios/{RCTMGL/RCTMGLShapeSourceManager.m → RCTMLN/RCTMLNShapeSourceManager.m} +25 -25
  230. package/ios/{RCTMGL/RCTMGLSource.h → RCTMLN/RCTMLNSource.h} +8 -8
  231. package/ios/{RCTMGL/RCTMGLSource.m → RCTMLN/RCTMLNSource.m} +15 -15
  232. package/ios/RCTMLN/RCTMLNStyle.h +222 -0
  233. package/ios/{RCTMGL/RCTMGLStyle.m → RCTMLN/RCTMLNStyle.m} +345 -345
  234. package/ios/{RCTMGL/RCTMGLStyleValue.h → RCTMLN/RCTMLNStyleValue.h} +7 -7
  235. package/ios/{RCTMGL/RCTMGLStyleValue.m → RCTMLN/RCTMLNStyleValue.m} +24 -24
  236. package/ios/{RCTMGL/RCTMGLSymbolLayer.h → RCTMLN/RCTMLNSymbolLayer.h} +4 -4
  237. package/ios/{RCTMGL/RCTMGLSymbolLayer.m → RCTMLN/RCTMLNSymbolLayer.m} +12 -12
  238. package/ios/{RCTMGL/RCTMGLSymbolLayerManager.h → RCTMLN/RCTMLNSymbolLayerManager.h} +3 -3
  239. package/ios/{RCTMGL/RCTMGLSymbolLayerManager.m → RCTMLN/RCTMLNSymbolLayerManager.m} +6 -6
  240. package/ios/{RCTMGL/RCTMGLTileSource.h → RCTMLN/RCTMLNTileSource.h} +6 -6
  241. package/ios/RCTMLN/RCTMLNTileSource.m +31 -0
  242. package/ios/RCTMLN/RCTMLNUserLocation.h +15 -0
  243. package/ios/{RCTMGL/RCTMGLUserLocation.m → RCTMLN/RCTMLNUserLocation.m} +8 -8
  244. package/ios/{RCTMGL/RCTMGLUtils.h → RCTMLN/RCTMLNUtils.h} +7 -7
  245. package/ios/{RCTMGL/RCTMGLUtils.m → RCTMLN/RCTMLNUtils.m} +20 -20
  246. package/ios/{RCTMGL/RCTMGLVectorLayer.h → RCTMLN/RCTMLNVectorLayer.h} +4 -4
  247. package/ios/{RCTMGL/RCTMGLVectorLayer.m → RCTMLN/RCTMLNVectorLayer.m} +7 -7
  248. package/ios/{RCTMGL/RCTMGLVectorSource.h → RCTMLN/RCTMLNVectorSource.h} +6 -6
  249. package/ios/{RCTMGL/RCTMGLVectorSource.m → RCTMLN/RCTMLNVectorSource.m} +9 -9
  250. package/ios/{RCTMGL/RCTMGLVectorSourceManager.h → RCTMLN/RCTMLNVectorSourceManager.h} +3 -3
  251. package/ios/{RCTMGL/RCTMGLVectorSourceManager.m → RCTMLN/RCTMLNVectorSourceManager.m} +11 -11
  252. package/ios/{RCTMGL → RCTMLN}/RNMBImageUtils.h +1 -1
  253. package/ios/{RCTMGL → RCTMLN}/RNMBImageUtils.m +2 -2
  254. package/ios/{RCTMGL → RCTMLN}/ViewManager.h +3 -3
  255. package/ios/{RCTMGL → RCTMLN}/ViewManager.m +4 -4
  256. package/ios/RCTMLN.xcodeproj/project.pbxproj +775 -0
  257. package/ios/install.md +4 -4
  258. package/javascript/{MGLModule.ts → MLNModule.ts} +3 -3
  259. package/javascript/Maplibre.ts +1 -1
  260. package/javascript/components/BackgroundLayer.tsx +5 -5
  261. package/javascript/components/Callout.tsx +5 -5
  262. package/javascript/components/Camera.tsx +4 -4
  263. package/javascript/components/CircleLayer.tsx +5 -5
  264. package/javascript/components/FillExtrusionLayer.tsx +4 -4
  265. package/javascript/components/FillLayer.tsx +4 -4
  266. package/javascript/components/HeatmapLayer.tsx +4 -4
  267. package/javascript/components/ImageSource.tsx +4 -4
  268. package/javascript/components/Images.tsx +3 -3
  269. package/javascript/components/Light.tsx +4 -4
  270. package/javascript/components/LineLayer.tsx +4 -4
  271. package/javascript/components/MapView.tsx +15 -15
  272. package/javascript/components/MarkerView.tsx +3 -3
  273. package/javascript/components/NativeUserLocation.tsx +3 -3
  274. package/javascript/components/PointAnnotation.tsx +4 -4
  275. package/javascript/components/RasterLayer.tsx +4 -4
  276. package/javascript/components/RasterSource.tsx +5 -5
  277. package/javascript/components/ShapeSource.tsx +5 -5
  278. package/javascript/components/SymbolLayer.tsx +5 -5
  279. package/javascript/components/VectorSource.tsx +5 -5
  280. package/javascript/modules/location/locationManager.ts +2 -2
  281. package/javascript/modules/offline/OfflinePack.ts +1 -1
  282. package/javascript/modules/offline/offlineManager.ts +2 -2
  283. package/javascript/modules/snapshot/SnapshotOptions.ts +1 -1
  284. package/javascript/modules/snapshot/snapshotManager.ts +1 -1
  285. package/javascript/utils/Logger.ts +3 -3
  286. package/javascript/utils/animated/AnimatedShape.ts +1 -1
  287. package/maplibre-react-native.podspec +3 -3
  288. package/package.json +1 -2
  289. package/react-native.config.js +1 -1
  290. package/scripts/autogenHelpers/globals.js +10 -10
  291. package/scripts/autogenerate.js +11 -11
  292. package/scripts/templates/{RCTMGLStyle.h.ejs → RCTMLNStyle.h.ejs} +8 -8
  293. package/scripts/templates/{RCTMGLStyle.m.ejs → RCTMLNStyle.m.ejs} +10 -10
  294. package/scripts/templates/{RCTMGLStyleFactory.java.ejs → RCTMLNStyleFactory.java.ejs} +10 -10
  295. package/setup-jest.js +4 -4
  296. package/android/rctmgl/src/main/java/com/mapbox/rctmgl/RCTMGLPackage.java +0 -99
  297. package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/annotation/RCTMGLCalloutManager.java +0 -22
  298. package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.java +0 -27
  299. package/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.java +0 -27
  300. package/android/rctmgl/src/main/res/values/strings.xml +0 -3
  301. package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.h +0 -23
  302. package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.h +0 -11
  303. package/ios/RCTMGL/RCTMGLBackgroundLayer.h +0 -14
  304. package/ios/RCTMGL/RCTMGLBackgroundLayer.m +0 -27
  305. package/ios/RCTMGL/RCTMGLCalloutManager.m +0 -21
  306. package/ios/RCTMGL/RCTMGLCircleLayer.h +0 -13
  307. package/ios/RCTMGL/RCTMGLFillExtrusionLayer.h +0 -14
  308. package/ios/RCTMGL/RCTMGLFillLayer.h +0 -14
  309. package/ios/RCTMGL/RCTMGLHeatmapLayer.h +0 -12
  310. package/ios/RCTMGL/RCTMGLHeatmapLayer.m +0 -30
  311. package/ios/RCTMGL/RCTMGLHeatmapLayerManager.h +0 -12
  312. package/ios/RCTMGL/RCTMGLImagesManager.h +0 -5
  313. package/ios/RCTMGL/RCTMGLLineLayer.h +0 -14
  314. package/ios/RCTMGL/RCTMGLLocationManager.h +0 -30
  315. package/ios/RCTMGL/RCTMGLLocationManagerDelegate.h +0 -20
  316. package/ios/RCTMGL/RCTMGLLogging.h +0 -18
  317. package/ios/RCTMGL/RCTMGLNativeUserLocationManager.h +0 -5
  318. package/ios/RCTMGL/RCTMGLNativeUserLocationManager.m +0 -25
  319. package/ios/RCTMGL/RCTMGLRasterLayer.h +0 -14
  320. package/ios/RCTMGL/RCTMGLRasterLayer.m +0 -30
  321. package/ios/RCTMGL/RCTMGLStyle.h +0 -222
  322. package/ios/RCTMGL/RCTMGLTileSource.m +0 -31
  323. package/ios/RCTMGL/RCTMGLUserLocation.h +0 -15
  324. package/ios/RCTMGL.xcodeproj/project.pbxproj +0 -775
  325. /package/android/{rctmgl → rctmln}/.settings/org.eclipse.buildship.core.prefs +0 -0
  326. /package/android/{rctmgl → rctmln}/build.gradle +0 -0
  327. /package/android/{rctmgl → rctmln}/proguard-rules.pro +0 -0
  328. /package/android/{rctmgl → rctmln}/src/main/res/drawable/empty.xml +0 -0
  329. /package/android/{rctmgl → rctmln}/src/main/res/drawable/empty_drawable.png +0 -0
  330. /package/android/{rctmgl → rctmln}/src/main/res/drawable-xxhdpi/red_marker.png +0 -0
  331. /package/android/{rctmgl → rctmln}/src/main/res/layout/annotation.xml +0 -0
  332. /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 "RCTMGLStyle.h"
5
- #import "RCTMGLUtils.h"
4
+ #import "RCTMLNStyle.h"
5
+ #import "RCTMLNUtils.h"
6
6
 
7
- @implementation RCTMGLStyle
7
+ @implementation RCTMLNStyle
8
8
 
9
- - (id)initWithMGLStyle:(MGLStyle*)mglStyle
9
+ - (id)initWithMLNStyle:(MLNStyle*)mlnStyle
10
10
  {
11
11
  if (self = [super init]) {
12
- _style = mglStyle;
12
+ _style = mlnStyle;
13
13
  }
14
14
  return self;
15
15
  }
16
16
 
17
17
 
18
- - (void)fillLayer:(MGLFillStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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
- [RCTMGLUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
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:(MGLLineStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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
- [RCTMGLUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
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:(MGLSymbolStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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
- [RCTMGLUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
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:(MGLCircleStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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:(MGLHeatmapStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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:(MGLFillExtrusionStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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
- [RCTMGLUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
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:(MGLRasterStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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:(MGLHillshadeStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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:(MGLBackgroundStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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
- [RCTMGLUtils fetchImage:_bridge url:imageURI scale:[styleValue getImageScale] callback:^(NSError *error, UIImage *image) {
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:(MGLLight *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid
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
- RCTMGLStyleValue *styleValue = [RCTMGLStyleValue make:reactStyle[prop]];
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:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
690
+ - (void)setFillSortKey:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
691
691
  {
692
- layer.fillSortKey = styleValue.mglStyleValue;
692
+ layer.fillSortKey = styleValue.mlnStyleValue;
693
693
  }
694
694
 
695
- - (void)setFillStyleLayerVisibility:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
695
+ - (void)setFillStyleLayerVisibility:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
696
696
  {
697
697
  layer.visible = [styleValue isVisible];
698
698
  }
699
699
 
700
- - (void)setFillAntialias:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
700
+ - (void)setFillAntialias:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
701
701
  {
702
- layer.fillAntialiased = styleValue.mglStyleValue;
702
+ layer.fillAntialiased = styleValue.mlnStyleValue;
703
703
  }
704
704
 
705
- - (void)setFillOpacity:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
705
+ - (void)setFillOpacity:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
706
706
  {
707
- layer.fillOpacity = styleValue.mglStyleValue;
707
+ layer.fillOpacity = styleValue.mlnStyleValue;
708
708
  }
709
709
 
710
- - (void)setFillOpacityTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
710
+ - (void)setFillOpacityTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
711
711
  {
712
712
  layer.fillOpacityTransition = [styleValue getTransition];
713
713
  }
714
714
 
715
- - (void)setFillColor:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
715
+ - (void)setFillColor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
716
716
  {
717
- layer.fillColor = styleValue.mglStyleValue;
717
+ layer.fillColor = styleValue.mlnStyleValue;
718
718
  }
719
719
 
720
- - (void)setFillColorTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
720
+ - (void)setFillColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
721
721
  {
722
722
  layer.fillColorTransition = [styleValue getTransition];
723
723
  }
724
724
 
725
- - (void)setFillOutlineColor:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
725
+ - (void)setFillOutlineColor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
726
726
  {
727
- layer.fillOutlineColor = styleValue.mglStyleValue;
727
+ layer.fillOutlineColor = styleValue.mlnStyleValue;
728
728
  }
729
729
 
730
- - (void)setFillOutlineColorTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
730
+ - (void)setFillOutlineColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
731
731
  {
732
732
  layer.fillOutlineColorTransition = [styleValue getTransition];
733
733
  }
734
734
 
735
- - (void)setFillTranslate:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
735
+ - (void)setFillTranslate:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
736
736
  {
737
- layer.fillTranslation = styleValue.mglStyleValue;
737
+ layer.fillTranslation = styleValue.mlnStyleValue;
738
738
  }
739
739
 
740
- - (void)setFillTranslateTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
740
+ - (void)setFillTranslateTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
741
741
  {
742
742
  layer.fillTranslationTransition = [styleValue getTransition];
743
743
  }
744
744
 
745
- - (void)setFillTranslateAnchor:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
745
+ - (void)setFillTranslateAnchor:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
746
746
  {
747
- layer.fillTranslationAnchor = styleValue.mglStyleValue;
747
+ layer.fillTranslationAnchor = styleValue.mlnStyleValue;
748
748
  }
749
749
 
750
- - (void)setFillPattern:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
750
+ - (void)setFillPattern:(MLNFillStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
751
751
  {
752
- layer.fillPattern = styleValue.mglStyleValue;
752
+ layer.fillPattern = styleValue.mlnStyleValue;
753
753
  }
754
754
 
755
- - (void)setFillPatternTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
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:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
762
+ - (void)setLineCap:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
763
763
  {
764
- layer.lineCap = styleValue.mglStyleValue;
764
+ layer.lineCap = styleValue.mlnStyleValue;
765
765
  }
766
766
 
767
- - (void)setLineJoin:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
767
+ - (void)setLineJoin:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
768
768
  {
769
- layer.lineJoin = styleValue.mglStyleValue;
769
+ layer.lineJoin = styleValue.mlnStyleValue;
770
770
  }
771
771
 
772
- - (void)setLineMiterLimit:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
772
+ - (void)setLineMiterLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
773
773
  {
774
- layer.lineMiterLimit = styleValue.mglStyleValue;
774
+ layer.lineMiterLimit = styleValue.mlnStyleValue;
775
775
  }
776
776
 
777
- - (void)setLineRoundLimit:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
777
+ - (void)setLineRoundLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
778
778
  {
779
- layer.lineRoundLimit = styleValue.mglStyleValue;
779
+ layer.lineRoundLimit = styleValue.mlnStyleValue;
780
780
  }
781
781
 
782
- - (void)setLineSortKey:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
782
+ - (void)setLineSortKey:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
783
783
  {
784
- layer.lineSortKey = styleValue.mglStyleValue;
784
+ layer.lineSortKey = styleValue.mlnStyleValue;
785
785
  }
786
786
 
787
- - (void)setLineStyleLayerVisibility:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
787
+ - (void)setLineStyleLayerVisibility:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
788
788
  {
789
789
  layer.visible = [styleValue isVisible];
790
790
  }
791
791
 
792
- - (void)setLineOpacity:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
792
+ - (void)setLineOpacity:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
793
793
  {
794
- layer.lineOpacity = styleValue.mglStyleValue;
794
+ layer.lineOpacity = styleValue.mlnStyleValue;
795
795
  }
796
796
 
797
- - (void)setLineOpacityTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
797
+ - (void)setLineOpacityTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
798
798
  {
799
799
  layer.lineOpacityTransition = [styleValue getTransition];
800
800
  }
801
801
 
802
- - (void)setLineColor:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
802
+ - (void)setLineColor:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
803
803
  {
804
- layer.lineColor = styleValue.mglStyleValue;
804
+ layer.lineColor = styleValue.mlnStyleValue;
805
805
  }
806
806
 
807
- - (void)setLineColorTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
807
+ - (void)setLineColorTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
808
808
  {
809
809
  layer.lineColorTransition = [styleValue getTransition];
810
810
  }
811
811
 
812
- - (void)setLineTranslate:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
812
+ - (void)setLineTranslate:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
813
813
  {
814
- layer.lineTranslation = styleValue.mglStyleValue;
814
+ layer.lineTranslation = styleValue.mlnStyleValue;
815
815
  }
816
816
 
817
- - (void)setLineTranslateTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
817
+ - (void)setLineTranslateTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
818
818
  {
819
819
  layer.lineTranslationTransition = [styleValue getTransition];
820
820
  }
821
821
 
822
- - (void)setLineTranslateAnchor:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
822
+ - (void)setLineTranslateAnchor:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
823
823
  {
824
- layer.lineTranslationAnchor = styleValue.mglStyleValue;
824
+ layer.lineTranslationAnchor = styleValue.mlnStyleValue;
825
825
  }
826
826
 
827
- - (void)setLineWidth:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
827
+ - (void)setLineWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
828
828
  {
829
- layer.lineWidth = styleValue.mglStyleValue;
829
+ layer.lineWidth = styleValue.mlnStyleValue;
830
830
  }
831
831
 
832
- - (void)setLineWidthTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
832
+ - (void)setLineWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
833
833
  {
834
834
  layer.lineWidthTransition = [styleValue getTransition];
835
835
  }
836
836
 
837
- - (void)setLineGapWidth:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
837
+ - (void)setLineGapWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
838
838
  {
839
- layer.lineGapWidth = styleValue.mglStyleValue;
839
+ layer.lineGapWidth = styleValue.mlnStyleValue;
840
840
  }
841
841
 
842
- - (void)setLineGapWidthTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
842
+ - (void)setLineGapWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
843
843
  {
844
844
  layer.lineGapWidthTransition = [styleValue getTransition];
845
845
  }
846
846
 
847
- - (void)setLineOffset:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
847
+ - (void)setLineOffset:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
848
848
  {
849
- layer.lineOffset = styleValue.mglStyleValue;
849
+ layer.lineOffset = styleValue.mlnStyleValue;
850
850
  }
851
851
 
852
- - (void)setLineOffsetTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
852
+ - (void)setLineOffsetTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
853
853
  {
854
854
  layer.lineOffsetTransition = [styleValue getTransition];
855
855
  }
856
856
 
857
- - (void)setLineBlur:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
857
+ - (void)setLineBlur:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
858
858
  {
859
- layer.lineBlur = styleValue.mglStyleValue;
859
+ layer.lineBlur = styleValue.mlnStyleValue;
860
860
  }
861
861
 
862
- - (void)setLineBlurTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
862
+ - (void)setLineBlurTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
863
863
  {
864
864
  layer.lineBlurTransition = [styleValue getTransition];
865
865
  }
866
866
 
867
- - (void)setLineDasharray:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
867
+ - (void)setLineDasharray:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
868
868
  {
869
- layer.lineDashPattern = styleValue.mglStyleValue;
869
+ layer.lineDashPattern = styleValue.mlnStyleValue;
870
870
  }
871
871
 
872
- - (void)setLineDasharrayTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
872
+ - (void)setLineDasharrayTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
873
873
  {
874
874
  layer.lineDashPatternTransition = [styleValue getTransition];
875
875
  }
876
876
 
877
- - (void)setLinePattern:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
877
+ - (void)setLinePattern:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
878
878
  {
879
- layer.linePattern = styleValue.mglStyleValue;
879
+ layer.linePattern = styleValue.mlnStyleValue;
880
880
  }
881
881
 
882
- - (void)setLinePatternTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
882
+ - (void)setLinePatternTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
883
883
  {
884
884
  layer.linePatternTransition = [styleValue getTransition];
885
885
  }
886
886
 
887
- - (void)setLineGradient:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
887
+ - (void)setLineGradient:(MLNLineStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
888
888
  {
889
- layer.lineGradient = styleValue.mglStyleValue;
889
+ layer.lineGradient = styleValue.mlnStyleValue;
890
890
  }
891
891
 
892
892
 
893
893
 
894
- - (void)setSymbolPlacement:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
894
+ - (void)setSymbolPlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
895
895
  {
896
- layer.symbolPlacement = styleValue.mglStyleValue;
896
+ layer.symbolPlacement = styleValue.mlnStyleValue;
897
897
  }
898
898
 
899
- - (void)setSymbolSpacing:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
899
+ - (void)setSymbolSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
900
900
  {
901
- layer.symbolSpacing = styleValue.mglStyleValue;
901
+ layer.symbolSpacing = styleValue.mlnStyleValue;
902
902
  }
903
903
 
904
- - (void)setSymbolAvoidEdges:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
904
+ - (void)setSymbolAvoidEdges:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
905
905
  {
906
- layer.symbolAvoidsEdges = styleValue.mglStyleValue;
906
+ layer.symbolAvoidsEdges = styleValue.mlnStyleValue;
907
907
  }
908
908
 
909
- - (void)setSymbolSortKey:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
909
+ - (void)setSymbolSortKey:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
910
910
  {
911
- layer.symbolSortKey = styleValue.mglStyleValue;
911
+ layer.symbolSortKey = styleValue.mlnStyleValue;
912
912
  }
913
913
 
914
- - (void)setSymbolZOrder:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
914
+ - (void)setSymbolZOrder:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
915
915
  {
916
- layer.symbolZOrder = styleValue.mglStyleValue;
916
+ layer.symbolZOrder = styleValue.mlnStyleValue;
917
917
  }
918
918
 
919
- - (void)setIconAllowOverlap:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
919
+ - (void)setIconAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
920
920
  {
921
- layer.iconAllowsOverlap = styleValue.mglStyleValue;
921
+ layer.iconAllowsOverlap = styleValue.mlnStyleValue;
922
922
  }
923
923
 
924
- - (void)setIconIgnorePlacement:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
924
+ - (void)setIconIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
925
925
  {
926
- layer.iconIgnoresPlacement = styleValue.mglStyleValue;
926
+ layer.iconIgnoresPlacement = styleValue.mlnStyleValue;
927
927
  }
928
928
 
929
- - (void)setIconOptional:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
929
+ - (void)setIconOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
930
930
  {
931
- layer.iconOptional = styleValue.mglStyleValue;
931
+ layer.iconOptional = styleValue.mlnStyleValue;
932
932
  }
933
933
 
934
- - (void)setIconRotationAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
934
+ - (void)setIconRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
935
935
  {
936
- layer.iconRotationAlignment = styleValue.mglStyleValue;
936
+ layer.iconRotationAlignment = styleValue.mlnStyleValue;
937
937
  }
938
938
 
939
- - (void)setIconSize:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
939
+ - (void)setIconSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
940
940
  {
941
- layer.iconScale = styleValue.mglStyleValue;
941
+ layer.iconScale = styleValue.mlnStyleValue;
942
942
  }
943
943
 
944
- - (void)setIconTextFit:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
944
+ - (void)setIconTextFit:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
945
945
  {
946
- layer.iconTextFit = styleValue.mglStyleValue;
946
+ layer.iconTextFit = styleValue.mlnStyleValue;
947
947
  }
948
948
 
949
- - (void)setIconTextFitPadding:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
949
+ - (void)setIconTextFitPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
950
950
  {
951
- layer.iconTextFitPadding = styleValue.mglStyleValue;
951
+ layer.iconTextFitPadding = styleValue.mlnStyleValue;
952
952
  }
953
953
 
954
- - (void)setIconImage:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
954
+ - (void)setIconImage:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
955
955
  {
956
- layer.iconImageName = styleValue.mglStyleValue;
956
+ layer.iconImageName = styleValue.mlnStyleValue;
957
957
  }
958
958
 
959
- - (void)setIconRotate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
959
+ - (void)setIconRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
960
960
  {
961
- layer.iconRotation = styleValue.mglStyleValue;
961
+ layer.iconRotation = styleValue.mlnStyleValue;
962
962
  }
963
963
 
964
- - (void)setIconPadding:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
964
+ - (void)setIconPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
965
965
  {
966
- layer.iconPadding = styleValue.mglStyleValue;
966
+ layer.iconPadding = styleValue.mlnStyleValue;
967
967
  }
968
968
 
969
- - (void)setIconKeepUpright:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
969
+ - (void)setIconKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
970
970
  {
971
- layer.keepsIconUpright = styleValue.mglStyleValue;
971
+ layer.keepsIconUpright = styleValue.mlnStyleValue;
972
972
  }
973
973
 
974
- - (void)setIconOffset:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
974
+ - (void)setIconOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
975
975
  {
976
- layer.iconOffset = styleValue.mglStyleValue;
976
+ layer.iconOffset = styleValue.mlnStyleValue;
977
977
  }
978
978
 
979
- - (void)setIconAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
979
+ - (void)setIconAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
980
980
  {
981
- layer.iconAnchor = styleValue.mglStyleValue;
981
+ layer.iconAnchor = styleValue.mlnStyleValue;
982
982
  }
983
983
 
984
- - (void)setIconPitchAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
984
+ - (void)setIconPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
985
985
  {
986
- layer.iconPitchAlignment = styleValue.mglStyleValue;
986
+ layer.iconPitchAlignment = styleValue.mlnStyleValue;
987
987
  }
988
988
 
989
- - (void)setTextPitchAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
989
+ - (void)setTextPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
990
990
  {
991
- layer.textPitchAlignment = styleValue.mglStyleValue;
991
+ layer.textPitchAlignment = styleValue.mlnStyleValue;
992
992
  }
993
993
 
994
- - (void)setTextRotationAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
994
+ - (void)setTextRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
995
995
  {
996
- layer.textRotationAlignment = styleValue.mglStyleValue;
996
+ layer.textRotationAlignment = styleValue.mlnStyleValue;
997
997
  }
998
998
 
999
- - (void)setTextField:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
999
+ - (void)setTextField:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1000
1000
  {
1001
- layer.text = styleValue.mglStyleValue;
1001
+ layer.text = styleValue.mlnStyleValue;
1002
1002
  }
1003
1003
 
1004
- - (void)setTextFont:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1004
+ - (void)setTextFont:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1005
1005
  {
1006
- layer.textFontNames = styleValue.mglStyleValue;
1006
+ layer.textFontNames = styleValue.mlnStyleValue;
1007
1007
  }
1008
1008
 
1009
- - (void)setTextSize:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1009
+ - (void)setTextSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1010
1010
  {
1011
- layer.textFontSize = styleValue.mglStyleValue;
1011
+ layer.textFontSize = styleValue.mlnStyleValue;
1012
1012
  }
1013
1013
 
1014
- - (void)setTextMaxWidth:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1014
+ - (void)setTextMaxWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1015
1015
  {
1016
- layer.maximumTextWidth = styleValue.mglStyleValue;
1016
+ layer.maximumTextWidth = styleValue.mlnStyleValue;
1017
1017
  }
1018
1018
 
1019
- - (void)setTextLineHeight:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1019
+ - (void)setTextLineHeight:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1020
1020
  {
1021
- layer.textLineHeight = styleValue.mglStyleValue;
1021
+ layer.textLineHeight = styleValue.mlnStyleValue;
1022
1022
  }
1023
1023
 
1024
- - (void)setTextLetterSpacing:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1024
+ - (void)setTextLetterSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1025
1025
  {
1026
- layer.textLetterSpacing = styleValue.mglStyleValue;
1026
+ layer.textLetterSpacing = styleValue.mlnStyleValue;
1027
1027
  }
1028
1028
 
1029
- - (void)setTextJustify:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1029
+ - (void)setTextJustify:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1030
1030
  {
1031
- layer.textJustification = styleValue.mglStyleValue;
1031
+ layer.textJustification = styleValue.mlnStyleValue;
1032
1032
  }
1033
1033
 
1034
- - (void)setTextRadialOffset:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1034
+ - (void)setTextRadialOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1035
1035
  {
1036
- layer.textRadialOffset = styleValue.mglStyleValue;
1036
+ layer.textRadialOffset = styleValue.mlnStyleValue;
1037
1037
  }
1038
1038
 
1039
- - (void)setTextVariableAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1039
+ - (void)setTextVariableAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1040
1040
  {
1041
- layer.textVariableAnchor = styleValue.mglStyleValue;
1041
+ layer.textVariableAnchor = styleValue.mlnStyleValue;
1042
1042
  }
1043
1043
 
1044
- - (void)setTextAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1044
+ - (void)setTextAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1045
1045
  {
1046
- layer.textAnchor = styleValue.mglStyleValue;
1046
+ layer.textAnchor = styleValue.mlnStyleValue;
1047
1047
  }
1048
1048
 
1049
- - (void)setTextMaxAngle:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1049
+ - (void)setTextMaxAngle:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1050
1050
  {
1051
- layer.maximumTextAngle = styleValue.mglStyleValue;
1051
+ layer.maximumTextAngle = styleValue.mlnStyleValue;
1052
1052
  }
1053
1053
 
1054
- - (void)setTextWritingMode:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1054
+ - (void)setTextWritingMode:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1055
1055
  {
1056
- layer.textWritingModes = styleValue.mglStyleValue;
1056
+ layer.textWritingModes = styleValue.mlnStyleValue;
1057
1057
  }
1058
1058
 
1059
- - (void)setTextRotate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1059
+ - (void)setTextRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1060
1060
  {
1061
- layer.textRotation = styleValue.mglStyleValue;
1061
+ layer.textRotation = styleValue.mlnStyleValue;
1062
1062
  }
1063
1063
 
1064
- - (void)setTextPadding:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1064
+ - (void)setTextPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1065
1065
  {
1066
- layer.textPadding = styleValue.mglStyleValue;
1066
+ layer.textPadding = styleValue.mlnStyleValue;
1067
1067
  }
1068
1068
 
1069
- - (void)setTextKeepUpright:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1069
+ - (void)setTextKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1070
1070
  {
1071
- layer.keepsTextUpright = styleValue.mglStyleValue;
1071
+ layer.keepsTextUpright = styleValue.mlnStyleValue;
1072
1072
  }
1073
1073
 
1074
- - (void)setTextTransform:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1074
+ - (void)setTextTransform:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1075
1075
  {
1076
- layer.textTransform = styleValue.mglStyleValue;
1076
+ layer.textTransform = styleValue.mlnStyleValue;
1077
1077
  }
1078
1078
 
1079
- - (void)setTextOffset:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1079
+ - (void)setTextOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1080
1080
  {
1081
- layer.textOffset = styleValue.mglStyleValue;
1081
+ layer.textOffset = styleValue.mlnStyleValue;
1082
1082
  }
1083
1083
 
1084
- - (void)setTextAllowOverlap:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1084
+ - (void)setTextAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1085
1085
  {
1086
- layer.textAllowsOverlap = styleValue.mglStyleValue;
1086
+ layer.textAllowsOverlap = styleValue.mlnStyleValue;
1087
1087
  }
1088
1088
 
1089
- - (void)setTextIgnorePlacement:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1089
+ - (void)setTextIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1090
1090
  {
1091
- layer.textIgnoresPlacement = styleValue.mglStyleValue;
1091
+ layer.textIgnoresPlacement = styleValue.mlnStyleValue;
1092
1092
  }
1093
1093
 
1094
- - (void)setTextOptional:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1094
+ - (void)setTextOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1095
1095
  {
1096
- layer.textOptional = styleValue.mglStyleValue;
1096
+ layer.textOptional = styleValue.mlnStyleValue;
1097
1097
  }
1098
1098
 
1099
- - (void)setSymbolStyleLayerVisibility:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1099
+ - (void)setSymbolStyleLayerVisibility:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1100
1100
  {
1101
1101
  layer.visible = [styleValue isVisible];
1102
1102
  }
1103
1103
 
1104
- - (void)setIconOpacity:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1104
+ - (void)setIconOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1105
1105
  {
1106
- layer.iconOpacity = styleValue.mglStyleValue;
1106
+ layer.iconOpacity = styleValue.mlnStyleValue;
1107
1107
  }
1108
1108
 
1109
- - (void)setIconOpacityTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1109
+ - (void)setIconOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1110
1110
  {
1111
1111
  layer.iconOpacityTransition = [styleValue getTransition];
1112
1112
  }
1113
1113
 
1114
- - (void)setIconColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1114
+ - (void)setIconColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1115
1115
  {
1116
- layer.iconColor = styleValue.mglStyleValue;
1116
+ layer.iconColor = styleValue.mlnStyleValue;
1117
1117
  }
1118
1118
 
1119
- - (void)setIconColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1119
+ - (void)setIconColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1120
1120
  {
1121
1121
  layer.iconColorTransition = [styleValue getTransition];
1122
1122
  }
1123
1123
 
1124
- - (void)setIconHaloColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1124
+ - (void)setIconHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1125
1125
  {
1126
- layer.iconHaloColor = styleValue.mglStyleValue;
1126
+ layer.iconHaloColor = styleValue.mlnStyleValue;
1127
1127
  }
1128
1128
 
1129
- - (void)setIconHaloColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1129
+ - (void)setIconHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1130
1130
  {
1131
1131
  layer.iconHaloColorTransition = [styleValue getTransition];
1132
1132
  }
1133
1133
 
1134
- - (void)setIconHaloWidth:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1134
+ - (void)setIconHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1135
1135
  {
1136
- layer.iconHaloWidth = styleValue.mglStyleValue;
1136
+ layer.iconHaloWidth = styleValue.mlnStyleValue;
1137
1137
  }
1138
1138
 
1139
- - (void)setIconHaloWidthTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1139
+ - (void)setIconHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1140
1140
  {
1141
1141
  layer.iconHaloWidthTransition = [styleValue getTransition];
1142
1142
  }
1143
1143
 
1144
- - (void)setIconHaloBlur:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1144
+ - (void)setIconHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1145
1145
  {
1146
- layer.iconHaloBlur = styleValue.mglStyleValue;
1146
+ layer.iconHaloBlur = styleValue.mlnStyleValue;
1147
1147
  }
1148
1148
 
1149
- - (void)setIconHaloBlurTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1149
+ - (void)setIconHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1150
1150
  {
1151
1151
  layer.iconHaloBlurTransition = [styleValue getTransition];
1152
1152
  }
1153
1153
 
1154
- - (void)setIconTranslate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1154
+ - (void)setIconTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1155
1155
  {
1156
- layer.iconTranslation = styleValue.mglStyleValue;
1156
+ layer.iconTranslation = styleValue.mlnStyleValue;
1157
1157
  }
1158
1158
 
1159
- - (void)setIconTranslateTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1159
+ - (void)setIconTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1160
1160
  {
1161
1161
  layer.iconTranslationTransition = [styleValue getTransition];
1162
1162
  }
1163
1163
 
1164
- - (void)setIconTranslateAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1164
+ - (void)setIconTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1165
1165
  {
1166
- layer.iconTranslationAnchor = styleValue.mglStyleValue;
1166
+ layer.iconTranslationAnchor = styleValue.mlnStyleValue;
1167
1167
  }
1168
1168
 
1169
- - (void)setTextOpacity:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1169
+ - (void)setTextOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1170
1170
  {
1171
- layer.textOpacity = styleValue.mglStyleValue;
1171
+ layer.textOpacity = styleValue.mlnStyleValue;
1172
1172
  }
1173
1173
 
1174
- - (void)setTextOpacityTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1174
+ - (void)setTextOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1175
1175
  {
1176
1176
  layer.textOpacityTransition = [styleValue getTransition];
1177
1177
  }
1178
1178
 
1179
- - (void)setTextColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1179
+ - (void)setTextColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1180
1180
  {
1181
- layer.textColor = styleValue.mglStyleValue;
1181
+ layer.textColor = styleValue.mlnStyleValue;
1182
1182
  }
1183
1183
 
1184
- - (void)setTextColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1184
+ - (void)setTextColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1185
1185
  {
1186
1186
  layer.textColorTransition = [styleValue getTransition];
1187
1187
  }
1188
1188
 
1189
- - (void)setTextHaloColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1189
+ - (void)setTextHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1190
1190
  {
1191
- layer.textHaloColor = styleValue.mglStyleValue;
1191
+ layer.textHaloColor = styleValue.mlnStyleValue;
1192
1192
  }
1193
1193
 
1194
- - (void)setTextHaloColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1194
+ - (void)setTextHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1195
1195
  {
1196
1196
  layer.textHaloColorTransition = [styleValue getTransition];
1197
1197
  }
1198
1198
 
1199
- - (void)setTextHaloWidth:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1199
+ - (void)setTextHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1200
1200
  {
1201
- layer.textHaloWidth = styleValue.mglStyleValue;
1201
+ layer.textHaloWidth = styleValue.mlnStyleValue;
1202
1202
  }
1203
1203
 
1204
- - (void)setTextHaloWidthTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1204
+ - (void)setTextHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1205
1205
  {
1206
1206
  layer.textHaloWidthTransition = [styleValue getTransition];
1207
1207
  }
1208
1208
 
1209
- - (void)setTextHaloBlur:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1209
+ - (void)setTextHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1210
1210
  {
1211
- layer.textHaloBlur = styleValue.mglStyleValue;
1211
+ layer.textHaloBlur = styleValue.mlnStyleValue;
1212
1212
  }
1213
1213
 
1214
- - (void)setTextHaloBlurTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1214
+ - (void)setTextHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1215
1215
  {
1216
1216
  layer.textHaloBlurTransition = [styleValue getTransition];
1217
1217
  }
1218
1218
 
1219
- - (void)setTextTranslate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1219
+ - (void)setTextTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1220
1220
  {
1221
- layer.textTranslation = styleValue.mglStyleValue;
1221
+ layer.textTranslation = styleValue.mlnStyleValue;
1222
1222
  }
1223
1223
 
1224
- - (void)setTextTranslateTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1224
+ - (void)setTextTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1225
1225
  {
1226
1226
  layer.textTranslationTransition = [styleValue getTransition];
1227
1227
  }
1228
1228
 
1229
- - (void)setTextTranslateAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1229
+ - (void)setTextTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1230
1230
  {
1231
- layer.textTranslationAnchor = styleValue.mglStyleValue;
1231
+ layer.textTranslationAnchor = styleValue.mlnStyleValue;
1232
1232
  }
1233
1233
 
1234
1234
 
1235
1235
 
1236
- - (void)setCircleSortKey:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1236
+ - (void)setCircleSortKey:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1237
1237
  {
1238
- layer.circleSortKey = styleValue.mglStyleValue;
1238
+ layer.circleSortKey = styleValue.mlnStyleValue;
1239
1239
  }
1240
1240
 
1241
- - (void)setCircleStyleLayerVisibility:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1241
+ - (void)setCircleStyleLayerVisibility:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1242
1242
  {
1243
1243
  layer.visible = [styleValue isVisible];
1244
1244
  }
1245
1245
 
1246
- - (void)setCircleRadius:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1246
+ - (void)setCircleRadius:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1247
1247
  {
1248
- layer.circleRadius = styleValue.mglStyleValue;
1248
+ layer.circleRadius = styleValue.mlnStyleValue;
1249
1249
  }
1250
1250
 
1251
- - (void)setCircleRadiusTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1251
+ - (void)setCircleRadiusTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1252
1252
  {
1253
1253
  layer.circleRadiusTransition = [styleValue getTransition];
1254
1254
  }
1255
1255
 
1256
- - (void)setCircleColor:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1256
+ - (void)setCircleColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1257
1257
  {
1258
- layer.circleColor = styleValue.mglStyleValue;
1258
+ layer.circleColor = styleValue.mlnStyleValue;
1259
1259
  }
1260
1260
 
1261
- - (void)setCircleColorTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1261
+ - (void)setCircleColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1262
1262
  {
1263
1263
  layer.circleColorTransition = [styleValue getTransition];
1264
1264
  }
1265
1265
 
1266
- - (void)setCircleBlur:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1266
+ - (void)setCircleBlur:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1267
1267
  {
1268
- layer.circleBlur = styleValue.mglStyleValue;
1268
+ layer.circleBlur = styleValue.mlnStyleValue;
1269
1269
  }
1270
1270
 
1271
- - (void)setCircleBlurTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1271
+ - (void)setCircleBlurTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1272
1272
  {
1273
1273
  layer.circleBlurTransition = [styleValue getTransition];
1274
1274
  }
1275
1275
 
1276
- - (void)setCircleOpacity:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1276
+ - (void)setCircleOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1277
1277
  {
1278
- layer.circleOpacity = styleValue.mglStyleValue;
1278
+ layer.circleOpacity = styleValue.mlnStyleValue;
1279
1279
  }
1280
1280
 
1281
- - (void)setCircleOpacityTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1281
+ - (void)setCircleOpacityTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1282
1282
  {
1283
1283
  layer.circleOpacityTransition = [styleValue getTransition];
1284
1284
  }
1285
1285
 
1286
- - (void)setCircleTranslate:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1286
+ - (void)setCircleTranslate:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1287
1287
  {
1288
- layer.circleTranslation = styleValue.mglStyleValue;
1288
+ layer.circleTranslation = styleValue.mlnStyleValue;
1289
1289
  }
1290
1290
 
1291
- - (void)setCircleTranslateTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1291
+ - (void)setCircleTranslateTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1292
1292
  {
1293
1293
  layer.circleTranslationTransition = [styleValue getTransition];
1294
1294
  }
1295
1295
 
1296
- - (void)setCircleTranslateAnchor:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1296
+ - (void)setCircleTranslateAnchor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1297
1297
  {
1298
- layer.circleTranslationAnchor = styleValue.mglStyleValue;
1298
+ layer.circleTranslationAnchor = styleValue.mlnStyleValue;
1299
1299
  }
1300
1300
 
1301
- - (void)setCirclePitchScale:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1301
+ - (void)setCirclePitchScale:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1302
1302
  {
1303
- layer.circleScaleAlignment = styleValue.mglStyleValue;
1303
+ layer.circleScaleAlignment = styleValue.mlnStyleValue;
1304
1304
  }
1305
1305
 
1306
- - (void)setCirclePitchAlignment:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1306
+ - (void)setCirclePitchAlignment:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1307
1307
  {
1308
- layer.circlePitchAlignment = styleValue.mglStyleValue;
1308
+ layer.circlePitchAlignment = styleValue.mlnStyleValue;
1309
1309
  }
1310
1310
 
1311
- - (void)setCircleStrokeWidth:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1311
+ - (void)setCircleStrokeWidth:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1312
1312
  {
1313
- layer.circleStrokeWidth = styleValue.mglStyleValue;
1313
+ layer.circleStrokeWidth = styleValue.mlnStyleValue;
1314
1314
  }
1315
1315
 
1316
- - (void)setCircleStrokeWidthTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1316
+ - (void)setCircleStrokeWidthTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1317
1317
  {
1318
1318
  layer.circleStrokeWidthTransition = [styleValue getTransition];
1319
1319
  }
1320
1320
 
1321
- - (void)setCircleStrokeColor:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1321
+ - (void)setCircleStrokeColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1322
1322
  {
1323
- layer.circleStrokeColor = styleValue.mglStyleValue;
1323
+ layer.circleStrokeColor = styleValue.mlnStyleValue;
1324
1324
  }
1325
1325
 
1326
- - (void)setCircleStrokeColorTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1326
+ - (void)setCircleStrokeColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1327
1327
  {
1328
1328
  layer.circleStrokeColorTransition = [styleValue getTransition];
1329
1329
  }
1330
1330
 
1331
- - (void)setCircleStrokeOpacity:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1331
+ - (void)setCircleStrokeOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1332
1332
  {
1333
- layer.circleStrokeOpacity = styleValue.mglStyleValue;
1333
+ layer.circleStrokeOpacity = styleValue.mlnStyleValue;
1334
1334
  }
1335
1335
 
1336
- - (void)setCircleStrokeOpacityTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
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:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1343
+ - (void)setHeatmapStyleLayerVisibility:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1344
1344
  {
1345
1345
  layer.visible = [styleValue isVisible];
1346
1346
  }
1347
1347
 
1348
- - (void)setHeatmapRadius:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1348
+ - (void)setHeatmapRadius:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1349
1349
  {
1350
- layer.heatmapRadius = styleValue.mglStyleValue;
1350
+ layer.heatmapRadius = styleValue.mlnStyleValue;
1351
1351
  }
1352
1352
 
1353
- - (void)setHeatmapRadiusTransition:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1353
+ - (void)setHeatmapRadiusTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1354
1354
  {
1355
1355
  layer.heatmapRadiusTransition = [styleValue getTransition];
1356
1356
  }
1357
1357
 
1358
- - (void)setHeatmapWeight:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1358
+ - (void)setHeatmapWeight:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1359
1359
  {
1360
- layer.heatmapWeight = styleValue.mglStyleValue;
1360
+ layer.heatmapWeight = styleValue.mlnStyleValue;
1361
1361
  }
1362
1362
 
1363
- - (void)setHeatmapIntensity:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1363
+ - (void)setHeatmapIntensity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1364
1364
  {
1365
- layer.heatmapIntensity = styleValue.mglStyleValue;
1365
+ layer.heatmapIntensity = styleValue.mlnStyleValue;
1366
1366
  }
1367
1367
 
1368
- - (void)setHeatmapIntensityTransition:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1368
+ - (void)setHeatmapIntensityTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1369
1369
  {
1370
1370
  layer.heatmapIntensityTransition = [styleValue getTransition];
1371
1371
  }
1372
1372
 
1373
- - (void)setHeatmapColor:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1373
+ - (void)setHeatmapColor:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1374
1374
  {
1375
- layer.heatmapColor = styleValue.mglStyleValue;
1375
+ layer.heatmapColor = styleValue.mlnStyleValue;
1376
1376
  }
1377
1377
 
1378
- - (void)setHeatmapOpacity:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1378
+ - (void)setHeatmapOpacity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1379
1379
  {
1380
- layer.heatmapOpacity = styleValue.mglStyleValue;
1380
+ layer.heatmapOpacity = styleValue.mlnStyleValue;
1381
1381
  }
1382
1382
 
1383
- - (void)setHeatmapOpacityTransition:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
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:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1390
+ - (void)setFillExtrusionStyleLayerVisibility:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1391
1391
  {
1392
1392
  layer.visible = [styleValue isVisible];
1393
1393
  }
1394
1394
 
1395
- - (void)setFillExtrusionOpacity:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1395
+ - (void)setFillExtrusionOpacity:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1396
1396
  {
1397
- layer.fillExtrusionOpacity = styleValue.mglStyleValue;
1397
+ layer.fillExtrusionOpacity = styleValue.mlnStyleValue;
1398
1398
  }
1399
1399
 
1400
- - (void)setFillExtrusionOpacityTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1400
+ - (void)setFillExtrusionOpacityTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1401
1401
  {
1402
1402
  layer.fillExtrusionOpacityTransition = [styleValue getTransition];
1403
1403
  }
1404
1404
 
1405
- - (void)setFillExtrusionColor:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1405
+ - (void)setFillExtrusionColor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1406
1406
  {
1407
- layer.fillExtrusionColor = styleValue.mglStyleValue;
1407
+ layer.fillExtrusionColor = styleValue.mlnStyleValue;
1408
1408
  }
1409
1409
 
1410
- - (void)setFillExtrusionColorTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1410
+ - (void)setFillExtrusionColorTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1411
1411
  {
1412
1412
  layer.fillExtrusionColorTransition = [styleValue getTransition];
1413
1413
  }
1414
1414
 
1415
- - (void)setFillExtrusionTranslate:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1415
+ - (void)setFillExtrusionTranslate:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1416
1416
  {
1417
- layer.fillExtrusionTranslation = styleValue.mglStyleValue;
1417
+ layer.fillExtrusionTranslation = styleValue.mlnStyleValue;
1418
1418
  }
1419
1419
 
1420
- - (void)setFillExtrusionTranslateTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1420
+ - (void)setFillExtrusionTranslateTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1421
1421
  {
1422
1422
  layer.fillExtrusionTranslationTransition = [styleValue getTransition];
1423
1423
  }
1424
1424
 
1425
- - (void)setFillExtrusionTranslateAnchor:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1425
+ - (void)setFillExtrusionTranslateAnchor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1426
1426
  {
1427
- layer.fillExtrusionTranslationAnchor = styleValue.mglStyleValue;
1427
+ layer.fillExtrusionTranslationAnchor = styleValue.mlnStyleValue;
1428
1428
  }
1429
1429
 
1430
- - (void)setFillExtrusionPattern:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1430
+ - (void)setFillExtrusionPattern:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1431
1431
  {
1432
- layer.fillExtrusionPattern = styleValue.mglStyleValue;
1432
+ layer.fillExtrusionPattern = styleValue.mlnStyleValue;
1433
1433
  }
1434
1434
 
1435
- - (void)setFillExtrusionPatternTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1435
+ - (void)setFillExtrusionPatternTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1436
1436
  {
1437
1437
  layer.fillExtrusionPatternTransition = [styleValue getTransition];
1438
1438
  }
1439
1439
 
1440
- - (void)setFillExtrusionHeight:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1440
+ - (void)setFillExtrusionHeight:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1441
1441
  {
1442
- layer.fillExtrusionHeight = styleValue.mglStyleValue;
1442
+ layer.fillExtrusionHeight = styleValue.mlnStyleValue;
1443
1443
  }
1444
1444
 
1445
- - (void)setFillExtrusionHeightTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1445
+ - (void)setFillExtrusionHeightTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1446
1446
  {
1447
1447
  layer.fillExtrusionHeightTransition = [styleValue getTransition];
1448
1448
  }
1449
1449
 
1450
- - (void)setFillExtrusionBase:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1450
+ - (void)setFillExtrusionBase:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1451
1451
  {
1452
- layer.fillExtrusionBase = styleValue.mglStyleValue;
1452
+ layer.fillExtrusionBase = styleValue.mlnStyleValue;
1453
1453
  }
1454
1454
 
1455
- - (void)setFillExtrusionBaseTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
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:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1462
+ - (void)setRasterStyleLayerVisibility:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1463
1463
  {
1464
1464
  layer.visible = [styleValue isVisible];
1465
1465
  }
1466
1466
 
1467
- - (void)setRasterOpacity:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1467
+ - (void)setRasterOpacity:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1468
1468
  {
1469
- layer.rasterOpacity = styleValue.mglStyleValue;
1469
+ layer.rasterOpacity = styleValue.mlnStyleValue;
1470
1470
  }
1471
1471
 
1472
- - (void)setRasterOpacityTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1472
+ - (void)setRasterOpacityTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1473
1473
  {
1474
1474
  layer.rasterOpacityTransition = [styleValue getTransition];
1475
1475
  }
1476
1476
 
1477
- - (void)setRasterHueRotate:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1477
+ - (void)setRasterHueRotate:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1478
1478
  {
1479
- layer.rasterHueRotation = styleValue.mglStyleValue;
1479
+ layer.rasterHueRotation = styleValue.mlnStyleValue;
1480
1480
  }
1481
1481
 
1482
- - (void)setRasterHueRotateTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1482
+ - (void)setRasterHueRotateTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1483
1483
  {
1484
1484
  layer.rasterHueRotationTransition = [styleValue getTransition];
1485
1485
  }
1486
1486
 
1487
- - (void)setRasterBrightnessMin:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1487
+ - (void)setRasterBrightnessMin:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1488
1488
  {
1489
- layer.minimumRasterBrightness = styleValue.mglStyleValue;
1489
+ layer.minimumRasterBrightness = styleValue.mlnStyleValue;
1490
1490
  }
1491
1491
 
1492
- - (void)setRasterBrightnessMinTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1492
+ - (void)setRasterBrightnessMinTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1493
1493
  {
1494
1494
  layer.minimumRasterBrightnessTransition = [styleValue getTransition];
1495
1495
  }
1496
1496
 
1497
- - (void)setRasterBrightnessMax:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1497
+ - (void)setRasterBrightnessMax:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1498
1498
  {
1499
- layer.maximumRasterBrightness = styleValue.mglStyleValue;
1499
+ layer.maximumRasterBrightness = styleValue.mlnStyleValue;
1500
1500
  }
1501
1501
 
1502
- - (void)setRasterBrightnessMaxTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1502
+ - (void)setRasterBrightnessMaxTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1503
1503
  {
1504
1504
  layer.maximumRasterBrightnessTransition = [styleValue getTransition];
1505
1505
  }
1506
1506
 
1507
- - (void)setRasterSaturation:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1507
+ - (void)setRasterSaturation:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1508
1508
  {
1509
- layer.rasterSaturation = styleValue.mglStyleValue;
1509
+ layer.rasterSaturation = styleValue.mlnStyleValue;
1510
1510
  }
1511
1511
 
1512
- - (void)setRasterSaturationTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1512
+ - (void)setRasterSaturationTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1513
1513
  {
1514
1514
  layer.rasterSaturationTransition = [styleValue getTransition];
1515
1515
  }
1516
1516
 
1517
- - (void)setRasterContrast:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1517
+ - (void)setRasterContrast:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1518
1518
  {
1519
- layer.rasterContrast = styleValue.mglStyleValue;
1519
+ layer.rasterContrast = styleValue.mlnStyleValue;
1520
1520
  }
1521
1521
 
1522
- - (void)setRasterContrastTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1522
+ - (void)setRasterContrastTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1523
1523
  {
1524
1524
  layer.rasterContrastTransition = [styleValue getTransition];
1525
1525
  }
1526
1526
 
1527
- - (void)setRasterResampling:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1527
+ - (void)setRasterResampling:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1528
1528
  {
1529
- layer.rasterResamplingMode = styleValue.mglStyleValue;
1529
+ layer.rasterResamplingMode = styleValue.mlnStyleValue;
1530
1530
  }
1531
1531
 
1532
- - (void)setRasterFadeDuration:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1532
+ - (void)setRasterFadeDuration:(MLNRasterStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1533
1533
  {
1534
- layer.rasterFadeDuration = styleValue.mglStyleValue;
1534
+ layer.rasterFadeDuration = styleValue.mlnStyleValue;
1535
1535
  }
1536
1536
 
1537
1537
 
1538
1538
 
1539
- - (void)setHillshadeStyleLayerVisibility:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1539
+ - (void)setHillshadeStyleLayerVisibility:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1540
1540
  {
1541
1541
  layer.visible = [styleValue isVisible];
1542
1542
  }
1543
1543
 
1544
- - (void)setHillshadeIlluminationDirection:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1544
+ - (void)setHillshadeIlluminationDirection:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1545
1545
  {
1546
- layer.hillshadeIlluminationDirection = styleValue.mglStyleValue;
1546
+ layer.hillshadeIlluminationDirection = styleValue.mlnStyleValue;
1547
1547
  }
1548
1548
 
1549
- - (void)setHillshadeIlluminationAnchor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1549
+ - (void)setHillshadeIlluminationAnchor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1550
1550
  {
1551
- layer.hillshadeIlluminationAnchor = styleValue.mglStyleValue;
1551
+ layer.hillshadeIlluminationAnchor = styleValue.mlnStyleValue;
1552
1552
  }
1553
1553
 
1554
- - (void)setHillshadeExaggeration:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1554
+ - (void)setHillshadeExaggeration:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1555
1555
  {
1556
- layer.hillshadeExaggeration = styleValue.mglStyleValue;
1556
+ layer.hillshadeExaggeration = styleValue.mlnStyleValue;
1557
1557
  }
1558
1558
 
1559
- - (void)setHillshadeExaggerationTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1559
+ - (void)setHillshadeExaggerationTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1560
1560
  {
1561
1561
  layer.hillshadeExaggerationTransition = [styleValue getTransition];
1562
1562
  }
1563
1563
 
1564
- - (void)setHillshadeShadowColor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1564
+ - (void)setHillshadeShadowColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1565
1565
  {
1566
- layer.hillshadeShadowColor = styleValue.mglStyleValue;
1566
+ layer.hillshadeShadowColor = styleValue.mlnStyleValue;
1567
1567
  }
1568
1568
 
1569
- - (void)setHillshadeShadowColorTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1569
+ - (void)setHillshadeShadowColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1570
1570
  {
1571
1571
  layer.hillshadeShadowColorTransition = [styleValue getTransition];
1572
1572
  }
1573
1573
 
1574
- - (void)setHillshadeHighlightColor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1574
+ - (void)setHillshadeHighlightColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1575
1575
  {
1576
- layer.hillshadeHighlightColor = styleValue.mglStyleValue;
1576
+ layer.hillshadeHighlightColor = styleValue.mlnStyleValue;
1577
1577
  }
1578
1578
 
1579
- - (void)setHillshadeHighlightColorTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1579
+ - (void)setHillshadeHighlightColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1580
1580
  {
1581
1581
  layer.hillshadeHighlightColorTransition = [styleValue getTransition];
1582
1582
  }
1583
1583
 
1584
- - (void)setHillshadeAccentColor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1584
+ - (void)setHillshadeAccentColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1585
1585
  {
1586
- layer.hillshadeAccentColor = styleValue.mglStyleValue;
1586
+ layer.hillshadeAccentColor = styleValue.mlnStyleValue;
1587
1587
  }
1588
1588
 
1589
- - (void)setHillshadeAccentColorTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
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:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1596
+ - (void)setBackgroundStyleLayerVisibility:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1597
1597
  {
1598
1598
  layer.visible = [styleValue isVisible];
1599
1599
  }
1600
1600
 
1601
- - (void)setBackgroundColor:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1601
+ - (void)setBackgroundColor:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1602
1602
  {
1603
- layer.backgroundColor = styleValue.mglStyleValue;
1603
+ layer.backgroundColor = styleValue.mlnStyleValue;
1604
1604
  }
1605
1605
 
1606
- - (void)setBackgroundColorTransition:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1606
+ - (void)setBackgroundColorTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1607
1607
  {
1608
1608
  layer.backgroundColorTransition = [styleValue getTransition];
1609
1609
  }
1610
1610
 
1611
- - (void)setBackgroundPattern:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1611
+ - (void)setBackgroundPattern:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1612
1612
  {
1613
- layer.backgroundPattern = styleValue.mglStyleValue;
1613
+ layer.backgroundPattern = styleValue.mlnStyleValue;
1614
1614
  }
1615
1615
 
1616
- - (void)setBackgroundPatternTransition:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1616
+ - (void)setBackgroundPatternTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1617
1617
  {
1618
1618
  layer.backgroundPatternTransition = [styleValue getTransition];
1619
1619
  }
1620
1620
 
1621
- - (void)setBackgroundOpacity:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1621
+ - (void)setBackgroundOpacity:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1622
1622
  {
1623
- layer.backgroundOpacity = styleValue.mglStyleValue;
1623
+ layer.backgroundOpacity = styleValue.mlnStyleValue;
1624
1624
  }
1625
1625
 
1626
- - (void)setBackgroundOpacityTransition:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
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:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1633
+ - (void)setAnchor:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1634
1634
  {
1635
- layer.anchor = styleValue.mglStyleValue;
1635
+ layer.anchor = styleValue.mlnStyleValue;
1636
1636
  }
1637
1637
 
1638
- - (void)setPosition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1638
+ - (void)setPosition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1639
1639
  {
1640
1640
  layer.position = [styleValue getSphericalPosition];
1641
1641
  }
1642
1642
 
1643
- - (void)setPositionTransition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1643
+ - (void)setPositionTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1644
1644
  {
1645
1645
  layer.positionTransition = [styleValue getTransition];
1646
1646
  }
1647
1647
 
1648
- - (void)setColor:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1648
+ - (void)setColor:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1649
1649
  {
1650
- layer.color = styleValue.mglStyleValue;
1650
+ layer.color = styleValue.mlnStyleValue;
1651
1651
  }
1652
1652
 
1653
- - (void)setColorTransition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1653
+ - (void)setColorTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1654
1654
  {
1655
1655
  layer.colorTransition = [styleValue getTransition];
1656
1656
  }
1657
1657
 
1658
- - (void)setIntensity:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1658
+ - (void)setIntensity:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1659
1659
  {
1660
- layer.intensity = styleValue.mglStyleValue;
1660
+ layer.intensity = styleValue.mlnStyleValue;
1661
1661
  }
1662
1662
 
1663
- - (void)setIntensityTransition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue
1663
+ - (void)setIntensityTransition:(MLNLight *)layer withReactStyleValue:(RCTMLNStyleValue *)styleValue
1664
1664
  {
1665
1665
  layer.intensityTransition = [styleValue getTransition];
1666
1666
  }