@rnmapbox/maps 10.1.0-beta.2 → 10.1.0-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (812) hide show
  1. package/CHANGELOG.md +6 -6
  2. package/README.md +3 -9
  3. package/android/build.gradle +19 -36
  4. package/android/install.md +11 -116
  5. package/android/src/main/AndroidManifest.xml +1 -1
  6. package/android/src/main/java/com/rnmapbox/rnmbx/RNMBXPackage.java +215 -0
  7. package/android/src/main/{java-mapboxgl/common/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/AbstractEvent.java +1 -1
  8. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/AbstractEventEmitter.kt +2 -2
  9. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/AbstractMapFeature.kt +7 -7
  10. package/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.kt +6 -0
  11. package/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.java +18 -0
  12. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerView.kt → java/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.kt} +10 -10
  13. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerViewManager.kt → java/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.kt} +14 -14
  14. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotation.kt → java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.kt} +21 -19
  15. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotationManager.java → java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.java} +14 -14
  16. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/CameraStop.kt +10 -10
  17. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/CameraUpdateItem.kt +22 -21
  18. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/CameraUpdateQueue.kt +10 -10
  19. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/camera/RCTMGLCamera.kt → java/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.kt} +21 -22
  20. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/camera/RCTMGLCameraManager.kt → java/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.kt} +22 -22
  21. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/camera/constants/CameraMode.java +1 -1
  22. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/images/RCTMGLImage.kt → java/com/rnmapbox/rnmbx/components/images/RNMBXImage.kt} +15 -13
  23. package/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.kt +67 -0
  24. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/images/RCTMGLImages.kt → java/com/rnmapbox/rnmbx/components/images/RNMBXImages.kt} +19 -17
  25. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/images/RCTMGLImagesManager.kt → java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt} +37 -37
  26. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/CameraMode.java +1 -1
  27. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/LocationComponentManager.kt +18 -16
  28. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.kt → java/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.kt} +14 -12
  29. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocationManager.kt → java/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.kt} +7 -7
  30. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/UserLocation.java +2 -2
  31. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/location/UserTrackingMode.kt +1 -1
  32. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/mapview/NativeMapViewModule.kt +10 -10
  33. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/mapview/OnMapReadyCallback.java +1 -1
  34. package/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXAndroidTextureMapViewManager.kt +37 -0
  35. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.kt → java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt} +71 -145
  36. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.kt → java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt} +61 -61
  37. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/mapview/helpers/CameraChangeTracker.kt +1 -1
  38. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyle.kt → java/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.kt} +17 -14
  39. package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.kt +3669 -0
  40. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.kt → java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt} +15 -9
  41. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/atmosphere/RCTMGLAtmosphere.kt → java/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.kt} +20 -16
  42. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/atmosphere/RCTMGLAtmosphereManager.kt → java/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.kt} +7 -7
  43. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/styles/layers/RCTLayer.kt +14 -14
  44. package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.kt +26 -0
  45. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.kt} +14 -14
  46. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.kt} +13 -7
  47. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.kt} +16 -16
  48. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.kt} +15 -10
  49. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.kt} +16 -16
  50. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.kt} +13 -7
  51. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSkyLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.kt} +20 -20
  52. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.kt} +15 -7
  53. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.kt} +16 -16
  54. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.kt} +12 -7
  55. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.kt} +20 -20
  56. package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.kt +23 -0
  57. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.kt} +14 -14
  58. package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.kt +43 -0
  59. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayerManager.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.kt} +16 -16
  60. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayer.kt → java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.kt} +15 -7
  61. package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.kt +76 -0
  62. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/light/RCTMGLLight.kt → java/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.kt} +13 -13
  63. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/light/RCTMGLLightManager.java → java/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.java} +6 -6
  64. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/styles/sources/AbstractSourceConsumer.kt +2 -2
  65. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/components/styles/sources/RCTSource.kt +12 -12
  66. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.kt} +4 -4
  67. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.kt} +13 -13
  68. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterDemSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.kt} +11 -9
  69. package/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.kt +30 -0
  70. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.kt} +2 -2
  71. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.kt} +7 -7
  72. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.kt} +12 -10
  73. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt} +30 -30
  74. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.kt} +2 -2
  75. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt} +3 -3
  76. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSource.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.kt} +8 -6
  77. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSourceManager.kt → java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.kt} +12 -12
  78. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/terrain/RCTMGLTerrain.kt → java/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.kt} +17 -15
  79. package/android/src/main/{java-v10/com/mapbox/rctmgl/components/styles/terrain/RCTMGLTerrainManager.kt → java/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.kt} +8 -8
  80. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/AbstractEvent.kt +1 -1
  81. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/AndroidCallbackEvent.java +2 -2
  82. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/EventEmitter.java +1 -1
  83. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/FeatureClickEvent.java +7 -7
  84. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/IEvent.kt +1 -1
  85. package/android/src/main/{java-mapboxgl/common/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/ImageMissingEvent.java +3 -3
  86. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/LocationEvent.kt +19 -11
  87. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/MapChangeEvent.kt +3 -3
  88. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/MapClickEvent.java +5 -5
  89. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/MapUserTrackingModeEvent.kt +4 -4
  90. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/OfflineEvent.java +1 -1
  91. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/PointAnnotationClickEvent.java +9 -9
  92. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/PointAnnotationDragEvent.java +9 -9
  93. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/constants/EventKeys.java +1 -1
  94. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/events/constants/EventTypes.kt +1 -1
  95. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/location/LocationManager.kt +24 -33
  96. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/location/UserTrackingState.java +1 -1
  97. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/modules/CustomHttpHeaders.kt +10 -2
  98. package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLLocationModule.kt → java/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.kt} +12 -13
  99. package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLLogging.kt → java/com/rnmapbox/rnmbx/modules/RNMBXLogging.kt} +7 -7
  100. package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLModule.kt → java/com/rnmapbox/rnmbx/modules/RNMBXModule.kt} +16 -17
  101. package/android/src/main/{java-v10/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.kt → java/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.kt} +19 -17
  102. package/android/src/main/java/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.kt +124 -0
  103. package/android/src/main/java/com/rnmapbox/rnmbx/utils/BitmapUtils.kt +174 -0
  104. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ConvertUtils.java +1 -1
  105. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/DownloadMapImageTask.kt +6 -6
  106. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ExpressionParser.java +1 -1
  107. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/GeoJSONUtils.kt +5 -5
  108. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ImageEntry.kt +2 -2
  109. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/LatLng.java +1 -1
  110. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/LatLngBounds.kt +2 -2
  111. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/LatLngQuad.java +1 -1
  112. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/Logger.kt +2 -2
  113. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ReadableMapToValue.java +1 -1
  114. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/ResourceUtils.java +1 -1
  115. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/CoordinateBounds.kt +3 -3
  116. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/FeatureCollection.kt +1 -1
  117. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/Geometry.kt +1 -1
  118. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/JSONObject.kt +2 -2
  119. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/Point.kt +2 -2
  120. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/ReadableArray.kt +2 -2
  121. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/ReadableMap.kt +1 -1
  122. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/extensions/Value.kt +1 -1
  123. package/android/src/main/{java-v10/com/mapbox/rctmgl → java/com/rnmapbox/rnmbx}/utils/writeableMapArrayOf.kt +1 -1
  124. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Annotation.kt +4 -0
  125. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Event.kt +17 -0
  126. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Feature.kt +10 -0
  127. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/HttpInterceptor.kt +22 -0
  128. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Image.kt +29 -0
  129. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Light.kt +15 -0
  130. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Location.kt +54 -0
  131. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/MapboxMap.kt +31 -0
  132. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/OfflineManager.kt +19 -0
  133. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/OrnamentSettings.kt +96 -0
  134. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/ResourceOption.kt +12 -0
  135. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rnmbx/v11compat/Snapshot.kt +28 -0
  136. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Annotation.kt +4 -0
  137. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Event.kt +342 -0
  138. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Feature.kt +16 -0
  139. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/HttpInterceptor.kt +21 -0
  140. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Image.kt +40 -0
  141. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Light.kt +15 -0
  142. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Location.kt +58 -0
  143. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/MapboxMap.kt +37 -0
  144. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/OfflineManager.kt +12 -0
  145. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/OrnamentSettings.kt +96 -0
  146. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/ResourceOption.kt +14 -0
  147. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rnmbx/v11compat/Snapshot.kt +22 -0
  148. package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXAndroidTextureMapViewManagerDelegate.java → RNMBXAndroidTextureMapViewManagerDelegate.java} +3 -3
  149. package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXAndroidTextureMapViewManagerInterface.java → RNMBXAndroidTextureMapViewManagerInterface.java} +2 -2
  150. package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXMapViewManagerDelegate.java → RNMBXMapViewManagerDelegate.java} +2 -2
  151. package/android/src/main/old-arch/com/facebook/react/viewmanagers/{MBXMapViewManagerInterface.java → RNMBXMapViewManagerInterface.java} +1 -1
  152. package/android/src/main/old-arch/com/mapbox/{rctmgl → rnmbx}/NativeMapViewModuleSpec.java +2 -2
  153. package/android/src/main/res/values/strings.xml +1 -1
  154. package/ios/{RCTMGL-v10 → RNMBX}/Extensions/CLLocationCoordinate2D+validate.swift +1 -1
  155. package/ios/{RCTMGL-v10 → RNMBX}/Extensions/Encodable+ToJSON.swift +1 -1
  156. package/ios/RNMBX/RCTLog.swift +19 -0
  157. package/ios/{RCTMGL-v10 → RNMBX}/RCTSwiftLog.h +1 -1
  158. package/ios/{RCTMGL-v10 → RNMBX}/RCTSwiftLog.m +1 -1
  159. package/ios/{RCTMGL-v10 → RNMBX}/RNMBImageUtils.swift +1 -1
  160. package/ios/{RCTMGL-v10/RCTMGLAtmosphere.swift → RNMBX/RNMBXAtmosphere.swift} +7 -7
  161. package/ios/{RCTMGL-v10/RCTMGLAtmosphereManager.m → RNMBX/RNMBXAtmosphereManager.m} +1 -1
  162. package/ios/{RCTMGL-v10/RCTMGLAtmosphereManager.swift → RNMBX/RNMBXAtmosphereManager.swift} +3 -3
  163. package/ios/{RCTMGL-v10/RCTMGLBackgroundLayer.swift → RNMBX/RNMBXBackgroundLayer.swift} +4 -4
  164. package/ios/{RCTMGL-v10/RCTMGLBackgroundLayerManager.m → RNMBX/RNMBXBackgroundLayerManager.m} +1 -1
  165. package/ios/{RCTMGL-v10/RCTMGLHeatmapLayetManager.swift → RNMBX/RNMBXBackgroundLayerManager.swift} +3 -3
  166. package/ios/RNMBX/RNMBXCallout.swift +3 -0
  167. package/ios/{RCTMGL-v10/RCTMGLCalloutManager.m → RNMBX/RNMBXCalloutManager.m} +1 -1
  168. package/ios/{RCTMGL-v10/RCTMGLCameraManager.swift → RNMBX/RNMBXCalloutManager.swift} +3 -3
  169. package/ios/{RCTMGL-v10/RCTMGLCamera.swift → RNMBX/RNMBXCamera.swift} +32 -32
  170. package/ios/{RCTMGL-v10/RCTMGLCameraManager.m → RNMBX/RNMBXCameraManager.m} +1 -1
  171. package/ios/{RCTMGL-v10/RCTMGLCalloutManager.swift → RNMBX/RNMBXCameraManager.swift} +3 -3
  172. package/ios/{RCTMGL-v10/RCTMGLCircleLayer.swift → RNMBX/RNMBXCircleLayer.swift} +4 -4
  173. package/ios/{RCTMGL-v10/RCTMGLHeatmapLayerManager.m → RNMBX/RNMBXCircleLayerManager.m} +1 -1
  174. package/ios/{RCTMGL-v10/RCTMGLCircleLayerManager.swift → RNMBX/RNMBXCircleLayerManager.swift} +3 -3
  175. package/ios/{RCTMGL-v10/RCTMGLEvent.swift → RNMBX/RNMBXEvent.swift} +2 -2
  176. package/ios/{RCTMGL-v10/RCTMGLFeatureUtils.swift → RNMBX/RNMBXFeatureUtils.swift} +1 -1
  177. package/ios/{RCTMGL-v10/RCTMGLFillExtrusionLayerManager.m → RNMBX/RNMBXFillExtrusionLayerManager.m} +1 -1
  178. package/ios/{RCTMGL-v10/RCTMGLBackgroundLayerManager.swift → RNMBX/RNMBXFillExtrusionLayerManager.swift} +3 -3
  179. package/ios/{RCTMGL-v10/RCTMGLFillExtrustionLayer.swift → RNMBX/RNMBXFillExtrustionLayer.swift} +4 -4
  180. package/ios/{RCTMGL-v10/RCTMGLFillLayer.swift → RNMBX/RNMBXFillLayer.swift} +4 -4
  181. package/ios/{RCTMGL-v10/RCTMGLLineLayerManager.m → RNMBX/RNMBXFillLayerManager.m} +1 -1
  182. package/ios/{RCTMGL-v10/RCTMGLSkyLayerManager.swift → RNMBX/RNMBXFillLayerManager.swift} +3 -3
  183. package/ios/{RCTMGL-v10/RCTMGLHeatmapLayer.swift → RNMBX/RNMBXHeatmapLayer.swift} +4 -4
  184. package/ios/{RCTMGL-v10/RCTMGLCircleLayerManager.m → RNMBX/RNMBXHeatmapLayerManager.m} +1 -1
  185. package/ios/{RCTMGL-v10/RCTMGLRasterLayerManager.swift → RNMBX/RNMBXHeatmapLayetManager.swift} +3 -3
  186. package/ios/{RCTMGL-v10/RCMTGLImage.swift → RNMBX/RNMBXImage.swift} +3 -3
  187. package/ios/{RCTMGL-v10/RCMTGLImageManager.m → RNMBX/RNMBXImageManager.m} +1 -1
  188. package/ios/{RCTMGL-v10/RCMTGLImageManager.swift → RNMBX/RNMBXImageManager.swift} +3 -3
  189. package/ios/{RCTMGL-v10/RCTMGLImageQueue.swift → RNMBX/RNMBXImageQueue.swift} +7 -7
  190. package/ios/{RCTMGL-v10/RCTMGLImageSource.swift → RNMBX/RNMBXImageSource.swift} +1 -1
  191. package/ios/{RCTMGL-v10/RCTMGLImageSourceManager.m → RNMBX/RNMBXImageSourceManager.m} +1 -1
  192. package/ios/{RCTMGL-v10/RCTMGLImageSourceManager.swift → RNMBX/RNMBXImageSourceManager.swift} +3 -3
  193. package/ios/{RCTMGL-v10/RCTMGLImages.swift → RNMBX/RNMBXImages.swift} +25 -25
  194. package/ios/{RCTMGL-v10/RCTMGLImagesManager.m → RNMBX/RNMBXImagesManager.m} +1 -1
  195. package/ios/{RCTMGL-v10/RCTMGLImagesManager.swift → RNMBX/RNMBXImagesManager.swift} +3 -3
  196. package/ios/{RCTMGL-v10/RCTMGLInteractiveElement.swift → RNMBX/RNMBXInteractiveElement.swift} +5 -5
  197. package/ios/{RCTMGL-v10/RCTMGLLayer.swift → RNMBX/RNMBXLayer.swift} +15 -15
  198. package/ios/{RCTMGL-v10/RCTMGLLight.swift → RNMBX/RNMBXLight.swift} +7 -7
  199. package/ios/{RCTMGL-v10/RCTMGLLightManager.m → RNMBX/RNMBXLightManager.m} +1 -1
  200. package/ios/{RCTMGL-v10/RCTMGLLightManager.swift → RNMBX/RNMBXLightManager.swift} +3 -3
  201. package/ios/{RCTMGL-v10/RCTMGLLineLayer.swift → RNMBX/RNMBXLineLayer.swift} +4 -4
  202. package/ios/{RCTMGL-v10/RCTMGLFillLayerManager.m → RNMBX/RNMBXLineLayerManager.m} +1 -1
  203. package/ios/{RCTMGL-v10/RCTMGLFillLayerManager.swift → RNMBX/RNMBXLineLayerManager.swift} +3 -3
  204. package/ios/{RCTMGL-v10/RCTMGLLocationModule.m → RNMBX/RNMBXLocationModule.m} +2 -2
  205. package/ios/{RCTMGL-v10/RCTMGLLocationModule.swift → RNMBX/RNMBXLocationModule.swift} +41 -41
  206. package/ios/{RCTMGL-v10/RCTMGLLocationModuleV11.swift → RNMBX/RNMBXLocationModuleV11.swift} +5 -5
  207. package/ios/{RCTMGL-v10/RCTMGLLogging.m → RNMBX/RNMBXLogging.m} +1 -1
  208. package/ios/{RCTMGL-v10/RCTMGLLogging.swift → RNMBX/RNMBXLogging.swift} +7 -7
  209. package/ios/{RCTMGL-v10/RCTMGLMapView.swift → RNMBX/RNMBXMapView.swift} +69 -69
  210. package/ios/{RCTMGL-v10/MBXMapViewComponentView.h → RNMBX/RNMBXMapViewComponentView.h} +1 -1
  211. package/ios/{RCTMGL-v10/MBXMapViewComponentView.mm → RNMBX/RNMBXMapViewComponentView.mm} +26 -26
  212. package/ios/{RCTMGL-v10/MBXMapViewManager.m → RNMBX/RNMBXMapViewManager.m} +1 -1
  213. package/ios/{RCTMGL-v10/MBXMapViewManager.swift → RNMBX/RNMBXMapViewManager.swift} +23 -23
  214. package/ios/{RCTMGL-v10/MBXMapViewModule.h → RNMBX/RNMBXMapViewModule.h} +1 -1
  215. package/ios/{RCTMGL-v10/MBXMapViewModule.mm → RNMBX/RNMBXMapViewModule.mm} +39 -46
  216. package/ios/{RCTMGL-v10/RCTMGLMarkerView.swift → RNMBX/RNMBXMarkerView.swift} +14 -14
  217. package/ios/{RCTMGL-v10/RCTMGLMarkerViewManager.m → RNMBX/RNMBXMarkerViewManager.m} +1 -1
  218. package/ios/{RCTMGL-v10/RCTMGLMarkerViewManager.swift → RNMBX/RNMBXMarkerViewManager.swift} +3 -3
  219. package/ios/{RCTMGL-v10/MGLModule.m → RNMBX/RNMBXModule.m} +1 -1
  220. package/ios/{RCTMGL-v10/MGLModule.swift → RNMBX/RNMBXModule.swift} +19 -19
  221. package/ios/{RCTMGL-v10/RCTMGLNativeUserLocation.swift → RNMBX/RNMBXNativeUserLocation.swift} +5 -5
  222. package/ios/{RCTMGL-v10/RCTMGLNativeUserLocationManager.m → RNMBX/RNMBXNativeUserLocationManager.m} +1 -1
  223. package/ios/{RCTMGL-v10/RCTMGLNativeUserLocationManager.swift → RNMBX/RNMBXNativeUserLocationManager.swift} +3 -3
  224. package/ios/{RCTMGL-v10/RCTMGLOfflineModule.m → RNMBX/RNMBXOfflineModule.m} +1 -1
  225. package/ios/{RCTMGL-v10/RCTMGLOfflineModule.swift → RNMBX/RNMBXOfflineModule.swift} +32 -32
  226. package/ios/{RCTMGL-v10/RCTMGLPointAnnotation.swift → RNMBX/RNMBXPointAnnotation.swift} +13 -13
  227. package/ios/{RCTMGL-v10/RCTMGLPointAnnotationManager.m → RNMBX/RNMBXPointAnnotationManager.m} +1 -1
  228. package/ios/{RCTMGL-v10/RCTMGLPointAnnotationManager.swift → RNMBX/RNMBXPointAnnotationManager.swift} +5 -5
  229. package/ios/{RCTMGL-v10/RCTMGLRasterDemSource.swift → RNMBX/RNMBXRasterDemSource.swift} +2 -2
  230. package/ios/{RCTMGL-v10/RCTMGLRasterDemSourceManager.m → RNMBX/RNMBXRasterDemSourceManager.m} +1 -1
  231. package/ios/{RCTMGL-v10/RCTMGLRasterDemSourceManager.swift → RNMBX/RNMBXRasterDemSourceManager.swift} +3 -3
  232. package/ios/{RCTMGL-v10/RCTMGLRasterLayer.swift → RNMBX/RNMBXRasterLayer.swift} +4 -4
  233. package/ios/{RCTMGL-v10/RCTMGLRasterLayerManager.m → RNMBX/RNMBXRasterLayerManager.m} +1 -1
  234. package/ios/RNMBX/RNMBXRasterLayerManager.swift +13 -0
  235. package/ios/{RCTMGL-v10/RCTMGLRasterSource.swift → RNMBX/RNMBXRasterSource.swift} +1 -1
  236. package/ios/{RCTMGL-v10/RCTMGLRasterSourceManager.m → RNMBX/RNMBXRasterSourceManager.m} +1 -1
  237. package/ios/{RCTMGL-v10/RCTMGLRasterSourceManager.swift → RNMBX/RNMBXRasterSourceManager.swift} +3 -3
  238. package/ios/{RCTMGL-v10/RCTMGLShapeSource.swift → RNMBX/RNMBXShapeSource.swift} +21 -21
  239. package/ios/{RCTMGL-v10/RCTMGLShapeSourceManager.m → RNMBX/RNMBXShapeSourceManager.m} +1 -1
  240. package/ios/{RCTMGL-v10/RCTMGLShapeSourceManager.swift → RNMBX/RNMBXShapeSourceManager.swift} +8 -8
  241. package/ios/{RCTMGL-v10/RCTMGLSingletonLayer.swift → RNMBX/RNMBXSingletonLayer.swift} +4 -4
  242. package/ios/{RCTMGL-v10/RCTMGLSkyLayer.swift → RNMBX/RNMBXSkyLayer.swift} +4 -4
  243. package/ios/{RCTMGL-v10/RCTMGLSkyLayerManager.m → RNMBX/RNMBXSkyLayerManager.m} +1 -1
  244. package/ios/{RCTMGL-v10/RCTMGLLineLayerManager.swift → RNMBX/RNMBXSkyLayerManager.swift} +3 -3
  245. package/ios/{RCTMGL-v10/MGLSnapshotModule.m → RNMBX/RNMBXSnapshotModule.m} +1 -1
  246. package/ios/{RCTMGL-v10/MGLSnapshotModule.swift → RNMBX/RNMBXSnapshotModule.swift} +14 -14
  247. package/ios/{RCTMGL-v10/RCTMGLSource.swift → RNMBX/RNMBXSource.swift} +11 -11
  248. package/ios/{RCTMGL-v10/RCTMGLStyle.swift → RNMBX/RNMBXStyle.swift} +227 -227
  249. package/ios/{RCTMGL-v10/RCTMGLStyleValue.swift → RNMBX/RNMBXStyleValue.swift} +18 -18
  250. package/ios/{RCTMGL-v10/RCTMGLSymbolLayer.swift → RNMBX/RNMBXSymbolLayer.swift} +4 -4
  251. package/ios/{RCTMGL-v10/RCTMGLSymbolLayerManager.m → RNMBX/RNMBXSymbolLayerManager.m} +1 -1
  252. package/ios/RNMBX/RNMBXSymbolLayerManager.swift +13 -0
  253. package/ios/{RCTMGL-v10/RCTMGLTerrain.swift → RNMBX/RNMBXTerrain.swift} +7 -7
  254. package/ios/{RCTMGL-v10/RCTMGLTerrainManager.m → RNMBX/RNMBXTerrainManager.m} +2 -2
  255. package/ios/{RCTMGL-v10/RCTMGLTerrainManager.swift → RNMBX/RNMBXTerrainManager.swift} +3 -3
  256. package/ios/{RCTMGL-v10/RCTMGLTileSource.swift → RNMBX/RNMBXTileSource.swift} +1 -1
  257. package/ios/{RCTMGL-v10/RCTMGLUtils.swift → RNMBX/RNMBXUtils.swift} +8 -8
  258. package/ios/{RCTMGL-v10/RCTMGLVectorLayer.m → RNMBX/RNMBXVectorLayer.m} +4 -4
  259. package/ios/RNMBX/RNMBXVectorLayer.swift +5 -0
  260. package/ios/{RCTMGL-v10/RCTMGLVectorSource.swift → RNMBX/RNMBXVectorSource.swift} +1 -1
  261. package/ios/{RCTMGL-v10/RCTMGLVectorSourceManager.m → RNMBX/RNMBXVectorSourceManager.m} +1 -1
  262. package/ios/{RCTMGL-v10/RCTMGLVectorSourceManager.swift → RNMBX/RNMBXVectorSourceManager.swift} +3 -3
  263. package/ios/install.md +28 -39
  264. package/lib/commonjs/Mapbox.js +4 -4
  265. package/lib/commonjs/Mapbox.js.map +1 -1
  266. package/lib/commonjs/{MGLModule.js → RNMBXModule.js} +4 -4
  267. package/lib/commonjs/RNMBXModule.js.map +1 -0
  268. package/lib/commonjs/components/Atmosphere.js +3 -3
  269. package/lib/commonjs/components/Atmosphere.js.map +1 -1
  270. package/lib/commonjs/components/BackgroundLayer.js +4 -4
  271. package/lib/commonjs/components/BackgroundLayer.js.map +1 -1
  272. package/lib/commonjs/components/Callout.js +3 -3
  273. package/lib/commonjs/components/Callout.js.map +1 -1
  274. package/lib/commonjs/components/Camera.js +4 -4
  275. package/lib/commonjs/components/Camera.js.map +1 -1
  276. package/lib/commonjs/components/CircleLayer.js +4 -4
  277. package/lib/commonjs/components/CircleLayer.js.map +1 -1
  278. package/lib/commonjs/components/FillExtrusionLayer.js +4 -4
  279. package/lib/commonjs/components/FillExtrusionLayer.js.map +1 -1
  280. package/lib/commonjs/components/FillLayer.js +4 -4
  281. package/lib/commonjs/components/FillLayer.js.map +1 -1
  282. package/lib/commonjs/components/HeatmapLayer.js +4 -4
  283. package/lib/commonjs/components/HeatmapLayer.js.map +1 -1
  284. package/lib/commonjs/components/Image.js +3 -3
  285. package/lib/commonjs/components/Image.js.map +1 -1
  286. package/lib/commonjs/components/ImageSource.js +3 -3
  287. package/lib/commonjs/components/ImageSource.js.map +1 -1
  288. package/lib/commonjs/components/Images.js +3 -3
  289. package/lib/commonjs/components/Images.js.map +1 -1
  290. package/lib/commonjs/components/Light.js +4 -4
  291. package/lib/commonjs/components/Light.js.map +1 -1
  292. package/lib/commonjs/components/LineLayer.js +4 -4
  293. package/lib/commonjs/components/LineLayer.js.map +1 -1
  294. package/lib/commonjs/components/MapView.js +19 -19
  295. package/lib/commonjs/components/MapView.js.map +1 -1
  296. package/lib/commonjs/components/MarkerView.js +4 -4
  297. package/lib/commonjs/components/MarkerView.js.map +1 -1
  298. package/lib/commonjs/components/NativeUserLocation.js +3 -3
  299. package/lib/commonjs/components/NativeUserLocation.js.map +1 -1
  300. package/lib/commonjs/components/PointAnnotation.js +3 -3
  301. package/lib/commonjs/components/PointAnnotation.js.map +1 -1
  302. package/lib/commonjs/components/RasterDemSource.js +4 -4
  303. package/lib/commonjs/components/RasterDemSource.js.map +1 -1
  304. package/lib/commonjs/components/RasterLayer.js +4 -4
  305. package/lib/commonjs/components/RasterLayer.js.map +1 -1
  306. package/lib/commonjs/components/RasterSource.js +4 -4
  307. package/lib/commonjs/components/RasterSource.js.map +1 -1
  308. package/lib/commonjs/components/ShapeSource.js +4 -4
  309. package/lib/commonjs/components/ShapeSource.js.map +1 -1
  310. package/lib/commonjs/components/SkyLayer.js +4 -4
  311. package/lib/commonjs/components/SkyLayer.js.map +1 -1
  312. package/lib/commonjs/components/SymbolLayer.js +4 -4
  313. package/lib/commonjs/components/SymbolLayer.js.map +1 -1
  314. package/lib/commonjs/components/Terrain.js +3 -3
  315. package/lib/commonjs/components/Terrain.js.map +1 -1
  316. package/lib/commonjs/components/VectorSource.js +4 -4
  317. package/lib/commonjs/components/VectorSource.js.map +1 -1
  318. package/lib/commonjs/modules/location/locationManager.js +2 -2
  319. package/lib/commonjs/modules/location/locationManager.js.map +1 -1
  320. package/lib/commonjs/modules/offline/OfflinePack.js +1 -1
  321. package/lib/commonjs/modules/offline/OfflinePack.js.map +1 -1
  322. package/lib/commonjs/modules/offline/offlineManager.js +7 -7
  323. package/lib/commonjs/modules/offline/offlineManager.js.map +1 -1
  324. package/lib/commonjs/modules/snapshot/SnapshotOptions.js +1 -1
  325. package/lib/commonjs/modules/snapshot/SnapshotOptions.js.map +1 -1
  326. package/lib/commonjs/modules/snapshot/snapshotManager.js +1 -1
  327. package/lib/commonjs/modules/snapshot/snapshotManager.js.map +1 -1
  328. package/lib/commonjs/specs/NativeMapViewModule.js +1 -1
  329. package/lib/commonjs/specs/NativeMapViewModule.js.map +1 -1
  330. package/lib/commonjs/specs/{MBXAndroidTextureMapViewNativeComponent.js → RNMBXAndroidTextureMapViewNativeComponent.js} +2 -2
  331. package/lib/commonjs/specs/RNMBXAndroidTextureMapViewNativeComponent.js.map +1 -0
  332. package/lib/commonjs/specs/{MBXMapViewNativeComponent.js → RNMBXMapViewNativeComponent.js} +2 -2
  333. package/lib/commonjs/specs/RNMBXMapViewNativeComponent.js.map +1 -0
  334. package/lib/commonjs/utils/Logger.js +3 -3
  335. package/lib/commonjs/utils/Logger.js.map +1 -1
  336. package/lib/commonjs/utils/getAnnotationsLayerID.js +3 -3
  337. package/lib/commonjs/utils/getAnnotationsLayerID.js.map +1 -1
  338. package/lib/commonjs/utils/nativeRef.js +6 -6
  339. package/lib/module/Mapbox.js +1 -1
  340. package/lib/module/Mapbox.js.map +1 -1
  341. package/lib/module/{MGLModule.js → RNMBXModule.js} +4 -4
  342. package/lib/module/RNMBXModule.js.map +1 -0
  343. package/lib/module/components/Atmosphere.js +3 -3
  344. package/lib/module/components/Atmosphere.js.map +1 -1
  345. package/lib/module/components/BackgroundLayer.js +4 -4
  346. package/lib/module/components/BackgroundLayer.js.map +1 -1
  347. package/lib/module/components/Callout.js +3 -3
  348. package/lib/module/components/Callout.js.map +1 -1
  349. package/lib/module/components/Camera.js +4 -4
  350. package/lib/module/components/Camera.js.map +1 -1
  351. package/lib/module/components/CircleLayer.js +4 -4
  352. package/lib/module/components/CircleLayer.js.map +1 -1
  353. package/lib/module/components/FillExtrusionLayer.js +4 -4
  354. package/lib/module/components/FillExtrusionLayer.js.map +1 -1
  355. package/lib/module/components/FillLayer.js +4 -4
  356. package/lib/module/components/FillLayer.js.map +1 -1
  357. package/lib/module/components/HeatmapLayer.js +4 -4
  358. package/lib/module/components/HeatmapLayer.js.map +1 -1
  359. package/lib/module/components/Image.js +3 -3
  360. package/lib/module/components/Image.js.map +1 -1
  361. package/lib/module/components/ImageSource.js +3 -3
  362. package/lib/module/components/ImageSource.js.map +1 -1
  363. package/lib/module/components/Images.js +3 -3
  364. package/lib/module/components/Images.js.map +1 -1
  365. package/lib/module/components/Light.js +4 -4
  366. package/lib/module/components/Light.js.map +1 -1
  367. package/lib/module/components/LineLayer.js +4 -4
  368. package/lib/module/components/LineLayer.js.map +1 -1
  369. package/lib/module/components/MapView.js +19 -19
  370. package/lib/module/components/MapView.js.map +1 -1
  371. package/lib/module/components/MarkerView.js +4 -4
  372. package/lib/module/components/MarkerView.js.map +1 -1
  373. package/lib/module/components/NativeUserLocation.js +3 -3
  374. package/lib/module/components/NativeUserLocation.js.map +1 -1
  375. package/lib/module/components/PointAnnotation.js +3 -3
  376. package/lib/module/components/PointAnnotation.js.map +1 -1
  377. package/lib/module/components/RasterDemSource.js +4 -4
  378. package/lib/module/components/RasterDemSource.js.map +1 -1
  379. package/lib/module/components/RasterLayer.js +4 -4
  380. package/lib/module/components/RasterLayer.js.map +1 -1
  381. package/lib/module/components/RasterSource.js +4 -4
  382. package/lib/module/components/RasterSource.js.map +1 -1
  383. package/lib/module/components/ShapeSource.js +4 -4
  384. package/lib/module/components/ShapeSource.js.map +1 -1
  385. package/lib/module/components/SkyLayer.js +4 -4
  386. package/lib/module/components/SkyLayer.js.map +1 -1
  387. package/lib/module/components/SymbolLayer.js +4 -4
  388. package/lib/module/components/SymbolLayer.js.map +1 -1
  389. package/lib/module/components/Terrain.js +3 -3
  390. package/lib/module/components/Terrain.js.map +1 -1
  391. package/lib/module/components/VectorSource.js +4 -4
  392. package/lib/module/components/VectorSource.js.map +1 -1
  393. package/lib/module/modules/location/locationManager.js +2 -2
  394. package/lib/module/modules/location/locationManager.js.map +1 -1
  395. package/lib/module/modules/offline/OfflinePack.js +1 -1
  396. package/lib/module/modules/offline/OfflinePack.js.map +1 -1
  397. package/lib/module/modules/offline/offlineManager.js +7 -7
  398. package/lib/module/modules/offline/offlineManager.js.map +1 -1
  399. package/lib/module/modules/snapshot/SnapshotOptions.js +1 -1
  400. package/lib/module/modules/snapshot/SnapshotOptions.js.map +1 -1
  401. package/lib/module/modules/snapshot/snapshotManager.js +1 -1
  402. package/lib/module/modules/snapshot/snapshotManager.js.map +1 -1
  403. package/lib/module/specs/NativeMapViewModule.js +1 -1
  404. package/lib/module/specs/NativeMapViewModule.js.map +1 -1
  405. package/lib/module/specs/RNMBXAndroidTextureMapViewNativeComponent.js +5 -0
  406. package/lib/module/specs/RNMBXAndroidTextureMapViewNativeComponent.js.map +1 -0
  407. package/lib/module/specs/RNMBXMapViewNativeComponent.js +3 -0
  408. package/lib/module/specs/RNMBXMapViewNativeComponent.js.map +1 -0
  409. package/lib/module/utils/Logger.js +3 -3
  410. package/lib/module/utils/Logger.js.map +1 -1
  411. package/lib/module/utils/getAnnotationsLayerID.js +3 -3
  412. package/lib/module/utils/getAnnotationsLayerID.js.map +1 -1
  413. package/lib/module/utils/nativeRef.js +6 -6
  414. package/lib/typescript/Mapbox.d.ts +1 -1
  415. package/lib/typescript/Mapbox.d.ts.map +1 -1
  416. package/lib/typescript/{MGLModule.d.ts → RNMBXModule.d.ts} +1 -1
  417. package/lib/typescript/RNMBXModule.d.ts.map +1 -0
  418. package/lib/typescript/components/Atmosphere.d.ts +1 -1
  419. package/lib/typescript/components/Atmosphere.d.ts.map +1 -1
  420. package/lib/typescript/components/BackgroundLayer.d.ts +1 -1
  421. package/lib/typescript/components/BackgroundLayer.d.ts.map +1 -1
  422. package/lib/typescript/components/Callout.d.ts +2 -2
  423. package/lib/typescript/components/Callout.d.ts.map +1 -1
  424. package/lib/typescript/components/Camera.d.ts +1 -1
  425. package/lib/typescript/components/Camera.d.ts.map +1 -1
  426. package/lib/typescript/components/CircleLayer.d.ts +1 -1
  427. package/lib/typescript/components/CircleLayer.d.ts.map +1 -1
  428. package/lib/typescript/components/FillExtrusionLayer.d.ts +1 -1
  429. package/lib/typescript/components/FillExtrusionLayer.d.ts.map +1 -1
  430. package/lib/typescript/components/FillLayer.d.ts +1 -1
  431. package/lib/typescript/components/FillLayer.d.ts.map +1 -1
  432. package/lib/typescript/components/HeatmapLayer.d.ts +1 -1
  433. package/lib/typescript/components/HeatmapLayer.d.ts.map +1 -1
  434. package/lib/typescript/components/Image.d.ts +1 -1
  435. package/lib/typescript/components/Image.d.ts.map +1 -1
  436. package/lib/typescript/components/ImageSource.d.ts +1 -1
  437. package/lib/typescript/components/ImageSource.d.ts.map +1 -1
  438. package/lib/typescript/components/Images.d.ts +1 -1
  439. package/lib/typescript/components/Images.d.ts.map +1 -1
  440. package/lib/typescript/components/Light.d.ts +1 -1
  441. package/lib/typescript/components/Light.d.ts.map +1 -1
  442. package/lib/typescript/components/LineLayer.d.ts +1 -1
  443. package/lib/typescript/components/LineLayer.d.ts.map +1 -1
  444. package/lib/typescript/components/MapView.d.ts +4 -12
  445. package/lib/typescript/components/MapView.d.ts.map +1 -1
  446. package/lib/typescript/components/MarkerView.d.ts +1 -1
  447. package/lib/typescript/components/MarkerView.d.ts.map +1 -1
  448. package/lib/typescript/components/PointAnnotation.d.ts +1 -1
  449. package/lib/typescript/components/PointAnnotation.d.ts.map +1 -1
  450. package/lib/typescript/components/RasterDemSource.d.ts +1 -1
  451. package/lib/typescript/components/RasterDemSource.d.ts.map +1 -1
  452. package/lib/typescript/components/RasterLayer.d.ts +1 -1
  453. package/lib/typescript/components/RasterLayer.d.ts.map +1 -1
  454. package/lib/typescript/components/RasterSource.d.ts +1 -1
  455. package/lib/typescript/components/RasterSource.d.ts.map +1 -1
  456. package/lib/typescript/components/ShapeSource.d.ts +1 -1
  457. package/lib/typescript/components/ShapeSource.d.ts.map +1 -1
  458. package/lib/typescript/components/SkyLayer.d.ts +1 -1
  459. package/lib/typescript/components/SkyLayer.d.ts.map +1 -1
  460. package/lib/typescript/components/SymbolLayer.d.ts +1 -1
  461. package/lib/typescript/components/SymbolLayer.d.ts.map +1 -1
  462. package/lib/typescript/components/Terrain.d.ts +1 -1
  463. package/lib/typescript/components/Terrain.d.ts.map +1 -1
  464. package/lib/typescript/components/VectorSource.d.ts +3 -2
  465. package/lib/typescript/components/VectorSource.d.ts.map +1 -1
  466. package/lib/typescript/specs/NativeMapViewModule.d.ts.map +1 -1
  467. package/lib/typescript/specs/{MBXAndroidTextureMapViewNativeComponent.d.ts → RNMBXAndroidTextureMapViewNativeComponent.d.ts} +1 -1
  468. package/lib/typescript/specs/RNMBXAndroidTextureMapViewNativeComponent.d.ts.map +1 -0
  469. package/lib/typescript/specs/{MBXMapViewNativeComponent.d.ts → RNMBXMapViewNativeComponent.d.ts} +1 -1
  470. package/lib/typescript/specs/RNMBXMapViewNativeComponent.d.ts.map +1 -0
  471. package/lib/typescript/utils/nativeRef.d.ts +6 -6
  472. package/package.json +3 -3
  473. package/rnmapbox-maps.podspec +16 -72
  474. package/setup-jest.js +5 -5
  475. package/src/Mapbox.ts +1 -1
  476. package/src/{MGLModule.ts → RNMBXModule.ts} +3 -3
  477. package/src/components/Atmosphere.tsx +3 -4
  478. package/src/components/BackgroundLayer.tsx +4 -4
  479. package/src/components/Callout.tsx +4 -6
  480. package/src/components/Camera.tsx +5 -5
  481. package/src/components/CircleLayer.tsx +4 -4
  482. package/src/components/FillExtrusionLayer.tsx +4 -4
  483. package/src/components/FillLayer.tsx +4 -4
  484. package/src/components/HeatmapLayer.tsx +4 -4
  485. package/src/components/Image.tsx +3 -3
  486. package/src/components/ImageSource.tsx +4 -4
  487. package/src/components/Images.tsx +3 -3
  488. package/src/components/Light.tsx +5 -5
  489. package/src/components/LineLayer.tsx +4 -4
  490. package/src/components/MapView.tsx +26 -26
  491. package/src/components/MarkerView.tsx +5 -6
  492. package/src/components/NativeUserLocation.tsx +3 -3
  493. package/src/components/PointAnnotation.tsx +4 -4
  494. package/src/components/RasterDemSource.tsx +5 -5
  495. package/src/components/RasterLayer.tsx +4 -4
  496. package/src/components/RasterSource.tsx +5 -5
  497. package/src/components/ShapeSource.tsx +5 -5
  498. package/src/components/SkyLayer.tsx +4 -4
  499. package/src/components/SymbolLayer.tsx +5 -5
  500. package/src/components/Terrain.tsx +3 -3
  501. package/src/components/VectorSource.tsx +5 -5
  502. package/src/modules/location/locationManager.ts +2 -2
  503. package/src/modules/offline/OfflinePack.ts +1 -1
  504. package/src/modules/offline/offlineManager.ts +7 -7
  505. package/src/modules/snapshot/SnapshotOptions.ts +1 -1
  506. package/src/modules/snapshot/snapshotManager.ts +1 -1
  507. package/src/specs/NativeMapViewModule.ts +1 -1
  508. package/src/specs/{MBXAndroidTextureMapViewNativeComponent.ts → RNMBXAndroidTextureMapViewNativeComponent.ts} +6 -3
  509. package/src/specs/{MBXMapViewNativeComponent.ts → RNMBXMapViewNativeComponent.ts} +1 -1
  510. package/src/utils/Logger.ts +3 -3
  511. package/src/utils/getAnnotationsLayerID.ts +3 -3
  512. package/src/utils/nativeRef.ts +6 -6
  513. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/RCTMGLPackage.java +0 -99
  514. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/AbstractEventEmitter.java +0 -80
  515. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/AbstractMapFeature.java +0 -19
  516. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/MarkerView.java +0 -23
  517. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/MarkerViewManager.java +0 -69
  518. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLCallout.java +0 -15
  519. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLCalloutManager.java +0 -22
  520. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerView.java +0 -112
  521. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerViewManager.java +0 -45
  522. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotation.java +0 -360
  523. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotationManager.java +0 -88
  524. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraStop.java +0 -249
  525. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraUpdateItem.java +0 -125
  526. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraUpdateQueue.java +0 -73
  527. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/RCTMGLCamera.java +0 -530
  528. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/RCTMGLCameraManager.java +0 -101
  529. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/constants/CameraMode.java +0 -22
  530. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/images/RCTMGLImages.java +0 -234
  531. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/images/RCTMGLImagesManager.java +0 -103
  532. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/LocationComponentManager.java +0 -149
  533. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.java +0 -67
  534. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocationManager.java +0 -35
  535. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/LayerSourceInfo.java +0 -59
  536. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapView.java +0 -16
  537. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.java +0 -31
  538. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java +0 -1528
  539. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java +0 -355
  540. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/helpers/CameraChangeTracker.java +0 -41
  541. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyle.java +0 -83
  542. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java +0 -2220
  543. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleFunctionParser.java +0 -108
  544. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.java +0 -216
  545. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTLayer.java +0 -287
  546. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.java +0 -27
  547. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayerManager.java +0 -64
  548. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayer.java +0 -55
  549. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayerManager.java +0 -77
  550. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayer.java +0 -55
  551. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayerManager.java +0 -80
  552. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayer.java +0 -55
  553. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayerManager.java +0 -80
  554. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayer.java +0 -55
  555. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayerManager.java +0 -77
  556. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayer.java +0 -55
  557. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayerManager.java +0 -79
  558. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.java +0 -27
  559. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayerManager.java +0 -64
  560. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayer.java +0 -55
  561. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayerManager.java +0 -75
  562. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/light/RCTMGLLight.java +0 -65
  563. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/light/RCTMGLLightManager.java +0 -29
  564. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSource.java +0 -81
  565. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSourceManager.java +0 -72
  566. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSource.java +0 -45
  567. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSourceManager.java +0 -44
  568. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java +0 -316
  569. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSourceManager.java +0 -253
  570. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSource.java +0 -97
  571. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSourceManager.java +0 -80
  572. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSource.java +0 -64
  573. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSourceManager.java +0 -84
  574. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTSource.java +0 -244
  575. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/AbstractEvent.java +0 -66
  576. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/AndroidCallbackEvent.java +0 -38
  577. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/EventEmitter.java +0 -45
  578. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/FeatureClickEvent.java +0 -79
  579. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/IEvent.java +0 -18
  580. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/LocationEvent.java +0 -100
  581. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapChangeEvent.java +0 -47
  582. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapClickEvent.java +0 -51
  583. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapUserTrackingModeEvent.java +0 -36
  584. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/OfflineEvent.java +0 -29
  585. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/PointAnnotationClickEvent.java +0 -46
  586. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/PointAnnotationDragEvent.java +0 -51
  587. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/constants/EventKeys.java +0 -39
  588. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/constants/EventTypes.java +0 -51
  589. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/http/CustomHeadersInterceptor.java +0 -38
  590. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/LocationManager.java +0 -147
  591. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserLocation.java +0 -63
  592. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserLocationVerticalAlignment.java +0 -11
  593. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserTrackingMode.java +0 -63
  594. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserTrackingState.java +0 -19
  595. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLLocationModule.java +0 -164
  596. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLLogging.java +0 -140
  597. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLModule.java +0 -377
  598. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java +0 -597
  599. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java +0 -139
  600. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/BitmapUtils.java +0 -129
  601. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ClusterPropertyEntry.java +0 -13
  602. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ConvertUtils.java +0 -257
  603. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/DownloadMapImageTask.java +0 -159
  604. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ExpressionParser.java +0 -74
  605. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/GeoJSONUtils.java +0 -209
  606. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/GeoViewport.java +0 -38
  607. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ImageEntry.java +0 -25
  608. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ResourceUtils.java +0 -30
  609. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/SimpleEventCallback.java +0 -30
  610. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/SphericalMercator.java +0 -69
  611. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/InstanceManagerImpl.java +0 -35
  612. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationEngineCallbackImpl.java +0 -12
  613. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationEngineResultImpl.java +0 -18
  614. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationManagerImpl.java +0 -64
  615. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/PermissionsManagerImpl.java +0 -10
  616. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/SymbolClickListenerImpl.java +0 -18
  617. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/TelemetryImpl.java +0 -11
  618. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/InstanceManagerImpl.java +0 -42
  619. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationEngineCallbackImpl.java +0 -12
  620. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationEngineResultImpl.java +0 -18
  621. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationManagerImpl.java +0 -64
  622. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/PermissionsManagerImpl.java +0 -10
  623. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/SymbolClickListenerImpl.java +0 -18
  624. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/TelemetryImpl.java +0 -7
  625. package/android/src/main/java-v10/com/mapbox/rctmgl/RCTMGLPackage.java +0 -215
  626. package/android/src/main/java-v10/com/mapbox/rctmgl/components/AbstractEvent.java +0 -35
  627. package/android/src/main/java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLCallout.kt +0 -6
  628. package/android/src/main/java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLCalloutManager.java +0 -18
  629. package/android/src/main/java-v10/com/mapbox/rctmgl/components/images/RCTMGLImageManager.kt +0 -67
  630. package/android/src/main/java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.kt +0 -37
  631. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java +0 -2586
  632. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.kt +0 -21
  633. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayerManager.kt +0 -76
  634. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.kt +0 -18
  635. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSkyLayer.kt +0 -35
  636. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterDemSourceManager.kt +0 -30
  637. package/android/src/main/java-v10/com/mapbox/rctmgl/events/ImageMissingEvent.java +0 -42
  638. package/android/src/main/java-v10/com/mapbox/rctmgl/mapbox/Light.kt +0 -6
  639. package/android/src/main/java-v10/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java +0 -151
  640. package/android/src/main/java-v10/com/mapbox/rctmgl/utils/BitmapUtils.java +0 -183
  641. package/ios/RCTMGL/CameraMode.h +0 -18
  642. package/ios/RCTMGL/CameraMode.m +0 -18
  643. package/ios/RCTMGL/CameraStop.h +0 -26
  644. package/ios/RCTMGL/CameraStop.m +0 -83
  645. package/ios/RCTMGL/CameraUpdateItem.h +0 -18
  646. package/ios/RCTMGL/CameraUpdateItem.m +0 -178
  647. package/ios/RCTMGL/CameraUpdateQueue.h +0 -21
  648. package/ios/RCTMGL/CameraUpdateQueue.m +0 -74
  649. package/ios/RCTMGL/FilterParser.h +0 -14
  650. package/ios/RCTMGL/FilterParser.m +0 -22
  651. package/ios/RCTMGL/MGLCustomHeaders.h +0 -20
  652. package/ios/RCTMGL/MGLCustomHeaders.m +0 -98
  653. package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.h +0 -23
  654. package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.m +0 -474
  655. package/ios/RCTMGL/MGLModule.h +0 -13
  656. package/ios/RCTMGL/MGLModule.m +0 -336
  657. package/ios/RCTMGL/MGLOfflineModule.h +0 -19
  658. package/ios/RCTMGL/MGLOfflineModule.m +0 -537
  659. package/ios/RCTMGL/MGLSnapshotModule.h +0 -13
  660. package/ios/RCTMGL/MGLSnapshotModule.m +0 -80
  661. package/ios/RCTMGL/MGLUserLocationHeadingArrowLayer.h +0 -11
  662. package/ios/RCTMGL/MGLUserLocationHeadingArrowLayer.m +0 -57
  663. package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.h +0 -11
  664. package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.m +0 -102
  665. package/ios/RCTMGL/MGLUserLocationHeadingIndicator.h +0 -10
  666. package/ios/RCTMGL/RCTConvert+Mapbox.h +0 -16
  667. package/ios/RCTMGL/RCTConvert+Mapbox.m +0 -32
  668. package/ios/RCTMGL/RCTMGL.h +0 -13
  669. package/ios/RCTMGL/RCTMGL.m +0 -13
  670. package/ios/RCTMGL/RCTMGLBackgroundLayer.h +0 -14
  671. package/ios/RCTMGL/RCTMGLBackgroundLayer.m +0 -27
  672. package/ios/RCTMGL/RCTMGLBackgroundLayerManager.h +0 -13
  673. package/ios/RCTMGL/RCTMGLBackgroundLayerManager.m +0 -35
  674. package/ios/RCTMGL/RCTMGLCallout.h +0 -15
  675. package/ios/RCTMGL/RCTMGLCallout.m +0 -74
  676. package/ios/RCTMGL/RCTMGLCalloutManager.h +0 -13
  677. package/ios/RCTMGL/RCTMGLCalloutManager.m +0 -21
  678. package/ios/RCTMGL/RCTMGLCamera.h +0 -39
  679. package/ios/RCTMGL/RCTMGLCamera.m +0 -258
  680. package/ios/RCTMGL/RCTMGLCameraManager.h +0 -13
  681. package/ios/RCTMGL/RCTMGLCameraManager.m +0 -52
  682. package/ios/RCTMGL/RCTMGLCircleLayer.h +0 -13
  683. package/ios/RCTMGL/RCTMGLCircleLayer.m +0 -34
  684. package/ios/RCTMGL/RCTMGLCircleLayerManager.h +0 -13
  685. package/ios/RCTMGL/RCTMGLCircleLayerManager.m +0 -39
  686. package/ios/RCTMGL/RCTMGLEvent.h +0 -21
  687. package/ios/RCTMGL/RCTMGLEvent.m +0 -47
  688. package/ios/RCTMGL/RCTMGLEventProtocol.h +0 -16
  689. package/ios/RCTMGL/RCTMGLEventTypes.h +0 -50
  690. package/ios/RCTMGL/RCTMGLEventTypes.m +0 -49
  691. package/ios/RCTMGL/RCTMGLFillExtrusionLayer.h +0 -14
  692. package/ios/RCTMGL/RCTMGLFillExtrusionLayer.m +0 -32
  693. package/ios/RCTMGL/RCTMGLFillExtrusionLayerManager.h +0 -13
  694. package/ios/RCTMGL/RCTMGLFillExtrusionLayerManager.m +0 -39
  695. package/ios/RCTMGL/RCTMGLFillLayer.h +0 -14
  696. package/ios/RCTMGL/RCTMGLFillLayer.m +0 -33
  697. package/ios/RCTMGL/RCTMGLFillLayerManager.h +0 -13
  698. package/ios/RCTMGL/RCTMGLFillLayerManager.m +0 -37
  699. package/ios/RCTMGL/RCTMGLHeatmapLayer.h +0 -12
  700. package/ios/RCTMGL/RCTMGLHeatmapLayer.m +0 -30
  701. package/ios/RCTMGL/RCTMGLHeatmapLayerManager.h +0 -12
  702. package/ios/RCTMGL/RCTMGLHeatmapLayerManager.m +0 -38
  703. package/ios/RCTMGL/RCTMGLImageQueue.h +0 -19
  704. package/ios/RCTMGL/RCTMGLImageQueue.m +0 -57
  705. package/ios/RCTMGL/RCTMGLImageQueueOperation.h +0 -17
  706. package/ios/RCTMGL/RCTMGLImageQueueOperation.m +0 -138
  707. package/ios/RCTMGL/RCTMGLImageSource.h +0 -16
  708. package/ios/RCTMGL/RCTMGLImageSource.m +0 -60
  709. package/ios/RCTMGL/RCTMGLImageSourceManager.h +0 -13
  710. package/ios/RCTMGL/RCTMGLImageSourceManager.m +0 -25
  711. package/ios/RCTMGL/RCTMGLImages.h +0 -25
  712. package/ios/RCTMGL/RCTMGLImages.m +0 -126
  713. package/ios/RCTMGL/RCTMGLImagesManager.h +0 -5
  714. package/ios/RCTMGL/RCTMGLImagesManager.m +0 -21
  715. package/ios/RCTMGL/RCTMGLLayer.h +0 -52
  716. package/ios/RCTMGL/RCTMGLLayer.m +0 -236
  717. package/ios/RCTMGL/RCTMGLLight.h +0 -17
  718. package/ios/RCTMGL/RCTMGLLight.m +0 -46
  719. package/ios/RCTMGL/RCTMGLLightManager.h +0 -13
  720. package/ios/RCTMGL/RCTMGLLightManager.m +0 -23
  721. package/ios/RCTMGL/RCTMGLLineLayer.h +0 -14
  722. package/ios/RCTMGL/RCTMGLLineLayer.m +0 -33
  723. package/ios/RCTMGL/RCTMGLLineLayerManager.h +0 -13
  724. package/ios/RCTMGL/RCTMGLLineLayerManager.m +0 -40
  725. package/ios/RCTMGL/RCTMGLLocation.h +0 -19
  726. package/ios/RCTMGL/RCTMGLLocation.m +0 -32
  727. package/ios/RCTMGL/RCTMGLLocationManager.h +0 -30
  728. package/ios/RCTMGL/RCTMGLLocationManager.m +0 -180
  729. package/ios/RCTMGL/RCTMGLLocationManagerDelegate.h +0 -20
  730. package/ios/RCTMGL/RCTMGLLocationModule.h +0 -15
  731. package/ios/RCTMGL/RCTMGLLocationModule.m +0 -99
  732. package/ios/RCTMGL/RCTMGLLogging.h +0 -18
  733. package/ios/RCTMGL/RCTMGLLogging.m +0 -132
  734. package/ios/RCTMGL/RCTMGLMapTouchEvent.h +0 -25
  735. package/ios/RCTMGL/RCTMGLMapTouchEvent.m +0 -77
  736. package/ios/RCTMGL/RCTMGLMapView.h +0 -91
  737. package/ios/RCTMGL/RCTMGLMapView.m +0 -536
  738. package/ios/RCTMGL/RCTMGLMapViewManager.h +0 -17
  739. package/ios/RCTMGL/RCTMGLMapViewManager.m +0 -625
  740. package/ios/RCTMGL/RCTMGLNativeUserLocation.h +0 -18
  741. package/ios/RCTMGL/RCTMGLNativeUserLocation.m +0 -49
  742. package/ios/RCTMGL/RCTMGLNativeUserLocationManager.h +0 -5
  743. package/ios/RCTMGL/RCTMGLNativeUserLocationManager.m +0 -25
  744. package/ios/RCTMGL/RCTMGLPointAnnotation.h +0 -41
  745. package/ios/RCTMGL/RCTMGLPointAnnotation.m +0 -251
  746. package/ios/RCTMGL/RCTMGLPointAnnotationManager.h +0 -13
  747. package/ios/RCTMGL/RCTMGLPointAnnotationManager.m +0 -36
  748. package/ios/RCTMGL/RCTMGLRasterLayer.h +0 -14
  749. package/ios/RCTMGL/RCTMGLRasterLayer.m +0 -30
  750. package/ios/RCTMGL/RCTMGLRasterLayerManager.h +0 -13
  751. package/ios/RCTMGL/RCTMGLRasterLayerManager.m +0 -35
  752. package/ios/RCTMGL/RCTMGLRasterSource.h +0 -16
  753. package/ios/RCTMGL/RCTMGLRasterSource.m +0 -35
  754. package/ios/RCTMGL/RCTMGLRasterSourceManager.h +0 -13
  755. package/ios/RCTMGL/RCTMGLRasterSourceManager.m +0 -32
  756. package/ios/RCTMGL/RCTMGLShapeSource.h +0 -53
  757. package/ios/RCTMGL/RCTMGLShapeSource.m +0 -194
  758. package/ios/RCTMGL/RCTMGLShapeSourceManager.h +0 -14
  759. package/ios/RCTMGL/RCTMGLShapeSourceManager.m +0 -206
  760. package/ios/RCTMGL/RCTMGLSource.h +0 -35
  761. package/ios/RCTMGL/RCTMGLSource.m +0 -143
  762. package/ios/RCTMGL/RCTMGLStyle.h +0 -217
  763. package/ios/RCTMGL/RCTMGLStyle.m +0 -1640
  764. package/ios/RCTMGL/RCTMGLStyleValue.h +0 -27
  765. package/ios/RCTMGL/RCTMGLStyleValue.m +0 -167
  766. package/ios/RCTMGL/RCTMGLSymbolLayer.h +0 -19
  767. package/ios/RCTMGL/RCTMGLSymbolLayer.m +0 -121
  768. package/ios/RCTMGL/RCTMGLSymbolLayerManager.h +0 -13
  769. package/ios/RCTMGL/RCTMGLSymbolLayerManager.m +0 -40
  770. package/ios/RCTMGL/RCTMGLTileSource.h +0 -22
  771. package/ios/RCTMGL/RCTMGLTileSource.m +0 -31
  772. package/ios/RCTMGL/RCTMGLUserLocation.h +0 -15
  773. package/ios/RCTMGL/RCTMGLUserLocation.m +0 -38
  774. package/ios/RCTMGL/RCTMGLUtils.h +0 -31
  775. package/ios/RCTMGL/RCTMGLUtils.m +0 -218
  776. package/ios/RCTMGL/RCTMGLVectorLayer.h +0 -15
  777. package/ios/RCTMGL/RCTMGLVectorLayer.m +0 -59
  778. package/ios/RCTMGL/RCTMGLVectorSource.h +0 -16
  779. package/ios/RCTMGL/RCTMGLVectorSource.m +0 -28
  780. package/ios/RCTMGL/RCTMGLVectorSourceManager.h +0 -14
  781. package/ios/RCTMGL/RCTMGLVectorSourceManager.m +0 -79
  782. package/ios/RCTMGL/RNMBImageUtils.h +0 -17
  783. package/ios/RCTMGL/RNMBImageUtils.m +0 -31
  784. package/ios/RCTMGL/ViewManager.h +0 -16
  785. package/ios/RCTMGL/ViewManager.m +0 -63
  786. package/ios/RCTMGL-v10/RCTLog.swift +0 -19
  787. package/ios/RCTMGL-v10/RCTMGLCallout.swift +0 -3
  788. package/ios/RCTMGL-v10/RCTMGLFillExtrusionLayerManager.swift +0 -13
  789. package/ios/RCTMGL-v10/RCTMGLSymbolLayerManager.swift +0 -13
  790. package/ios/RCTMGL-v10/RCTMGLVectorLayer.swift +0 -5
  791. package/lib/commonjs/MGLModule.js.map +0 -1
  792. package/lib/commonjs/specs/MBXAndroidTextureMapViewNativeComponent.js.map +0 -1
  793. package/lib/commonjs/specs/MBXMapViewNativeComponent.js.map +0 -1
  794. package/lib/module/MGLModule.js.map +0 -1
  795. package/lib/module/specs/MBXAndroidTextureMapViewNativeComponent.js +0 -5
  796. package/lib/module/specs/MBXAndroidTextureMapViewNativeComponent.js.map +0 -1
  797. package/lib/module/specs/MBXMapViewNativeComponent.js +0 -3
  798. package/lib/module/specs/MBXMapViewNativeComponent.js.map +0 -1
  799. package/lib/typescript/MGLModule.d.ts.map +0 -1
  800. package/lib/typescript/specs/MBXAndroidTextureMapViewNativeComponent.d.ts.map +0 -1
  801. package/lib/typescript/specs/MBXMapViewNativeComponent.d.ts.map +0 -1
  802. /package/android/src/main/{java-v10 → java}/README.md +0 -0
  803. /package/ios/{RCTMGL-v10/Bridge/RCTMGL.h → RNMBX/Bridge/RNMBX.h} +0 -0
  804. /package/ios/{RCTMGL-v10 → RNMBX}/CommonLayerProperties.H +0 -0
  805. /package/ios/{RCTMGL-v10 → RNMBX}/CustomHttpHeaders.swift +0 -0
  806. /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/Array+asExpressions.swift +0 -0
  807. /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/CLLocationCoordinate2D+toArray.swift +0 -0
  808. /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/CoordinateBounds+toArray.swift +0 -0
  809. /package/ios/{RCTMGL-v10 → RNMBX}/Extensions/DefaultStringInterpolation+optional.swift +0 -0
  810. /package/ios/{RCTMGL-v10 → RNMBX}/README.md +0 -0
  811. /package/ios/{RCTMGL-v10 → RNMBX}/rnmapbox_maps.h +0 -0
  812. /package/ios/{RCTMGL.xcodeproj → RNMBX.xcodeproj}/project.pbxproj +0 -0
