@maplibre/maplibre-react-native 10.0.0-alpha.2 → 10.0.0-alpha.21

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