@@ -3,7 +3,7 @@
3
3
 
4
4
  import MapboxMaps
5
5
 
6
- class RCTMGLStyle {
6
+ class RNMBXStyle {
7
7
  var style : Style
8
8
  weak var bridge : RCTBridge?
9
9
 
@@ -25,7 +25,7 @@ func fillLayer(layer: inout FillLayer, reactStyle:Dictionary<String, Any>, oldRe
25
25
  continue;
26
26
  }
27
27
 
28
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
28
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
29
29
 
30
30
  if (prop == "fillSortKey") {
31
31
  self.setFillSortKey(&layer, styleValue:styleValue);
@@ -80,7 +80,7 @@ func lineLayer(layer: inout LineLayer, reactStyle:Dictionary<String, Any>, oldRe
80
80
  continue;
81
81
  }
82
82
 
83
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
83
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
84
84
 
85
85
  if (prop == "lineCap") {
86
86
  self.setLineCap(&layer, styleValue:styleValue);
@@ -159,7 +159,7 @@ func symbolLayer(layer: inout SymbolLayer, reactStyle:Dictionary<String, Any>, o
159
159
  continue;
160
160
  }
161
161
 
162
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
162
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
163
163
 
164
164
  if (prop == "symbolPlacement") {
165
165
  self.setSymbolPlacement(&layer, styleValue:styleValue);
@@ -324,7 +324,7 @@ func circleLayer(layer: inout CircleLayer, reactStyle:Dictionary<String, Any>, o
324
324
  continue;
325
325
  }
326
326
 
327
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
327
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
328
328
 
329
329
  if (prop == "circleSortKey") {
330
330
  self.setCircleSortKey(&layer, styleValue:styleValue);
@@ -387,7 +387,7 @@ func heatmapLayer(layer: inout HeatmapLayer, reactStyle:Dictionary<String, Any>,
387
387
  continue;
388
388
  }
389
389
 
390
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
390
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
391
391
 
392
392
  if (prop == "visibility") {
393
393
  self.setHeatmapStyleLayerVisibility(&layer, styleValue:styleValue);
@@ -426,7 +426,7 @@ func fillExtrusionLayer(layer: inout FillExtrusionLayer, reactStyle:Dictionary<S
426
426
  continue;
427
427
  }
428
428
 
429
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
429
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
430
430
 
431
431
  if (prop == "visibility") {
432
432
  self.setFillExtrusionStyleLayerVisibility(&layer, styleValue:styleValue);
@@ -483,7 +483,7 @@ func rasterLayer(layer: inout RasterLayer, reactStyle:Dictionary<String, Any>, o
483
483
  continue;
484
484
  }
485
485
 
486
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
486
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
487
487
 
488
488
  if (prop == "visibility") {
489
489
  self.setRasterStyleLayerVisibility(&layer, styleValue:styleValue);
@@ -534,7 +534,7 @@ func hillshadeLayer(layer: inout HillshadeLayer, reactStyle:Dictionary<String, A
534
534
  continue;
535
535
  }
536
536
 
537
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
537
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
538
538
 
539
539
  if (prop == "visibility") {
540
540
  self.setHillshadeStyleLayerVisibility(&layer, styleValue:styleValue);
@@ -577,7 +577,7 @@ func backgroundLayer(layer: inout BackgroundLayer, reactStyle:Dictionary<String,
577
577
  continue;
578
578
  }
579
579
 
580
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
580
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
581
581
 
582
582
  if (prop == "visibility") {
583
583
  self.setBackgroundStyleLayerVisibility(&layer, styleValue:styleValue);
@@ -618,7 +618,7 @@ func skyLayer(layer: inout SkyLayer, reactStyle:Dictionary<String, Any>, oldReac
618
618
  continue;
619
619
  }
620
620
 
621
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
621
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
622
622
 
623
623
  if (prop == "visibility") {
624
624
  self.setSkyStyleLayerVisibility(&layer, styleValue:styleValue);
@@ -661,7 +661,7 @@ func lightLayer(layer: inout Light, reactStyle:Dictionary<String, Any>, oldReact
661
661
  continue;
662
662
  }
663
663
 
664
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
664
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
665
665
 
666
666
  if (prop == "anchor") {
667
667
  self.setAnchor(&layer, styleValue:styleValue);
@@ -696,7 +696,7 @@ func atmosphereLayer(layer: inout Atmosphere, reactStyle:Dictionary<String, Any>
696
696
  continue;
697
697
  }
698
698
 
699
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
699
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
700
700
 
701
701
  if (prop == "range") {
702
702
  self.setRange(&layer, styleValue:styleValue);
@@ -741,7 +741,7 @@ func terrainLayer(layer: inout Terrain, reactStyle:Dictionary<String, Any>, oldR
741
741
  continue;
742
742
  }
743
743
 
744
- let styleValue = RCTMGLStyleValue.make(reactStyle[prop])
744
+ let styleValue = RNMBXStyleValue.make(reactStyle[prop])
745
745
 
746
746
  if (prop == "exaggeration") {
747
747
  self.setExaggeration(&layer, styleValue:styleValue);
@@ -754,7 +754,7 @@ func terrainLayer(layer: inout Terrain, reactStyle:Dictionary<String, Any>, oldR
754
754
 
755
755
 
756
756
 
757
- func setFillSortKey(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
757
+ func setFillSortKey(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
758
758
  {
759
759
 
760
760
 
@@ -763,12 +763,12 @@ func setFillSortKey(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
763
763
 
764
764
  }
765
765
 
766
- func setFillStyleLayerVisibility(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
766
+ func setFillStyleLayerVisibility(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
767
767
  {
768
768
  layer.visibility = styleValue.isVisible();
769
769
  }
770
770
 
771
- func setFillAntialias(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
771
+ func setFillAntialias(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
772
772
  {
773
773
 
774
774
 
@@ -777,7 +777,7 @@ func setFillAntialias(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
777
777
 
778
778
  }
779
779
 
780
- func setFillOpacity(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
780
+ func setFillOpacity(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
781
781
  {
782
782
 
783
783
 
@@ -786,12 +786,12 @@ func setFillOpacity(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
786
786
 
787
787
  }
788
788
 
789
- func setFillOpacityTransition(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
789
+ func setFillOpacityTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
790
790
  {
791
791
  layer.fillOpacityTransition = styleValue.getTransition();
792
792
  }
793
793
 
794
- func setFillColor(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
794
+ func setFillColor(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
795
795
  {
796
796
 
797
797
 
@@ -800,12 +800,12 @@ func setFillColor(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
800
800
 
801
801
  }
802
802
 
803
- func setFillColorTransition(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
803
+ func setFillColorTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
804
804
  {
805
805
  layer.fillColorTransition = styleValue.getTransition();
806
806
  }
807
807
 
808
- func setFillOutlineColor(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
808
+ func setFillOutlineColor(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
809
809
  {
810
810
 
811
811
 
@@ -814,12 +814,12 @@ func setFillOutlineColor(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
814
814
 
815
815
  }
816
816
 
817
- func setFillOutlineColorTransition(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
817
+ func setFillOutlineColorTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
818
818
  {
819
819
  layer.fillOutlineColorTransition = styleValue.getTransition();
820
820
  }
821
821
 
822
- func setFillTranslate(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
822
+ func setFillTranslate(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
823
823
  {
824
824
 
825
825
 
@@ -828,12 +828,12 @@ func setFillTranslate(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
828
828
 
829
829
  }
830
830
 
831
- func setFillTranslateTransition(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
831
+ func setFillTranslateTransition(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
832
832
  {
833
833
  layer.fillTranslateTransition = styleValue.getTransition();
834
834
  }
835
835
 
836
- func setFillTranslateAnchor(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
836
+ func setFillTranslateAnchor(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
837
837
  {
838
838
 
839
839
 
@@ -842,7 +842,7 @@ func setFillTranslateAnchor(_ layer: inout FillLayer, styleValue: RCTMGLStyleVal
842
842
 
843
843
  }
844
844
 
845
- func setFillPattern(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
845
+ func setFillPattern(_ layer: inout FillLayer, styleValue: RNMBXStyleValue)
846
846
  {
847
847
 
848
848
 
@@ -853,7 +853,7 @@ func setFillPattern(_ layer: inout FillLayer, styleValue: RCTMGLStyleValue)
853
853
 
854
854
 
855
855
 
856
- func setLineCap(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
856
+ func setLineCap(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
857
857
  {
858
858
 
859
859
 
@@ -862,7 +862,7 @@ func setLineCap(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
862
862
 
863
863
  }
864
864
 
865
- func setLineJoin(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
865
+ func setLineJoin(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
866
866
  {
867
867
 
868
868
 
@@ -871,7 +871,7 @@ func setLineJoin(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
871
871
 
872
872
  }
873
873
 
874
- func setLineMiterLimit(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
874
+ func setLineMiterLimit(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
875
875
  {
876
876
 
877
877
 
@@ -880,7 +880,7 @@ func setLineMiterLimit(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
880
880
 
881
881
  }
882
882
 
883
- func setLineRoundLimit(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
883
+ func setLineRoundLimit(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
884
884
  {
885
885
 
886
886
 
@@ -889,7 +889,7 @@ func setLineRoundLimit(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
889
889
 
890
890
  }
891
891
 
892
- func setLineSortKey(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
892
+ func setLineSortKey(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
893
893
  {
894
894
 
895
895
 
@@ -898,12 +898,12 @@ func setLineSortKey(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
898
898
 
899
899
  }
900
900
 
901
- func setLineStyleLayerVisibility(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
901
+ func setLineStyleLayerVisibility(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
902
902
  {
903
903
  layer.visibility = styleValue.isVisible();
904
904
  }
905
905
 
906
- func setLineOpacity(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
906
+ func setLineOpacity(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
907
907
  {
908
908
 
909
909
 
@@ -912,12 +912,12 @@ func setLineOpacity(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
912
912
 
913
913
  }
914
914
 
915
- func setLineOpacityTransition(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
915
+ func setLineOpacityTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
916
916
  {
917
917
  layer.lineOpacityTransition = styleValue.getTransition();
918
918
  }
919
919
 
920
- func setLineColor(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
920
+ func setLineColor(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
921
921
  {
922
922
 
923
923
 
@@ -926,12 +926,12 @@ func setLineColor(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
926
926
 
927
927
  }
928
928
 
929
- func setLineColorTransition(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
929
+ func setLineColorTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
930
930
  {
931
931
  layer.lineColorTransition = styleValue.getTransition();
932
932
  }
933
933
 
934
- func setLineTranslate(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
934
+ func setLineTranslate(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
935
935
  {
936
936
 
937
937
 
@@ -940,12 +940,12 @@ func setLineTranslate(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
940
940
 
941
941
  }
942
942
 
943
- func setLineTranslateTransition(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
943
+ func setLineTranslateTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
944
944
  {
945
945
  layer.lineTranslateTransition = styleValue.getTransition();
946
946
  }
947
947
 
948
- func setLineTranslateAnchor(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
948
+ func setLineTranslateAnchor(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
949
949
  {
950
950
 
951
951
 
@@ -954,7 +954,7 @@ func setLineTranslateAnchor(_ layer: inout LineLayer, styleValue: RCTMGLStyleVal
954
954
 
955
955
  }
956
956
 
957
- func setLineWidth(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
957
+ func setLineWidth(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
958
958
  {
959
959
 
960
960
 
@@ -963,12 +963,12 @@ func setLineWidth(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
963
963
 
964
964
  }
965
965
 
966
- func setLineWidthTransition(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
966
+ func setLineWidthTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
967
967
  {
968
968
  layer.lineWidthTransition = styleValue.getTransition();
969
969
  }
970
970
 
971
- func setLineGapWidth(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
971
+ func setLineGapWidth(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
972
972
  {
973
973
 
974
974
 
@@ -977,12 +977,12 @@ func setLineGapWidth(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
977
977
 
978
978
  }
979
979
 
980
- func setLineGapWidthTransition(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
980
+ func setLineGapWidthTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
981
981
  {
982
982
  layer.lineGapWidthTransition = styleValue.getTransition();
983
983
  }
984
984
 
985
- func setLineOffset(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
985
+ func setLineOffset(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
986
986
  {
987
987
 
988
988
 
@@ -991,12 +991,12 @@ func setLineOffset(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
991
991
 
992
992
  }
993
993
 
994
- func setLineOffsetTransition(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
994
+ func setLineOffsetTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
995
995
  {
996
996
  layer.lineOffsetTransition = styleValue.getTransition();
997
997
  }
998
998
 
999
- func setLineBlur(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
999
+ func setLineBlur(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
1000
1000
  {
1001
1001
 
1002
1002
 
@@ -1005,12 +1005,12 @@ func setLineBlur(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1005
1005
 
1006
1006
  }
1007
1007
 
1008
- func setLineBlurTransition(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1008
+ func setLineBlurTransition(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
1009
1009
  {
1010
1010
  layer.lineBlurTransition = styleValue.getTransition();
1011
1011
  }
1012
1012
 
1013
- func setLineDasharray(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1013
+ func setLineDasharray(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
1014
1014
  {
1015
1015
 
1016
1016
 
@@ -1019,7 +1019,7 @@ func setLineDasharray(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1019
1019
 
1020
1020
  }
1021
1021
 
1022
- func setLinePattern(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1022
+ func setLinePattern(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
1023
1023
  {
1024
1024
 
1025
1025
 
@@ -1028,7 +1028,7 @@ func setLinePattern(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1028
1028
 
1029
1029
  }
1030
1030
 
1031
- func setLineGradient(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1031
+ func setLineGradient(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
1032
1032
  {
1033
1033
 
1034
1034
 
@@ -1037,7 +1037,7 @@ func setLineGradient(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1037
1037
 
1038
1038
  }
1039
1039
 
1040
- func setLineTrimOffset(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1040
+ func setLineTrimOffset(_ layer: inout LineLayer, styleValue: RNMBXStyleValue)
1041
1041
  {
1042
1042
 
1043
1043
 
@@ -1048,7 +1048,7 @@ func setLineTrimOffset(_ layer: inout LineLayer, styleValue: RCTMGLStyleValue)
1048
1048
 
1049
1049
 
1050
1050
 
1051
- func setSymbolPlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1051
+ func setSymbolPlacement(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1052
1052
  {
1053
1053
 
1054
1054
 
@@ -1057,7 +1057,7 @@ func setSymbolPlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
1057
1057
 
1058
1058
  }
1059
1059
 
1060
- func setSymbolSpacing(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1060
+ func setSymbolSpacing(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1061
1061
  {
1062
1062
 
1063
1063
 
@@ -1066,7 +1066,7 @@ func setSymbolSpacing(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1066
1066
 
1067
1067
  }
1068
1068
 
1069
- func setSymbolAvoidEdges(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1069
+ func setSymbolAvoidEdges(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1070
1070
  {
1071
1071
 
1072
1072
 
@@ -1075,7 +1075,7 @@ func setSymbolAvoidEdges(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
1075
1075
 
1076
1076
  }
1077
1077
 
1078
- func setSymbolSortKey(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1078
+ func setSymbolSortKey(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1079
1079
  {
1080
1080
 
1081
1081
 
@@ -1084,7 +1084,7 @@ func setSymbolSortKey(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1084
1084
 
1085
1085
  }
1086
1086
 
1087
- func setSymbolZOrder(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1087
+ func setSymbolZOrder(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1088
1088
  {
1089
1089
 
1090
1090
 
@@ -1093,7 +1093,7 @@ func setSymbolZOrder(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1093
1093
 
1094
1094
  }
1095
1095
 
1096
- func setIconAllowOverlap(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1096
+ func setIconAllowOverlap(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1097
1097
  {
1098
1098
 
1099
1099
 
@@ -1102,7 +1102,7 @@ func setIconAllowOverlap(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
1102
1102
 
1103
1103
  }
1104
1104
 
1105
- func setIconIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1105
+ func setIconIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1106
1106
  {
1107
1107
 
1108
1108
 
@@ -1111,7 +1111,7 @@ func setIconIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
1111
1111
 
1112
1112
  }
1113
1113
 
1114
- func setIconOptional(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1114
+ func setIconOptional(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1115
1115
  {
1116
1116
 
1117
1117
 
@@ -1120,7 +1120,7 @@ func setIconOptional(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1120
1120
 
1121
1121
  }
1122
1122
 
1123
- func setIconRotationAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1123
+ func setIconRotationAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1124
1124
  {
1125
1125
 
1126
1126
 
@@ -1129,7 +1129,7 @@ func setIconRotationAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyl
1129
1129
 
1130
1130
  }
1131
1131
 
1132
- func setIconSize(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1132
+ func setIconSize(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1133
1133
  {
1134
1134
 
1135
1135
 
@@ -1138,7 +1138,7 @@ func setIconSize(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1138
1138
 
1139
1139
  }
1140
1140
 
1141
- func setIconTextFit(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1141
+ func setIconTextFit(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1142
1142
  {
1143
1143
 
1144
1144
 
@@ -1147,7 +1147,7 @@ func setIconTextFit(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1147
1147
 
1148
1148
  }
1149
1149
 
1150
- func setIconTextFitPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1150
+ func setIconTextFitPadding(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1151
1151
  {
1152
1152
 
1153
1153
 
@@ -1156,7 +1156,7 @@ func setIconTextFitPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
1156
1156
 
1157
1157
  }
1158
1158
 
1159
- func setIconImage(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1159
+ func setIconImage(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1160
1160
  {
1161
1161
 
1162
1162
 
@@ -1165,7 +1165,7 @@ func setIconImage(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1165
1165
 
1166
1166
  }
1167
1167
 
1168
- func setIconRotate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1168
+ func setIconRotate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1169
1169
  {
1170
1170
 
1171
1171
 
@@ -1174,7 +1174,7 @@ func setIconRotate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1174
1174
 
1175
1175
  }
1176
1176
 
1177
- func setIconPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1177
+ func setIconPadding(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1178
1178
  {
1179
1179
 
1180
1180
 
@@ -1183,7 +1183,7 @@ func setIconPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1183
1183
 
1184
1184
  }
1185
1185
 
1186
- func setIconKeepUpright(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1186
+ func setIconKeepUpright(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1187
1187
  {
1188
1188
 
1189
1189
 
@@ -1192,7 +1192,7 @@ func setIconKeepUpright(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
1192
1192
 
1193
1193
  }
1194
1194
 
1195
- func setIconOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1195
+ func setIconOffset(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1196
1196
  {
1197
1197
 
1198
1198
 
@@ -1201,7 +1201,7 @@ func setIconOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1201
1201
 
1202
1202
  }
1203
1203
 
1204
- func setIconAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1204
+ func setIconAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1205
1205
  {
1206
1206
 
1207
1207
 
@@ -1210,7 +1210,7 @@ func setIconAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1210
1210
 
1211
1211
  }
1212
1212
 
1213
- func setIconPitchAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1213
+ func setIconPitchAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1214
1214
  {
1215
1215
 
1216
1216
 
@@ -1219,7 +1219,7 @@ func setIconPitchAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
1219
1219
 
1220
1220
  }
1221
1221
 
1222
- func setTextPitchAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1222
+ func setTextPitchAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1223
1223
  {
1224
1224
 
1225
1225
 
@@ -1228,7 +1228,7 @@ func setTextPitchAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
1228
1228
 
1229
1229
  }
1230
1230
 
1231
- func setTextRotationAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1231
+ func setTextRotationAlignment(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1232
1232
  {
1233
1233
 
1234
1234
 
@@ -1237,7 +1237,7 @@ func setTextRotationAlignment(_ layer: inout SymbolLayer, styleValue: RCTMGLStyl
1237
1237
 
1238
1238
  }
1239
1239
 
1240
- func setTextField(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1240
+ func setTextField(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1241
1241
  {
1242
1242
 
1243
1243
 
@@ -1246,7 +1246,7 @@ func setTextField(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1246
1246
 
1247
1247
  }
1248
1248
 
1249
- func setTextFont(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1249
+ func setTextFont(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1250
1250
  {
1251
1251
 
1252
1252
 
@@ -1255,7 +1255,7 @@ func setTextFont(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1255
1255
 
1256
1256
  }
1257
1257
 
1258
- func setTextSize(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1258
+ func setTextSize(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1259
1259
  {
1260
1260
 
1261
1261
 
@@ -1264,7 +1264,7 @@ func setTextSize(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1264
1264
 
1265
1265
  }
1266
1266
 
1267
- func setTextMaxWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1267
+ func setTextMaxWidth(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1268
1268
  {
1269
1269
 
1270
1270
 
@@ -1273,7 +1273,7 @@ func setTextMaxWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1273
1273
 
1274
1274
  }
1275
1275
 
1276
- func setTextLineHeight(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1276
+ func setTextLineHeight(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1277
1277
  {
1278
1278
 
1279
1279
 
@@ -1282,7 +1282,7 @@ func setTextLineHeight(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1282
1282
 
1283
1283
  }
1284
1284
 
1285
- func setTextLetterSpacing(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1285
+ func setTextLetterSpacing(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1286
1286
  {
1287
1287
 
1288
1288
 
@@ -1291,7 +1291,7 @@ func setTextLetterSpacing(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVal
1291
1291
 
1292
1292
  }
1293
1293
 
1294
- func setTextJustify(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1294
+ func setTextJustify(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1295
1295
  {
1296
1296
 
1297
1297
 
@@ -1300,7 +1300,7 @@ func setTextJustify(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1300
1300
 
1301
1301
  }
1302
1302
 
1303
- func setTextRadialOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1303
+ func setTextRadialOffset(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1304
1304
  {
1305
1305
 
1306
1306
 
@@ -1309,7 +1309,7 @@ func setTextRadialOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
1309
1309
 
1310
1310
  }
1311
1311
 
1312
- func setTextVariableAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1312
+ func setTextVariableAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1313
1313
  {
1314
1314
 
1315
1315
 
@@ -1318,7 +1318,7 @@ func setTextVariableAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleVa
1318
1318
 
1319
1319
  }
1320
1320
 
1321
- func setTextAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1321
+ func setTextAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1322
1322
  {
1323
1323
 
1324
1324
 
@@ -1327,7 +1327,7 @@ func setTextAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1327
1327
 
1328
1328
  }
1329
1329
 
1330
- func setTextMaxAngle(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1330
+ func setTextMaxAngle(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1331
1331
  {
1332
1332
 
1333
1333
 
@@ -1336,7 +1336,7 @@ func setTextMaxAngle(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1336
1336
 
1337
1337
  }
1338
1338
 
1339
- func setTextWritingMode(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1339
+ func setTextWritingMode(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1340
1340
  {
1341
1341
 
1342
1342
 
@@ -1345,7 +1345,7 @@ func setTextWritingMode(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
1345
1345
 
1346
1346
  }
1347
1347
 
1348
- func setTextRotate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1348
+ func setTextRotate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1349
1349
  {
1350
1350
 
1351
1351
 
@@ -1354,7 +1354,7 @@ func setTextRotate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1354
1354
 
1355
1355
  }
1356
1356
 
1357
- func setTextPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1357
+ func setTextPadding(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1358
1358
  {
1359
1359
 
1360
1360
 
@@ -1363,7 +1363,7 @@ func setTextPadding(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1363
1363
 
1364
1364
  }
1365
1365
 
1366
- func setTextKeepUpright(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1366
+ func setTextKeepUpright(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1367
1367
  {
1368
1368
 
1369
1369
 
@@ -1372,7 +1372,7 @@ func setTextKeepUpright(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue
1372
1372
 
1373
1373
  }
1374
1374
 
1375
- func setTextTransform(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1375
+ func setTextTransform(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1376
1376
  {
1377
1377
 
1378
1378
 
@@ -1381,7 +1381,7 @@ func setTextTransform(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1381
1381
 
1382
1382
  }
1383
1383
 
1384
- func setTextOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1384
+ func setTextOffset(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1385
1385
  {
1386
1386
 
1387
1387
 
@@ -1390,7 +1390,7 @@ func setTextOffset(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1390
1390
 
1391
1391
  }
1392
1392
 
1393
- func setTextAllowOverlap(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1393
+ func setTextAllowOverlap(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1394
1394
  {
1395
1395
 
1396
1396
 
@@ -1399,7 +1399,7 @@ func setTextAllowOverlap(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValu
1399
1399
 
1400
1400
  }
1401
1401
 
1402
- func setTextIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1402
+ func setTextIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1403
1403
  {
1404
1404
 
1405
1405
 
@@ -1408,7 +1408,7 @@ func setTextIgnorePlacement(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
1408
1408
 
1409
1409
  }
1410
1410
 
1411
- func setTextOptional(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1411
+ func setTextOptional(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1412
1412
  {
1413
1413
 
1414
1414
 
@@ -1417,12 +1417,12 @@ func setTextOptional(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1417
1417
 
1418
1418
  }
1419
1419
 
1420
- func setSymbolStyleLayerVisibility(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1420
+ func setSymbolStyleLayerVisibility(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1421
1421
  {
1422
1422
  layer.visibility = styleValue.isVisible();
1423
1423
  }
1424
1424
 
1425
- func setIconOpacity(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1425
+ func setIconOpacity(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1426
1426
  {
1427
1427
 
1428
1428
 
@@ -1431,12 +1431,12 @@ func setIconOpacity(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1431
1431
 
1432
1432
  }
1433
1433
 
1434
- func setIconOpacityTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1434
+ func setIconOpacityTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1435
1435
  {
1436
1436
  layer.iconOpacityTransition = styleValue.getTransition();
1437
1437
  }
1438
1438
 
1439
- func setIconColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1439
+ func setIconColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1440
1440
  {
1441
1441
 
1442
1442
 
@@ -1445,12 +1445,12 @@ func setIconColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1445
1445
 
1446
1446
  }
1447
1447
 
1448
- func setIconColorTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1448
+ func setIconColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1449
1449
  {
1450
1450
  layer.iconColorTransition = styleValue.getTransition();
1451
1451
  }
1452
1452
 
1453
- func setIconHaloColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1453
+ func setIconHaloColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1454
1454
  {
1455
1455
 
1456
1456
 
@@ -1459,12 +1459,12 @@ func setIconHaloColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1459
1459
 
1460
1460
  }
1461
1461
 
1462
- func setIconHaloColorTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1462
+ func setIconHaloColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1463
1463
  {
1464
1464
  layer.iconHaloColorTransition = styleValue.getTransition();
1465
1465
  }
1466
1466
 
1467
- func setIconHaloWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1467
+ func setIconHaloWidth(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1468
1468
  {
1469
1469
 
1470
1470
 
@@ -1473,12 +1473,12 @@ func setIconHaloWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1473
1473
 
1474
1474
  }
1475
1475
 
1476
- func setIconHaloWidthTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1476
+ func setIconHaloWidthTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1477
1477
  {
1478
1478
  layer.iconHaloWidthTransition = styleValue.getTransition();
1479
1479
  }
1480
1480
 
1481
- func setIconHaloBlur(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1481
+ func setIconHaloBlur(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1482
1482
  {
1483
1483
 
1484
1484
 
@@ -1487,12 +1487,12 @@ func setIconHaloBlur(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1487
1487
 
1488
1488
  }
1489
1489
 
1490
- func setIconHaloBlurTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1490
+ func setIconHaloBlurTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1491
1491
  {
1492
1492
  layer.iconHaloBlurTransition = styleValue.getTransition();
1493
1493
  }
1494
1494
 
1495
- func setIconTranslate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1495
+ func setIconTranslate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1496
1496
  {
1497
1497
 
1498
1498
 
@@ -1501,12 +1501,12 @@ func setIconTranslate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1501
1501
 
1502
1502
  }
1503
1503
 
1504
- func setIconTranslateTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1504
+ func setIconTranslateTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1505
1505
  {
1506
1506
  layer.iconTranslateTransition = styleValue.getTransition();
1507
1507
  }
1508
1508
 
1509
- func setIconTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1509
+ func setIconTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1510
1510
  {
1511
1511
 
1512
1512
 
@@ -1515,7 +1515,7 @@ func setIconTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
1515
1515
 
1516
1516
  }
1517
1517
 
1518
- func setTextOpacity(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1518
+ func setTextOpacity(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1519
1519
  {
1520
1520
 
1521
1521
 
@@ -1524,12 +1524,12 @@ func setTextOpacity(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1524
1524
 
1525
1525
  }
1526
1526
 
1527
- func setTextOpacityTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1527
+ func setTextOpacityTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1528
1528
  {
1529
1529
  layer.textOpacityTransition = styleValue.getTransition();
1530
1530
  }
1531
1531
 
1532
- func setTextColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1532
+ func setTextColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1533
1533
  {
1534
1534
 
1535
1535
 
@@ -1538,12 +1538,12 @@ func setTextColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1538
1538
 
1539
1539
  }
1540
1540
 
1541
- func setTextColorTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1541
+ func setTextColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1542
1542
  {
1543
1543
  layer.textColorTransition = styleValue.getTransition();
1544
1544
  }
1545
1545
 
1546
- func setTextHaloColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1546
+ func setTextHaloColor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1547
1547
  {
1548
1548
 
1549
1549
 
@@ -1552,12 +1552,12 @@ func setTextHaloColor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1552
1552
 
1553
1553
  }
1554
1554
 
1555
- func setTextHaloColorTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1555
+ func setTextHaloColorTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1556
1556
  {
1557
1557
  layer.textHaloColorTransition = styleValue.getTransition();
1558
1558
  }
1559
1559
 
1560
- func setTextHaloWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1560
+ func setTextHaloWidth(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1561
1561
  {
1562
1562
 
1563
1563
 
@@ -1566,12 +1566,12 @@ func setTextHaloWidth(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1566
1566
 
1567
1567
  }
1568
1568
 
1569
- func setTextHaloWidthTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1569
+ func setTextHaloWidthTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1570
1570
  {
1571
1571
  layer.textHaloWidthTransition = styleValue.getTransition();
1572
1572
  }
1573
1573
 
1574
- func setTextHaloBlur(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1574
+ func setTextHaloBlur(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1575
1575
  {
1576
1576
 
1577
1577
 
@@ -1580,12 +1580,12 @@ func setTextHaloBlur(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1580
1580
 
1581
1581
  }
1582
1582
 
1583
- func setTextHaloBlurTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1583
+ func setTextHaloBlurTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1584
1584
  {
1585
1585
  layer.textHaloBlurTransition = styleValue.getTransition();
1586
1586
  }
1587
1587
 
1588
- func setTextTranslate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1588
+ func setTextTranslate(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1589
1589
  {
1590
1590
 
1591
1591
 
@@ -1594,12 +1594,12 @@ func setTextTranslate(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1594
1594
 
1595
1595
  }
1596
1596
 
1597
- func setTextTranslateTransition(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1597
+ func setTextTranslateTransition(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1598
1598
  {
1599
1599
  layer.textTranslateTransition = styleValue.getTransition();
1600
1600
  }
1601
1601
 
1602
- func setTextTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleValue)
1602
+ func setTextTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RNMBXStyleValue)
1603
1603
  {
1604
1604
 
1605
1605
 
@@ -1610,7 +1610,7 @@ func setTextTranslateAnchor(_ layer: inout SymbolLayer, styleValue: RCTMGLStyleV
1610
1610
 
1611
1611
 
1612
1612
 
1613
- func setCircleSortKey(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1613
+ func setCircleSortKey(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1614
1614
  {
1615
1615
 
1616
1616
 
@@ -1619,12 +1619,12 @@ func setCircleSortKey(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1619
1619
 
1620
1620
  }
1621
1621
 
1622
- func setCircleStyleLayerVisibility(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1622
+ func setCircleStyleLayerVisibility(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1623
1623
  {
1624
1624
  layer.visibility = styleValue.isVisible();
1625
1625
  }
1626
1626
 
1627
- func setCircleRadius(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1627
+ func setCircleRadius(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1628
1628
  {
1629
1629
 
1630
1630
 
@@ -1633,12 +1633,12 @@ func setCircleRadius(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1633
1633
 
1634
1634
  }
1635
1635
 
1636
- func setCircleRadiusTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1636
+ func setCircleRadiusTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1637
1637
  {
1638
1638
  layer.circleRadiusTransition = styleValue.getTransition();
1639
1639
  }
1640
1640
 
1641
- func setCircleColor(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1641
+ func setCircleColor(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1642
1642
  {
1643
1643
 
1644
1644
 
@@ -1647,12 +1647,12 @@ func setCircleColor(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1647
1647
 
1648
1648
  }
1649
1649
 
1650
- func setCircleColorTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1650
+ func setCircleColorTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1651
1651
  {
1652
1652
  layer.circleColorTransition = styleValue.getTransition();
1653
1653
  }
1654
1654
 
1655
- func setCircleBlur(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1655
+ func setCircleBlur(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1656
1656
  {
1657
1657
 
1658
1658
 
@@ -1661,12 +1661,12 @@ func setCircleBlur(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1661
1661
 
1662
1662
  }
1663
1663
 
1664
- func setCircleBlurTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1664
+ func setCircleBlurTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1665
1665
  {
1666
1666
  layer.circleBlurTransition = styleValue.getTransition();
1667
1667
  }
1668
1668
 
1669
- func setCircleOpacity(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1669
+ func setCircleOpacity(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1670
1670
  {
1671
1671
 
1672
1672
 
@@ -1675,12 +1675,12 @@ func setCircleOpacity(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1675
1675
 
1676
1676
  }
1677
1677
 
1678
- func setCircleOpacityTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1678
+ func setCircleOpacityTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1679
1679
  {
1680
1680
  layer.circleOpacityTransition = styleValue.getTransition();
1681
1681
  }
1682
1682
 
1683
- func setCircleTranslate(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1683
+ func setCircleTranslate(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1684
1684
  {
1685
1685
 
1686
1686
 
@@ -1689,12 +1689,12 @@ func setCircleTranslate(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue
1689
1689
 
1690
1690
  }
1691
1691
 
1692
- func setCircleTranslateTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1692
+ func setCircleTranslateTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1693
1693
  {
1694
1694
  layer.circleTranslateTransition = styleValue.getTransition();
1695
1695
  }
1696
1696
 
1697
- func setCircleTranslateAnchor(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1697
+ func setCircleTranslateAnchor(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1698
1698
  {
1699
1699
 
1700
1700
 
@@ -1703,7 +1703,7 @@ func setCircleTranslateAnchor(_ layer: inout CircleLayer, styleValue: RCTMGLStyl
1703
1703
 
1704
1704
  }
1705
1705
 
1706
- func setCirclePitchScale(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1706
+ func setCirclePitchScale(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1707
1707
  {
1708
1708
 
1709
1709
 
@@ -1712,7 +1712,7 @@ func setCirclePitchScale(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValu
1712
1712
 
1713
1713
  }
1714
1714
 
1715
- func setCirclePitchAlignment(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1715
+ func setCirclePitchAlignment(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1716
1716
  {
1717
1717
 
1718
1718
 
@@ -1721,7 +1721,7 @@ func setCirclePitchAlignment(_ layer: inout CircleLayer, styleValue: RCTMGLStyle
1721
1721
 
1722
1722
  }
1723
1723
 
1724
- func setCircleStrokeWidth(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1724
+ func setCircleStrokeWidth(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1725
1725
  {
1726
1726
 
1727
1727
 
@@ -1730,12 +1730,12 @@ func setCircleStrokeWidth(_ layer: inout CircleLayer, styleValue: RCTMGLStyleVal
1730
1730
 
1731
1731
  }
1732
1732
 
1733
- func setCircleStrokeWidthTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1733
+ func setCircleStrokeWidthTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1734
1734
  {
1735
1735
  layer.circleStrokeWidthTransition = styleValue.getTransition();
1736
1736
  }
1737
1737
 
1738
- func setCircleStrokeColor(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1738
+ func setCircleStrokeColor(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1739
1739
  {
1740
1740
 
1741
1741
 
@@ -1744,12 +1744,12 @@ func setCircleStrokeColor(_ layer: inout CircleLayer, styleValue: RCTMGLStyleVal
1744
1744
 
1745
1745
  }
1746
1746
 
1747
- func setCircleStrokeColorTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1747
+ func setCircleStrokeColorTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1748
1748
  {
1749
1749
  layer.circleStrokeColorTransition = styleValue.getTransition();
1750
1750
  }
1751
1751
 
1752
- func setCircleStrokeOpacity(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1752
+ func setCircleStrokeOpacity(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1753
1753
  {
1754
1754
 
1755
1755
 
@@ -1758,19 +1758,19 @@ func setCircleStrokeOpacity(_ layer: inout CircleLayer, styleValue: RCTMGLStyleV
1758
1758
 
1759
1759
  }
1760
1760
 
1761
- func setCircleStrokeOpacityTransition(_ layer: inout CircleLayer, styleValue: RCTMGLStyleValue)
1761
+ func setCircleStrokeOpacityTransition(_ layer: inout CircleLayer, styleValue: RNMBXStyleValue)
1762
1762
  {
1763
1763
  layer.circleStrokeOpacityTransition = styleValue.getTransition();
1764
1764
  }
1765
1765
 
1766
1766
 
1767
1767
 
1768
- func setHeatmapStyleLayerVisibility(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1768
+ func setHeatmapStyleLayerVisibility(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1769
1769
  {
1770
1770
  layer.visibility = styleValue.isVisible();
1771
1771
  }
1772
1772
 
1773
- func setHeatmapRadius(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1773
+ func setHeatmapRadius(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1774
1774
  {
1775
1775
 
1776
1776
 
@@ -1779,12 +1779,12 @@ func setHeatmapRadius(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1779
1779
 
1780
1780
  }
1781
1781
 
1782
- func setHeatmapRadiusTransition(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1782
+ func setHeatmapRadiusTransition(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1783
1783
  {
1784
1784
  layer.heatmapRadiusTransition = styleValue.getTransition();
1785
1785
  }
1786
1786
 
1787
- func setHeatmapWeight(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1787
+ func setHeatmapWeight(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1788
1788
  {
1789
1789
 
1790
1790
 
@@ -1793,7 +1793,7 @@ func setHeatmapWeight(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1793
1793
 
1794
1794
  }
1795
1795
 
1796
- func setHeatmapIntensity(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1796
+ func setHeatmapIntensity(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1797
1797
  {
1798
1798
 
1799
1799
 
@@ -1802,12 +1802,12 @@ func setHeatmapIntensity(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleVal
1802
1802
 
1803
1803
  }
1804
1804
 
1805
- func setHeatmapIntensityTransition(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1805
+ func setHeatmapIntensityTransition(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1806
1806
  {
1807
1807
  layer.heatmapIntensityTransition = styleValue.getTransition();
1808
1808
  }
1809
1809
 
1810
- func setHeatmapColor(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1810
+ func setHeatmapColor(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1811
1811
  {
1812
1812
 
1813
1813
 
@@ -1816,7 +1816,7 @@ func setHeatmapColor(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1816
1816
 
1817
1817
  }
1818
1818
 
1819
- func setHeatmapOpacity(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1819
+ func setHeatmapOpacity(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1820
1820
  {
1821
1821
 
1822
1822
 
@@ -1825,19 +1825,19 @@ func setHeatmapOpacity(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue
1825
1825
 
1826
1826
  }
1827
1827
 
1828
- func setHeatmapOpacityTransition(_ layer: inout HeatmapLayer, styleValue: RCTMGLStyleValue)
1828
+ func setHeatmapOpacityTransition(_ layer: inout HeatmapLayer, styleValue: RNMBXStyleValue)
1829
1829
  {
1830
1830
  layer.heatmapOpacityTransition = styleValue.getTransition();
1831
1831
  }
1832
1832
 
1833
1833
 
1834
1834
 
1835
- func setFillExtrusionStyleLayerVisibility(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1835
+ func setFillExtrusionStyleLayerVisibility(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1836
1836
  {
1837
1837
  layer.visibility = styleValue.isVisible();
1838
1838
  }
1839
1839
 
1840
- func setFillExtrusionOpacity(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1840
+ func setFillExtrusionOpacity(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1841
1841
  {
1842
1842
 
1843
1843
 
@@ -1846,12 +1846,12 @@ func setFillExtrusionOpacity(_ layer: inout FillExtrusionLayer, styleValue: RCTM
1846
1846
 
1847
1847
  }
1848
1848
 
1849
- func setFillExtrusionOpacityTransition(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1849
+ func setFillExtrusionOpacityTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1850
1850
  {
1851
1851
  layer.fillExtrusionOpacityTransition = styleValue.getTransition();
1852
1852
  }
1853
1853
 
1854
- func setFillExtrusionColor(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1854
+ func setFillExtrusionColor(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1855
1855
  {
1856
1856
 
1857
1857
 
@@ -1860,12 +1860,12 @@ func setFillExtrusionColor(_ layer: inout FillExtrusionLayer, styleValue: RCTMGL
1860
1860
 
1861
1861
  }
1862
1862
 
1863
- func setFillExtrusionColorTransition(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1863
+ func setFillExtrusionColorTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1864
1864
  {
1865
1865
  layer.fillExtrusionColorTransition = styleValue.getTransition();
1866
1866
  }
1867
1867
 
1868
- func setFillExtrusionTranslate(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1868
+ func setFillExtrusionTranslate(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1869
1869
  {
1870
1870
 
1871
1871
 
@@ -1874,12 +1874,12 @@ func setFillExtrusionTranslate(_ layer: inout FillExtrusionLayer, styleValue: RC
1874
1874
 
1875
1875
  }
1876
1876
 
1877
- func setFillExtrusionTranslateTransition(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1877
+ func setFillExtrusionTranslateTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1878
1878
  {
1879
1879
  layer.fillExtrusionTranslateTransition = styleValue.getTransition();
1880
1880
  }
1881
1881
 
1882
- func setFillExtrusionTranslateAnchor(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1882
+ func setFillExtrusionTranslateAnchor(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1883
1883
  {
1884
1884
 
1885
1885
 
@@ -1888,7 +1888,7 @@ func setFillExtrusionTranslateAnchor(_ layer: inout FillExtrusionLayer, styleVal
1888
1888
 
1889
1889
  }
1890
1890
 
1891
- func setFillExtrusionPattern(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1891
+ func setFillExtrusionPattern(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1892
1892
  {
1893
1893
 
1894
1894
 
@@ -1897,7 +1897,7 @@ func setFillExtrusionPattern(_ layer: inout FillExtrusionLayer, styleValue: RCTM
1897
1897
 
1898
1898
  }
1899
1899
 
1900
- func setFillExtrusionHeight(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1900
+ func setFillExtrusionHeight(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1901
1901
  {
1902
1902
 
1903
1903
 
@@ -1906,12 +1906,12 @@ func setFillExtrusionHeight(_ layer: inout FillExtrusionLayer, styleValue: RCTMG
1906
1906
 
1907
1907
  }
1908
1908
 
1909
- func setFillExtrusionHeightTransition(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1909
+ func setFillExtrusionHeightTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1910
1910
  {
1911
1911
  layer.fillExtrusionHeightTransition = styleValue.getTransition();
1912
1912
  }
1913
1913
 
1914
- func setFillExtrusionBase(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1914
+ func setFillExtrusionBase(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1915
1915
  {
1916
1916
 
1917
1917
 
@@ -1920,12 +1920,12 @@ func setFillExtrusionBase(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLS
1920
1920
 
1921
1921
  }
1922
1922
 
1923
- func setFillExtrusionBaseTransition(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1923
+ func setFillExtrusionBaseTransition(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1924
1924
  {
1925
1925
  layer.fillExtrusionBaseTransition = styleValue.getTransition();
1926
1926
  }
1927
1927
 
1928
- func setFillExtrusionVerticalGradient(_ layer: inout FillExtrusionLayer, styleValue: RCTMGLStyleValue)
1928
+ func setFillExtrusionVerticalGradient(_ layer: inout FillExtrusionLayer, styleValue: RNMBXStyleValue)
1929
1929
  {
1930
1930
 
1931
1931
 
@@ -1936,12 +1936,12 @@ func setFillExtrusionVerticalGradient(_ layer: inout FillExtrusionLayer, styleVa
1936
1936
 
1937
1937
 
1938
1938
 
1939
- func setRasterStyleLayerVisibility(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1939
+ func setRasterStyleLayerVisibility(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1940
1940
  {
1941
1941
  layer.visibility = styleValue.isVisible();
1942
1942
  }
1943
1943
 
1944
- func setRasterOpacity(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1944
+ func setRasterOpacity(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1945
1945
  {
1946
1946
 
1947
1947
 
@@ -1950,12 +1950,12 @@ func setRasterOpacity(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1950
1950
 
1951
1951
  }
1952
1952
 
1953
- func setRasterOpacityTransition(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1953
+ func setRasterOpacityTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1954
1954
  {
1955
1955
  layer.rasterOpacityTransition = styleValue.getTransition();
1956
1956
  }
1957
1957
 
1958
- func setRasterHueRotate(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1958
+ func setRasterHueRotate(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1959
1959
  {
1960
1960
 
1961
1961
 
@@ -1964,12 +1964,12 @@ func setRasterHueRotate(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue
1964
1964
 
1965
1965
  }
1966
1966
 
1967
- func setRasterHueRotateTransition(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1967
+ func setRasterHueRotateTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1968
1968
  {
1969
1969
  layer.rasterHueRotateTransition = styleValue.getTransition();
1970
1970
  }
1971
1971
 
1972
- func setRasterBrightnessMin(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1972
+ func setRasterBrightnessMin(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1973
1973
  {
1974
1974
 
1975
1975
 
@@ -1978,12 +1978,12 @@ func setRasterBrightnessMin(_ layer: inout RasterLayer, styleValue: RCTMGLStyleV
1978
1978
 
1979
1979
  }
1980
1980
 
1981
- func setRasterBrightnessMinTransition(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1981
+ func setRasterBrightnessMinTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1982
1982
  {
1983
1983
  layer.rasterBrightnessMinTransition = styleValue.getTransition();
1984
1984
  }
1985
1985
 
1986
- func setRasterBrightnessMax(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1986
+ func setRasterBrightnessMax(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1987
1987
  {
1988
1988
 
1989
1989
 
@@ -1992,12 +1992,12 @@ func setRasterBrightnessMax(_ layer: inout RasterLayer, styleValue: RCTMGLStyleV
1992
1992
 
1993
1993
  }
1994
1994
 
1995
- func setRasterBrightnessMaxTransition(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
1995
+ func setRasterBrightnessMaxTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
1996
1996
  {
1997
1997
  layer.rasterBrightnessMaxTransition = styleValue.getTransition();
1998
1998
  }
1999
1999
 
2000
- func setRasterSaturation(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
2000
+ func setRasterSaturation(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
2001
2001
  {
2002
2002
 
2003
2003
 
@@ -2006,12 +2006,12 @@ func setRasterSaturation(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValu
2006
2006
 
2007
2007
  }
2008
2008
 
2009
- func setRasterSaturationTransition(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
2009
+ func setRasterSaturationTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
2010
2010
  {
2011
2011
  layer.rasterSaturationTransition = styleValue.getTransition();
2012
2012
  }
2013
2013
 
2014
- func setRasterContrast(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
2014
+ func setRasterContrast(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
2015
2015
  {
2016
2016
 
2017
2017
 
@@ -2020,12 +2020,12 @@ func setRasterContrast(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
2020
2020
 
2021
2021
  }
2022
2022
 
2023
- func setRasterContrastTransition(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
2023
+ func setRasterContrastTransition(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
2024
2024
  {
2025
2025
  layer.rasterContrastTransition = styleValue.getTransition();
2026
2026
  }
2027
2027
 
2028
- func setRasterResampling(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
2028
+ func setRasterResampling(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
2029
2029
  {
2030
2030
 
2031
2031
 
@@ -2034,7 +2034,7 @@ func setRasterResampling(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValu
2034
2034
 
2035
2035
  }
2036
2036
 
2037
- func setRasterFadeDuration(_ layer: inout RasterLayer, styleValue: RCTMGLStyleValue)
2037
+ func setRasterFadeDuration(_ layer: inout RasterLayer, styleValue: RNMBXStyleValue)
2038
2038
  {
2039
2039
 
2040
2040
 
@@ -2045,12 +2045,12 @@ func setRasterFadeDuration(_ layer: inout RasterLayer, styleValue: RCTMGLStyleVa
2045
2045
 
2046
2046
 
2047
2047
 
2048
- func setHillshadeStyleLayerVisibility(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2048
+ func setHillshadeStyleLayerVisibility(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2049
2049
  {
2050
2050
  layer.visibility = styleValue.isVisible();
2051
2051
  }
2052
2052
 
2053
- func setHillshadeIlluminationDirection(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2053
+ func setHillshadeIlluminationDirection(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2054
2054
  {
2055
2055
 
2056
2056
 
@@ -2059,7 +2059,7 @@ func setHillshadeIlluminationDirection(_ layer: inout HillshadeLayer, styleValue
2059
2059
 
2060
2060
  }
2061
2061
 
2062
- func setHillshadeIlluminationAnchor(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2062
+ func setHillshadeIlluminationAnchor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2063
2063
  {
2064
2064
 
2065
2065
 
@@ -2068,7 +2068,7 @@ func setHillshadeIlluminationAnchor(_ layer: inout HillshadeLayer, styleValue: R
2068
2068
 
2069
2069
  }
2070
2070
 
2071
- func setHillshadeExaggeration(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2071
+ func setHillshadeExaggeration(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2072
2072
  {
2073
2073
 
2074
2074
 
@@ -2077,12 +2077,12 @@ func setHillshadeExaggeration(_ layer: inout HillshadeLayer, styleValue: RCTMGLS
2077
2077
 
2078
2078
  }
2079
2079
 
2080
- func setHillshadeExaggerationTransition(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2080
+ func setHillshadeExaggerationTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2081
2081
  {
2082
2082
  layer.hillshadeExaggerationTransition = styleValue.getTransition();
2083
2083
  }
2084
2084
 
2085
- func setHillshadeShadowColor(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2085
+ func setHillshadeShadowColor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2086
2086
  {
2087
2087
 
2088
2088
 
@@ -2091,12 +2091,12 @@ func setHillshadeShadowColor(_ layer: inout HillshadeLayer, styleValue: RCTMGLSt
2091
2091
 
2092
2092
  }
2093
2093
 
2094
- func setHillshadeShadowColorTransition(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2094
+ func setHillshadeShadowColorTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2095
2095
  {
2096
2096
  layer.hillshadeShadowColorTransition = styleValue.getTransition();
2097
2097
  }
2098
2098
 
2099
- func setHillshadeHighlightColor(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2099
+ func setHillshadeHighlightColor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2100
2100
  {
2101
2101
 
2102
2102
 
@@ -2105,12 +2105,12 @@ func setHillshadeHighlightColor(_ layer: inout HillshadeLayer, styleValue: RCTMG
2105
2105
 
2106
2106
  }
2107
2107
 
2108
- func setHillshadeHighlightColorTransition(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2108
+ func setHillshadeHighlightColorTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2109
2109
  {
2110
2110
  layer.hillshadeHighlightColorTransition = styleValue.getTransition();
2111
2111
  }
2112
2112
 
2113
- func setHillshadeAccentColor(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2113
+ func setHillshadeAccentColor(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2114
2114
  {
2115
2115
 
2116
2116
 
@@ -2119,19 +2119,19 @@ func setHillshadeAccentColor(_ layer: inout HillshadeLayer, styleValue: RCTMGLSt
2119
2119
 
2120
2120
  }
2121
2121
 
2122
- func setHillshadeAccentColorTransition(_ layer: inout HillshadeLayer, styleValue: RCTMGLStyleValue)
2122
+ func setHillshadeAccentColorTransition(_ layer: inout HillshadeLayer, styleValue: RNMBXStyleValue)
2123
2123
  {
2124
2124
  layer.hillshadeAccentColorTransition = styleValue.getTransition();
2125
2125
  }
2126
2126
 
2127
2127
 
2128
2128
 
2129
- func setBackgroundStyleLayerVisibility(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleValue)
2129
+ func setBackgroundStyleLayerVisibility(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
2130
2130
  {
2131
2131
  layer.visibility = styleValue.isVisible();
2132
2132
  }
2133
2133
 
2134
- func setBackgroundColor(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleValue)
2134
+ func setBackgroundColor(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
2135
2135
  {
2136
2136
 
2137
2137
 
@@ -2140,12 +2140,12 @@ func setBackgroundColor(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleV
2140
2140
 
2141
2141
  }
2142
2142
 
2143
- func setBackgroundColorTransition(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleValue)
2143
+ func setBackgroundColorTransition(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
2144
2144
  {
2145
2145
  layer.backgroundColorTransition = styleValue.getTransition();
2146
2146
  }
2147
2147
 
2148
- func setBackgroundPattern(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleValue)
2148
+ func setBackgroundPattern(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
2149
2149
  {
2150
2150
 
2151
2151
 
@@ -2154,7 +2154,7 @@ func setBackgroundPattern(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyl
2154
2154
 
2155
2155
  }
2156
2156
 
2157
- func setBackgroundOpacity(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleValue)
2157
+ func setBackgroundOpacity(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
2158
2158
  {
2159
2159
 
2160
2160
 
@@ -2163,19 +2163,19 @@ func setBackgroundOpacity(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyl
2163
2163
 
2164
2164
  }
2165
2165
 
2166
- func setBackgroundOpacityTransition(_ layer: inout BackgroundLayer, styleValue: RCTMGLStyleValue)
2166
+ func setBackgroundOpacityTransition(_ layer: inout BackgroundLayer, styleValue: RNMBXStyleValue)
2167
2167
  {
2168
2168
  layer.backgroundOpacityTransition = styleValue.getTransition();
2169
2169
  }
2170
2170
 
2171
2171
 
2172
2172
 
2173
- func setSkyStyleLayerVisibility(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2173
+ func setSkyStyleLayerVisibility(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2174
2174
  {
2175
2175
  layer.visibility = styleValue.isVisible();
2176
2176
  }
2177
2177
 
2178
- func setSkyType(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2178
+ func setSkyType(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2179
2179
  {
2180
2180
 
2181
2181
 
@@ -2184,7 +2184,7 @@ func setSkyType(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2184
2184
 
2185
2185
  }
2186
2186
 
2187
- func setSkyAtmosphereSun(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2187
+ func setSkyAtmosphereSun(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2188
2188
  {
2189
2189
 
2190
2190
 
@@ -2193,7 +2193,7 @@ func setSkyAtmosphereSun(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2193
2193
 
2194
2194
  }
2195
2195
 
2196
- func setSkyAtmosphereSunIntensity(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2196
+ func setSkyAtmosphereSunIntensity(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2197
2197
  {
2198
2198
 
2199
2199
 
@@ -2202,7 +2202,7 @@ func setSkyAtmosphereSunIntensity(_ layer: inout SkyLayer, styleValue: RCTMGLSty
2202
2202
 
2203
2203
  }
2204
2204
 
2205
- func setSkyGradientCenter(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2205
+ func setSkyGradientCenter(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2206
2206
  {
2207
2207
 
2208
2208
 
@@ -2211,7 +2211,7 @@ func setSkyGradientCenter(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2211
2211
 
2212
2212
  }
2213
2213
 
2214
- func setSkyGradientRadius(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2214
+ func setSkyGradientRadius(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2215
2215
  {
2216
2216
 
2217
2217
 
@@ -2220,7 +2220,7 @@ func setSkyGradientRadius(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2220
2220
 
2221
2221
  }
2222
2222
 
2223
- func setSkyGradient(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2223
+ func setSkyGradient(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2224
2224
  {
2225
2225
 
2226
2226
 
@@ -2229,7 +2229,7 @@ func setSkyGradient(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2229
2229
 
2230
2230
  }
2231
2231
 
2232
- func setSkyAtmosphereHaloColor(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2232
+ func setSkyAtmosphereHaloColor(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2233
2233
  {
2234
2234
 
2235
2235
 
@@ -2238,7 +2238,7 @@ func setSkyAtmosphereHaloColor(_ layer: inout SkyLayer, styleValue: RCTMGLStyleV
2238
2238
 
2239
2239
  }
2240
2240
 
2241
- func setSkyAtmosphereColor(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2241
+ func setSkyAtmosphereColor(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2242
2242
  {
2243
2243
 
2244
2244
 
@@ -2247,7 +2247,7 @@ func setSkyAtmosphereColor(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue
2247
2247
 
2248
2248
  }
2249
2249
 
2250
- func setSkyOpacity(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2250
+ func setSkyOpacity(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2251
2251
  {
2252
2252
 
2253
2253
 
@@ -2256,14 +2256,14 @@ func setSkyOpacity(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2256
2256
 
2257
2257
  }
2258
2258
 
2259
- func setSkyOpacityTransition(_ layer: inout SkyLayer, styleValue: RCTMGLStyleValue)
2259
+ func setSkyOpacityTransition(_ layer: inout SkyLayer, styleValue: RNMBXStyleValue)
2260
2260
  {
2261
2261
  layer.skyOpacityTransition = styleValue.getTransition();
2262
2262
  }
2263
2263
 
2264
2264
 
2265
2265
 
2266
- func setAnchor(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2266
+ func setAnchor(_ layer: inout Light, styleValue: RNMBXStyleValue)
2267
2267
  {
2268
2268
 
2269
2269
 
@@ -2272,17 +2272,17 @@ func setAnchor(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2272
2272
 
2273
2273
  }
2274
2274
 
2275
- func setPosition(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2275
+ func setPosition(_ layer: inout Light, styleValue: RNMBXStyleValue)
2276
2276
  {
2277
2277
  layer.position = styleValue.getSphericalPosition();
2278
2278
  }
2279
2279
 
2280
- func setPositionTransition(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2280
+ func setPositionTransition(_ layer: inout Light, styleValue: RNMBXStyleValue)
2281
2281
  {
2282
2282
  layer.positionTransition = styleValue.getTransition();
2283
2283
  }
2284
2284
 
2285
- func setColor(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2285
+ func setColor(_ layer: inout Light, styleValue: RNMBXStyleValue)
2286
2286
  {
2287
2287
 
2288
2288
 
@@ -2291,12 +2291,12 @@ func setColor(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2291
2291
 
2292
2292
  }
2293
2293
 
2294
- func setColorTransition(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2294
+ func setColorTransition(_ layer: inout Light, styleValue: RNMBXStyleValue)
2295
2295
  {
2296
2296
  layer.colorTransition = styleValue.getTransition();
2297
2297
  }
2298
2298
 
2299
- func setIntensity(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2299
+ func setIntensity(_ layer: inout Light, styleValue: RNMBXStyleValue)
2300
2300
  {
2301
2301
 
2302
2302
 
@@ -2305,14 +2305,14 @@ func setIntensity(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2305
2305
 
2306
2306
  }
2307
2307
 
2308
- func setIntensityTransition(_ layer: inout Light, styleValue: RCTMGLStyleValue)
2308
+ func setIntensityTransition(_ layer: inout Light, styleValue: RNMBXStyleValue)
2309
2309
  {
2310
2310
  layer.intensityTransition = styleValue.getTransition();
2311
2311
  }
2312
2312
 
2313
2313
 
2314
2314
 
2315
- func setRange(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2315
+ func setRange(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2316
2316
  {
2317
2317
 
2318
2318
 
@@ -2321,12 +2321,12 @@ func setRange(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2321
2321
 
2322
2322
  }
2323
2323
 
2324
- func setRangeTransition(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2324
+ func setRangeTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2325
2325
  {
2326
2326
  layer.rangeTransition = styleValue.getTransition();
2327
2327
  }
2328
2328
 
2329
- func setColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2329
+ func setColor(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2330
2330
  {
2331
2331
 
2332
2332
 
@@ -2335,12 +2335,12 @@ func setColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2335
2335
 
2336
2336
  }
2337
2337
 
2338
- func setColorTransition(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2338
+ func setColorTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2339
2339
  {
2340
2340
  layer.colorTransition = styleValue.getTransition();
2341
2341
  }
2342
2342
 
2343
- func setHighColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2343
+ func setHighColor(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2344
2344
  {
2345
2345
 
2346
2346
 
@@ -2349,12 +2349,12 @@ func setHighColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2349
2349
 
2350
2350
  }
2351
2351
 
2352
- func setHighColorTransition(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2352
+ func setHighColorTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2353
2353
  {
2354
2354
  layer.highColorTransition = styleValue.getTransition();
2355
2355
  }
2356
2356
 
2357
- func setSpaceColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2357
+ func setSpaceColor(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2358
2358
  {
2359
2359
 
2360
2360
 
@@ -2363,12 +2363,12 @@ func setSpaceColor(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2363
2363
 
2364
2364
  }
2365
2365
 
2366
- func setSpaceColorTransition(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2366
+ func setSpaceColorTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2367
2367
  {
2368
2368
  layer.spaceColorTransition = styleValue.getTransition();
2369
2369
  }
2370
2370
 
2371
- func setHorizonBlend(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2371
+ func setHorizonBlend(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2372
2372
  {
2373
2373
 
2374
2374
 
@@ -2377,12 +2377,12 @@ func setHorizonBlend(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2377
2377
 
2378
2378
  }
2379
2379
 
2380
- func setHorizonBlendTransition(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2380
+ func setHorizonBlendTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2381
2381
  {
2382
2382
  layer.horizonBlendTransition = styleValue.getTransition();
2383
2383
  }
2384
2384
 
2385
- func setStarIntensity(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2385
+ func setStarIntensity(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2386
2386
  {
2387
2387
 
2388
2388
 
@@ -2391,14 +2391,14 @@ func setStarIntensity(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2391
2391
 
2392
2392
  }
2393
2393
 
2394
- func setStarIntensityTransition(_ layer: inout Atmosphere, styleValue: RCTMGLStyleValue)
2394
+ func setStarIntensityTransition(_ layer: inout Atmosphere, styleValue: RNMBXStyleValue)
2395
2395
  {
2396
2396
  layer.starIntensityTransition = styleValue.getTransition();
2397
2397
  }
2398
2398
 
2399
2399
 
2400
2400
 
2401
- func setExaggeration(_ layer: inout Terrain, styleValue: RCTMGLStyleValue)
2401
+ func setExaggeration(_ layer: inout Terrain, styleValue: RNMBXStyleValue)
2402
2402
  {
2403
2403
 
2404
2404