@maplibre/maplibre-react-native 10.0.0-alpha.9 → 10.0.0-beta.2

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 (1181) hide show
  1. package/LICENSE.md +2 -2
  2. package/README.md +51 -54
  3. package/android/build.gradle +51 -16
  4. package/android/src/main/AndroidManifest.xml +4 -0
  5. package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java +95 -0
  6. package/android/src/main/java/org/maplibre/reactnative/components/AbstractEvent.java +35 -0
  7. package/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java +84 -0
  8. package/android/src/main/java/org/maplibre/reactnative/components/AbstractMapFeature.java +15 -0
  9. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java +11 -0
  10. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java +18 -0
  11. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerView.java +112 -0
  12. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerViewManager.java +45 -0
  13. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotation.java +361 -0
  14. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java +84 -0
  15. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerView.java +23 -0
  16. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerViewManager.java +69 -0
  17. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java +245 -0
  18. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java +121 -0
  19. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java +68 -0
  20. package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCamera.java +530 -0
  21. package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCameraManager.java +101 -0
  22. package/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java +18 -0
  23. package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImages.java +234 -0
  24. package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImagesManager.java +103 -0
  25. package/android/src/main/java/org/maplibre/reactnative/components/location/LocationComponentManager.java +158 -0
  26. package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocation.java +76 -0
  27. package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocationManager.java +40 -0
  28. package/android/src/main/java/org/maplibre/reactnative/components/mapview/LayerSourceInfo.java +59 -0
  29. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java +13 -0
  30. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java +27 -0
  31. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java +1523 -0
  32. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java +349 -0
  33. package/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java +37 -0
  34. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java +79 -0
  35. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFactory.java +2286 -0
  36. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java +103 -0
  37. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java +208 -0
  38. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java +23 -0
  39. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java +60 -0
  40. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java +51 -0
  41. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java +73 -0
  42. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java +51 -0
  43. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java +76 -0
  44. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java +51 -0
  45. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java +76 -0
  46. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java +51 -0
  47. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java +73 -0
  48. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java +283 -0
  49. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java +51 -0
  50. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java +75 -0
  51. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java +23 -0
  52. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java +60 -0
  53. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java +51 -0
  54. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java +71 -0
  55. package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java +61 -0
  56. package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java +25 -0
  57. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java +77 -0
  58. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java +68 -0
  59. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java +41 -0
  60. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java +39 -0
  61. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java +312 -0
  62. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java +249 -0
  63. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java +240 -0
  64. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSource.java +97 -0
  65. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSourceManager.java +80 -0
  66. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java +60 -0
  67. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java +80 -0
  68. package/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java +62 -0
  69. package/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java +34 -0
  70. package/android/src/main/java/org/maplibre/reactnative/events/EventEmitter.java +45 -0
  71. package/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java +75 -0
  72. package/android/src/main/java/org/maplibre/reactnative/events/IEvent.java +14 -0
  73. package/android/src/main/java/org/maplibre/reactnative/events/ImageMissingEvent.java +42 -0
  74. package/android/src/main/java/org/maplibre/reactnative/events/LocationEvent.java +100 -0
  75. package/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java +43 -0
  76. package/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java +47 -0
  77. package/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java +32 -0
  78. package/android/src/main/java/org/maplibre/reactnative/events/OfflineEvent.java +25 -0
  79. package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java +42 -0
  80. package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationDragEvent.java +51 -0
  81. package/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java +35 -0
  82. package/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java +47 -0
  83. package/android/src/main/java/org/maplibre/reactnative/http/CustomHeadersInterceptor.java +38 -0
  84. package/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java +164 -0
  85. package/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java +59 -0
  86. package/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java +7 -0
  87. package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java +59 -0
  88. package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java +15 -0
  89. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLocationModule.java +158 -0
  90. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLogging.java +140 -0
  91. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java +344 -0
  92. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java +588 -0
  93. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.java +135 -0
  94. package/android/src/main/java/org/maplibre/reactnative/utils/BitmapUtils.java +125 -0
  95. package/android/src/main/java/org/maplibre/reactnative/utils/ClusterPropertyEntry.java +13 -0
  96. package/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java +253 -0
  97. package/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java +155 -0
  98. package/android/src/main/java/org/maplibre/reactnative/utils/ExpressionParser.java +74 -0
  99. package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java +205 -0
  100. package/android/src/main/java/org/maplibre/reactnative/utils/GeoViewport.java +37 -0
  101. package/android/src/main/java/org/maplibre/reactnative/utils/ImageEntry.java +25 -0
  102. package/android/src/main/java/org/maplibre/reactnative/utils/ResourceUtils.java +26 -0
  103. package/android/src/main/java/org/maplibre/reactnative/utils/SimpleEventCallback.java +26 -0
  104. package/android/src/main/java/org/maplibre/reactnative/utils/SphericalMercator.java +68 -0
  105. package/android/src/main/res/values/strings.xml +3 -0
  106. package/app.plugin.js +1 -1
  107. package/ios/MLRN/CameraMode.h +10 -0
  108. package/ios/MLRN/CameraMode.m +10 -0
  109. package/ios/MLRN/CameraStop.h +18 -0
  110. package/ios/MLRN/CameraStop.m +75 -0
  111. package/ios/MLRN/CameraUpdateItem.h +10 -0
  112. package/ios/MLRN/CameraUpdateItem.m +169 -0
  113. package/ios/MLRN/CameraUpdateQueue.h +13 -0
  114. package/ios/MLRN/CameraUpdateQueue.m +66 -0
  115. package/ios/MLRN/FilterParser.h +7 -0
  116. package/ios/MLRN/FilterParser.m +14 -0
  117. package/ios/MLRN/MLRN.h +5 -0
  118. package/ios/MLRN/MLRN.m +5 -0
  119. package/ios/MLRN/MLRNBackgroundLayer.h +6 -0
  120. package/ios/MLRN/MLRNBackgroundLayer.m +19 -0
  121. package/ios/MLRN/MLRNBackgroundLayerManager.h +5 -0
  122. package/ios/MLRN/MLRNBackgroundLayerManager.m +27 -0
  123. package/ios/MLRN/MLRNCallout.h +7 -0
  124. package/ios/MLRN/MLRNCallout.m +66 -0
  125. package/ios/MLRN/MLRNCalloutManager.h +5 -0
  126. package/ios/MLRN/MLRNCalloutManager.m +13 -0
  127. package/ios/MLRN/MLRNCamera.h +29 -0
  128. package/ios/MLRN/MLRNCamera.m +250 -0
  129. package/ios/MLRN/MLRNCameraManager.h +5 -0
  130. package/ios/MLRN/MLRNCameraManager.m +41 -0
  131. package/ios/MLRN/MLRNCircleLayer.h +5 -0
  132. package/ios/MLRN/MLRNCircleLayer.m +26 -0
  133. package/ios/MLRN/MLRNCircleLayerManager.h +5 -0
  134. package/ios/MLRN/MLRNCircleLayerManager.m +31 -0
  135. package/ios/MLRN/MLRNCustomHeaders.h +20 -0
  136. package/ios/MLRN/MLRNCustomHeaders.m +98 -0
  137. package/ios/MLRN/MLRNEvent.h +13 -0
  138. package/ios/MLRN/MLRNEvent.m +39 -0
  139. package/ios/MLRN/MLRNEventProtocol.h +8 -0
  140. package/ios/MLRN/MLRNEventTypes.h +42 -0
  141. package/ios/MLRN/MLRNEventTypes.m +41 -0
  142. package/ios/MLRN/MLRNFillExtrusionLayer.h +6 -0
  143. package/ios/MLRN/MLRNFillExtrusionLayer.m +24 -0
  144. package/ios/MLRN/MLRNFillExtrusionLayerManager.h +5 -0
  145. package/ios/MLRN/MLRNFillExtrusionLayerManager.m +31 -0
  146. package/ios/MLRN/MLRNFillLayer.h +6 -0
  147. package/ios/MLRN/MLRNFillLayer.m +25 -0
  148. package/ios/MLRN/MLRNFillLayerManager.h +5 -0
  149. package/ios/MLRN/MLRNFillLayerManager.m +29 -0
  150. package/ios/MLRN/MLRNHeatmapLayer.h +5 -0
  151. package/ios/MLRN/MLRNHeatmapLayer.m +24 -0
  152. package/ios/MLRN/MLRNHeatmapLayerManager.h +5 -0
  153. package/ios/MLRN/MLRNHeatmapLayerManager.m +31 -0
  154. package/ios/MLRN/MLRNImageQueue.h +11 -0
  155. package/ios/MLRN/MLRNImageQueue.m +49 -0
  156. package/ios/MLRN/MLRNImageQueueOperation.h +10 -0
  157. package/ios/MLRN/MLRNImageQueueOperation.m +130 -0
  158. package/ios/MLRN/MLRNImageSource.h +8 -0
  159. package/ios/MLRN/MLRNImageSource.m +52 -0
  160. package/ios/MLRN/MLRNImageSourceManager.h +5 -0
  161. package/ios/MLRN/MLRNImageSourceManager.m +17 -0
  162. package/ios/MLRN/MLRNImageUtils.h +9 -0
  163. package/ios/MLRN/MLRNImageUtils.m +23 -0
  164. package/ios/MLRN/MLRNImages.h +25 -0
  165. package/ios/MLRN/MLRNImages.m +126 -0
  166. package/ios/MLRN/MLRNImagesManager.h +5 -0
  167. package/ios/MLRN/MLRNImagesManager.m +21 -0
  168. package/ios/MLRN/MLRNLayer.h +44 -0
  169. package/ios/MLRN/MLRNLayer.m +228 -0
  170. package/ios/MLRN/MLRNLight.h +9 -0
  171. package/ios/MLRN/MLRNLight.m +38 -0
  172. package/ios/MLRN/MLRNLightManager.h +5 -0
  173. package/ios/MLRN/MLRNLightManager.m +15 -0
  174. package/ios/MLRN/MLRNLineLayer.h +6 -0
  175. package/ios/MLRN/MLRNLineLayer.m +25 -0
  176. package/ios/MLRN/MLRNLineLayerManager.h +5 -0
  177. package/ios/MLRN/MLRNLineLayerManager.m +32 -0
  178. package/ios/MLRN/MLRNLocation.h +11 -0
  179. package/ios/MLRN/MLRNLocation.m +24 -0
  180. package/ios/MLRN/MLRNLocationManager.h +22 -0
  181. package/ios/MLRN/MLRNLocationManager.m +172 -0
  182. package/ios/MLRN/MLRNLocationManagerDelegate.h +12 -0
  183. package/ios/MLRN/MLRNLocationModule.h +7 -0
  184. package/ios/MLRN/MLRNLocationModule.m +91 -0
  185. package/ios/MLRN/MLRNLogging.h +18 -0
  186. package/ios/MLRN/MLRNLogging.m +132 -0
  187. package/ios/MLRN/MLRNMapTouchEvent.h +17 -0
  188. package/ios/MLRN/MLRNMapTouchEvent.m +69 -0
  189. package/ios/MLRN/MLRNMapView.h +83 -0
  190. package/ios/MLRN/MLRNMapView.m +528 -0
  191. package/ios/MLRN/MLRNMapViewManager.h +9 -0
  192. package/ios/MLRN/MLRNMapViewManager.m +617 -0
  193. package/ios/MLRN/MLRNModule.h +5 -0
  194. package/ios/MLRN/MLRNModule.m +261 -0
  195. package/ios/MLRN/MLRNNativeUserLocation.h +11 -0
  196. package/ios/MLRN/MLRNNativeUserLocation.m +41 -0
  197. package/ios/MLRN/MLRNNativeUserLocationManager.h +5 -0
  198. package/ios/MLRN/MLRNNativeUserLocationManager.m +25 -0
  199. package/ios/MLRN/MLRNOfflineModule.h +11 -0
  200. package/ios/MLRN/MLRNOfflineModule.m +529 -0
  201. package/ios/MLRN/MLRNPointAnnotation.h +33 -0
  202. package/ios/MLRN/MLRNPointAnnotation.m +243 -0
  203. package/ios/MLRN/MLRNPointAnnotationManager.h +5 -0
  204. package/ios/MLRN/MLRNPointAnnotationManager.m +28 -0
  205. package/ios/MLRN/MLRNRasterLayer.h +6 -0
  206. package/ios/MLRN/MLRNRasterLayer.m +22 -0
  207. package/ios/MLRN/MLRNRasterLayerManager.h +5 -0
  208. package/ios/MLRN/MLRNRasterLayerManager.m +27 -0
  209. package/ios/MLRN/MLRNRasterSource.h +8 -0
  210. package/ios/MLRN/MLRNRasterSource.m +27 -0
  211. package/ios/MLRN/MLRNRasterSourceManager.h +5 -0
  212. package/ios/MLRN/MLRNRasterSourceManager.m +24 -0
  213. package/ios/MLRN/MLRNShapeSource.h +45 -0
  214. package/ios/MLRN/MLRNShapeSource.m +186 -0
  215. package/ios/MLRN/MLRNShapeSourceManager.h +6 -0
  216. package/ios/MLRN/MLRNShapeSourceManager.m +199 -0
  217. package/ios/MLRN/MLRNSnapshotModule.h +5 -0
  218. package/ios/MLRN/MLRNSnapshotModule.m +72 -0
  219. package/ios/MLRN/MLRNSource.h +27 -0
  220. package/ios/MLRN/MLRNSource.m +135 -0
  221. package/ios/MLRN/MLRNStyle.h +223 -0
  222. package/ios/MLRN/MLRNStyle.m +1682 -0
  223. package/ios/MLRN/MLRNStyleValue.h +19 -0
  224. package/ios/MLRN/MLRNStyleValue.m +159 -0
  225. package/ios/MLRN/MLRNSymbolLayer.h +11 -0
  226. package/ios/MLRN/MLRNSymbolLayer.m +113 -0
  227. package/ios/MLRN/MLRNSymbolLayerManager.h +5 -0
  228. package/ios/MLRN/MLRNSymbolLayerManager.m +32 -0
  229. package/ios/MLRN/MLRNTileSource.h +22 -0
  230. package/ios/MLRN/MLRNTileSource.m +31 -0
  231. package/ios/MLRN/MLRNUserLocation.h +15 -0
  232. package/ios/MLRN/MLRNUserLocation.m +38 -0
  233. package/ios/MLRN/MLRNUtils.h +23 -0
  234. package/ios/MLRN/MLRNUtils.m +210 -0
  235. package/ios/MLRN/MLRNVectorLayer.h +7 -0
  236. package/ios/MLRN/MLRNVectorLayer.m +51 -0
  237. package/ios/MLRN/MLRNVectorSource.h +8 -0
  238. package/ios/MLRN/MLRNVectorSource.m +20 -0
  239. package/ios/MLRN/MLRNVectorSourceManager.h +6 -0
  240. package/ios/MLRN/MLRNVectorSourceManager.m +71 -0
  241. package/ios/MLRN/ViewManager.h +8 -0
  242. package/ios/MLRN/ViewManager.m +55 -0
  243. package/ios/MLRN.xcodeproj/project.pbxproj +1 -0
  244. package/lib/commonjs/MLRNModule.js +27 -0
  245. package/lib/commonjs/MLRNModule.js.map +1 -0
  246. package/lib/commonjs/MapLibreRN.js +281 -0
  247. package/lib/commonjs/MapLibreRN.js.map +1 -0
  248. package/lib/commonjs/assets/png.d.js +2 -0
  249. package/lib/commonjs/assets/png.d.js.map +1 -0
  250. package/lib/commonjs/components/Annotation.js +109 -0
  251. package/lib/commonjs/components/Annotation.js.map +1 -0
  252. package/lib/commonjs/components/BackgroundLayer.js +33 -0
  253. package/lib/commonjs/components/BackgroundLayer.js.map +1 -0
  254. package/lib/commonjs/components/Callout.js +101 -0
  255. package/lib/commonjs/components/Callout.js.map +1 -0
  256. package/lib/commonjs/components/Camera.js +285 -0
  257. package/lib/commonjs/components/Camera.js.map +1 -0
  258. package/lib/commonjs/components/CircleLayer.js +37 -0
  259. package/lib/commonjs/components/CircleLayer.js.map +1 -0
  260. package/lib/commonjs/components/FillExtrusionLayer.js +36 -0
  261. package/lib/commonjs/components/FillExtrusionLayer.js.map +1 -0
  262. package/lib/commonjs/components/FillLayer.js +36 -0
  263. package/lib/commonjs/components/FillLayer.js.map +1 -0
  264. package/lib/commonjs/components/HeadingIndicator.js +28 -0
  265. package/lib/commonjs/components/HeadingIndicator.js.map +1 -0
  266. package/lib/commonjs/components/HeatmapLayer.js +35 -0
  267. package/lib/commonjs/components/HeatmapLayer.js.map +1 -0
  268. package/lib/commonjs/components/ImageSource.js +42 -0
  269. package/lib/commonjs/components/ImageSource.js.map +1 -0
  270. package/lib/commonjs/components/Images.js +80 -0
  271. package/lib/commonjs/components/Images.js.map +1 -0
  272. package/lib/commonjs/components/Light.js +32 -0
  273. package/lib/commonjs/components/Light.js.map +1 -0
  274. package/lib/commonjs/components/LineLayer.js +36 -0
  275. package/lib/commonjs/components/LineLayer.js.map +1 -0
  276. package/lib/commonjs/components/MapView.js +463 -0
  277. package/lib/commonjs/components/MapView.js.map +1 -0
  278. package/lib/commonjs/components/MarkerView.js +61 -0
  279. package/lib/commonjs/components/MarkerView.js.map +1 -0
  280. package/lib/commonjs/components/NativeUserLocation.js +17 -0
  281. package/lib/commonjs/components/NativeUserLocation.js.map +1 -0
  282. package/lib/commonjs/components/PointAnnotation.js +121 -0
  283. package/lib/commonjs/components/PointAnnotation.js.map +1 -0
  284. package/lib/commonjs/components/RasterLayer.js +32 -0
  285. package/lib/commonjs/components/RasterLayer.js.map +1 -0
  286. package/lib/commonjs/components/RasterSource.js +67 -0
  287. package/lib/commonjs/components/RasterSource.js.map +1 -0
  288. package/lib/commonjs/components/ShapeSource.js +203 -0
  289. package/lib/commonjs/components/ShapeSource.js.map +1 -0
  290. package/lib/commonjs/components/Style.js +266 -0
  291. package/lib/commonjs/components/Style.js.map +1 -0
  292. package/lib/commonjs/components/SymbolLayer.js +53 -0
  293. package/lib/commonjs/components/SymbolLayer.js.map +1 -0
  294. package/lib/commonjs/components/UserLocation.js +188 -0
  295. package/lib/commonjs/components/UserLocation.js.map +1 -0
  296. package/lib/commonjs/components/VectorSource.js +129 -0
  297. package/lib/commonjs/components/VectorSource.js.map +1 -0
  298. package/lib/commonjs/hooks/useAbstractLayer.js +53 -0
  299. package/lib/commonjs/hooks/useAbstractLayer.js.map +1 -0
  300. package/lib/commonjs/hooks/useAbstractSource.js +24 -0
  301. package/lib/commonjs/hooks/useAbstractSource.js.map +1 -0
  302. package/lib/commonjs/hooks/useNativeBridge.js +84 -0
  303. package/lib/commonjs/hooks/useNativeBridge.js.map +1 -0
  304. package/lib/commonjs/hooks/useNativeRef.js +14 -0
  305. package/lib/commonjs/hooks/useNativeRef.js.map +1 -0
  306. package/lib/commonjs/hooks/useOnce.js +16 -0
  307. package/lib/commonjs/hooks/useOnce.js.map +1 -0
  308. package/lib/commonjs/index.js +23 -0
  309. package/lib/commonjs/index.js.map +1 -0
  310. package/lib/commonjs/modules/location/locationManager.js +91 -0
  311. package/lib/commonjs/modules/location/locationManager.js.map +1 -0
  312. package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js +37 -0
  313. package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js.map +1 -0
  314. package/lib/commonjs/modules/offline/OfflinePack.js +40 -0
  315. package/lib/commonjs/modules/offline/OfflinePack.js.map +1 -0
  316. package/lib/commonjs/modules/offline/offlineManager.js +346 -0
  317. package/lib/commonjs/modules/offline/offlineManager.js.map +1 -0
  318. package/lib/commonjs/modules/snapshot/SnapshotOptions.js +58 -0
  319. package/lib/commonjs/modules/snapshot/SnapshotOptions.js.map +1 -0
  320. package/lib/commonjs/modules/snapshot/snapshotManager.js +66 -0
  321. package/lib/commonjs/modules/snapshot/snapshotManager.js.map +1 -0
  322. package/lib/commonjs/requestAndroidLocationPermissions.js +25 -0
  323. package/lib/commonjs/requestAndroidLocationPermissions.js.map +1 -0
  324. package/lib/commonjs/types/BaseProps.js +2 -0
  325. package/lib/commonjs/types/BaseProps.js.map +1 -0
  326. package/lib/commonjs/types/CameraMode.js +14 -0
  327. package/lib/commonjs/types/CameraMode.js.map +1 -0
  328. package/lib/commonjs/types/MapLibreRNEvent.js +6 -0
  329. package/lib/commonjs/types/MapLibreRNEvent.js.map +1 -0
  330. package/lib/commonjs/types/OnPressEvent.js +2 -0
  331. package/lib/commonjs/types/OnPressEvent.js.map +1 -0
  332. package/lib/commonjs/types/StyleURL.js +11 -0
  333. package/lib/commonjs/types/StyleURL.js.map +1 -0
  334. package/lib/commonjs/utils/BridgeValue.js +59 -0
  335. package/lib/commonjs/utils/BridgeValue.js.map +1 -0
  336. package/lib/commonjs/utils/Logger.js +116 -0
  337. package/lib/commonjs/utils/Logger.js.map +1 -0
  338. package/lib/commonjs/utils/MapLibreRNStyles.d.js +181 -0
  339. package/lib/commonjs/utils/MapLibreRNStyles.d.js.map +1 -0
  340. package/lib/commonjs/utils/StyleValue.js +39 -0
  341. package/lib/commonjs/utils/StyleValue.js.map +1 -0
  342. package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js +95 -0
  343. package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
  344. package/lib/commonjs/utils/animated/Animated.js +47 -0
  345. package/lib/commonjs/utils/animated/Animated.js.map +1 -0
  346. package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js +92 -0
  347. package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
  348. package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js +40 -0
  349. package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
  350. package/lib/commonjs/utils/animated/AnimatedPoint.js +111 -0
  351. package/lib/commonjs/utils/animated/AnimatedPoint.js.map +1 -0
  352. package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +137 -0
  353. package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
  354. package/lib/commonjs/utils/animated/AnimatedShape.js +75 -0
  355. package/lib/commonjs/utils/animated/AnimatedShape.js.map +1 -0
  356. package/lib/commonjs/utils/deprecation.js +31 -0
  357. package/lib/commonjs/utils/deprecation.js.map +1 -0
  358. package/lib/commonjs/utils/filterUtils.js +13 -0
  359. package/lib/commonjs/utils/filterUtils.js.map +1 -0
  360. package/lib/commonjs/utils/index.js +84 -0
  361. package/lib/commonjs/utils/index.js.map +1 -0
  362. package/lib/commonjs/utils/makeNativeBounds.js +11 -0
  363. package/lib/commonjs/utils/makeNativeBounds.js.map +1 -0
  364. package/lib/commonjs/utils/styleMap.js +255 -0
  365. package/lib/commonjs/utils/styleMap.js.map +1 -0
  366. package/lib/module/MLRNModule.js +15 -0
  367. package/lib/module/MLRNModule.js.map +1 -0
  368. package/lib/module/MapLibreRN.js +37 -0
  369. package/lib/module/MapLibreRN.js.map +1 -0
  370. package/lib/module/assets/heading.png +0 -0
  371. package/lib/module/assets/heading@2x.png +0 -0
  372. package/lib/module/assets/heading@3x.png +0 -0
  373. package/lib/module/assets/png.d.js +2 -0
  374. package/lib/module/assets/png.d.js.map +1 -0
  375. package/lib/module/components/Annotation.js +104 -0
  376. package/lib/module/components/Annotation.js.map +1 -0
  377. package/lib/module/components/BackgroundLayer.js +28 -0
  378. package/lib/module/components/BackgroundLayer.js.map +1 -0
  379. package/lib/module/components/Callout.js +97 -0
  380. package/lib/module/components/Callout.js.map +1 -0
  381. package/lib/module/components/Camera.js +280 -0
  382. package/lib/module/components/Camera.js.map +1 -0
  383. package/lib/module/components/CircleLayer.js +32 -0
  384. package/lib/module/components/CircleLayer.js.map +1 -0
  385. package/lib/module/components/FillExtrusionLayer.js +31 -0
  386. package/lib/module/components/FillExtrusionLayer.js.map +1 -0
  387. package/lib/module/components/FillLayer.js +31 -0
  388. package/lib/module/components/FillLayer.js.map +1 -0
  389. package/lib/module/components/HeadingIndicator.js +23 -0
  390. package/lib/module/components/HeadingIndicator.js.map +1 -0
  391. package/lib/module/components/HeatmapLayer.js +30 -0
  392. package/lib/module/components/HeatmapLayer.js.map +1 -0
  393. package/lib/module/components/ImageSource.js +37 -0
  394. package/lib/module/components/ImageSource.js.map +1 -0
  395. package/lib/module/components/Images.js +76 -0
  396. package/lib/module/components/Images.js.map +1 -0
  397. package/lib/module/components/Light.js +27 -0
  398. package/lib/module/components/Light.js.map +1 -0
  399. package/lib/module/components/LineLayer.js +31 -0
  400. package/lib/module/components/LineLayer.js.map +1 -0
  401. package/lib/module/components/MapView.js +458 -0
  402. package/lib/module/components/MapView.js.map +1 -0
  403. package/lib/module/components/MarkerView.js +56 -0
  404. package/lib/module/components/MarkerView.js.map +1 -0
  405. package/lib/module/components/NativeUserLocation.js +13 -0
  406. package/lib/module/components/NativeUserLocation.js.map +1 -0
  407. package/lib/module/components/PointAnnotation.js +116 -0
  408. package/lib/module/components/PointAnnotation.js.map +1 -0
  409. package/lib/module/components/RasterLayer.js +27 -0
  410. package/lib/module/components/RasterLayer.js.map +1 -0
  411. package/lib/module/components/RasterSource.js +62 -0
  412. package/lib/module/components/RasterSource.js.map +1 -0
  413. package/lib/module/components/ShapeSource.js +198 -0
  414. package/lib/module/components/ShapeSource.js.map +1 -0
  415. package/lib/module/components/Style.js +261 -0
  416. package/lib/module/components/Style.js.map +1 -0
  417. package/lib/module/components/SymbolLayer.js +48 -0
  418. package/lib/module/components/SymbolLayer.js.map +1 -0
  419. package/lib/module/components/UserLocation.js +182 -0
  420. package/lib/module/components/UserLocation.js.map +1 -0
  421. package/lib/module/components/VectorSource.js +124 -0
  422. package/lib/module/components/VectorSource.js.map +1 -0
  423. package/lib/module/hooks/useAbstractLayer.js +49 -0
  424. package/lib/module/hooks/useAbstractLayer.js.map +1 -0
  425. package/lib/module/hooks/useAbstractSource.js +20 -0
  426. package/lib/module/hooks/useAbstractSource.js.map +1 -0
  427. package/lib/module/hooks/useNativeBridge.js +80 -0
  428. package/lib/module/hooks/useNativeBridge.js.map +1 -0
  429. package/lib/module/hooks/useNativeRef.js +10 -0
  430. package/lib/module/hooks/useNativeRef.js.map +1 -0
  431. package/lib/module/hooks/useOnce.js +12 -0
  432. package/lib/module/hooks/useOnce.js.map +1 -0
  433. package/lib/module/index.js +6 -0
  434. package/lib/module/index.js.map +1 -0
  435. package/lib/module/modules/location/locationManager.js +87 -0
  436. package/lib/module/modules/location/locationManager.js.map +1 -0
  437. package/lib/module/modules/offline/OfflineCreatePackOptions.js +33 -0
  438. package/lib/module/modules/offline/OfflineCreatePackOptions.js.map +1 -0
  439. package/lib/module/modules/offline/OfflinePack.js +36 -0
  440. package/lib/module/modules/offline/OfflinePack.js.map +1 -0
  441. package/lib/module/modules/offline/offlineManager.js +341 -0
  442. package/lib/module/modules/offline/offlineManager.js.map +1 -0
  443. package/lib/module/modules/snapshot/SnapshotOptions.js +53 -0
  444. package/lib/module/modules/snapshot/SnapshotOptions.js.map +1 -0
  445. package/lib/module/modules/snapshot/snapshotManager.js +61 -0
  446. package/lib/module/modules/snapshot/snapshotManager.js.map +1 -0
  447. package/lib/module/requestAndroidLocationPermissions.js +21 -0
  448. package/lib/module/requestAndroidLocationPermissions.js.map +1 -0
  449. package/lib/module/types/BaseProps.js +2 -0
  450. package/lib/module/types/BaseProps.js.map +1 -0
  451. package/lib/module/types/CameraMode.js +10 -0
  452. package/lib/module/types/CameraMode.js.map +1 -0
  453. package/lib/module/types/MapLibreRNEvent.js +4 -0
  454. package/lib/module/types/MapLibreRNEvent.js.map +1 -0
  455. package/lib/module/types/OnPressEvent.js +2 -0
  456. package/lib/module/types/OnPressEvent.js.map +1 -0
  457. package/lib/module/types/StyleURL.js +7 -0
  458. package/lib/module/types/StyleURL.js.map +1 -0
  459. package/lib/module/utils/BridgeValue.js +54 -0
  460. package/lib/module/utils/BridgeValue.js.map +1 -0
  461. package/lib/module/utils/Logger.js +112 -0
  462. package/lib/module/utils/Logger.js.map +1 -0
  463. package/lib/module/utils/MapLibreRNStyles.d.js +180 -0
  464. package/lib/module/utils/MapLibreRNStyles.d.js.map +1 -0
  465. package/lib/module/utils/StyleValue.js +34 -0
  466. package/lib/module/utils/StyleValue.js.map +1 -0
  467. package/lib/module/utils/animated/AbstractAnimatedCoordinates.js +92 -0
  468. package/lib/module/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
  469. package/lib/module/utils/animated/Animated.js +42 -0
  470. package/lib/module/utils/animated/Animated.js.map +1 -0
  471. package/lib/module/utils/animated/AnimatedCoordinatesArray.js +87 -0
  472. package/lib/module/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
  473. package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js +36 -0
  474. package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
  475. package/lib/module/utils/animated/AnimatedPoint.js +107 -0
  476. package/lib/module/utils/animated/AnimatedPoint.js.map +1 -0
  477. package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +131 -0
  478. package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
  479. package/lib/module/utils/animated/AnimatedShape.js +71 -0
  480. package/lib/module/utils/animated/AnimatedShape.js.map +1 -0
  481. package/lib/module/utils/deprecation.js +27 -0
  482. package/lib/module/utils/deprecation.js.map +1 -0
  483. package/lib/module/utils/filterUtils.js +9 -0
  484. package/lib/module/utils/filterUtils.js.map +1 -0
  485. package/lib/module/utils/index.js +69 -0
  486. package/lib/module/utils/index.js.map +1 -0
  487. package/lib/module/utils/makeNativeBounds.js +7 -0
  488. package/lib/module/utils/makeNativeBounds.js.map +1 -0
  489. package/lib/module/utils/styleMap.js +249 -0
  490. package/lib/module/utils/styleMap.js.map +1 -0
  491. package/lib/typescript/commonjs/jest.config.d.ts +2 -0
  492. package/lib/typescript/commonjs/jest.config.d.ts.map +1 -0
  493. package/lib/typescript/commonjs/package.json +1 -0
  494. package/lib/typescript/commonjs/src/MLRNModule.d.ts +21 -0
  495. package/lib/typescript/commonjs/src/MLRNModule.d.ts.map +1 -0
  496. package/lib/typescript/commonjs/src/MapLibreRN.d.ts +42 -0
  497. package/lib/typescript/commonjs/src/MapLibreRN.d.ts.map +1 -0
  498. package/lib/typescript/commonjs/src/components/Annotation.d.ts +21 -0
  499. package/lib/typescript/commonjs/src/components/Annotation.d.ts.map +1 -0
  500. package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts +14 -0
  501. package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts.map +1 -0
  502. package/lib/typescript/commonjs/src/components/Callout.d.ts +35 -0
  503. package/lib/typescript/commonjs/src/components/Callout.d.ts.map +1 -0
  504. package/lib/typescript/commonjs/src/components/Camera.d.ts +134 -0
  505. package/lib/typescript/commonjs/src/components/Camera.d.ts.map +1 -0
  506. package/lib/typescript/commonjs/src/components/CircleLayer.d.ts +17 -0
  507. package/lib/typescript/commonjs/src/components/CircleLayer.d.ts.map +1 -0
  508. package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts +17 -0
  509. package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts.map +1 -0
  510. package/lib/typescript/commonjs/src/components/FillLayer.d.ts +17 -0
  511. package/lib/typescript/commonjs/src/components/FillLayer.d.ts.map +1 -0
  512. package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts +8 -0
  513. package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts.map +1 -0
  514. package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts +17 -0
  515. package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts.map +1 -0
  516. package/lib/typescript/commonjs/src/components/ImageSource.d.ts +31 -0
  517. package/lib/typescript/commonjs/src/components/ImageSource.d.ts.map +1 -0
  518. package/lib/typescript/commonjs/src/components/Images.d.ts +33 -0
  519. package/lib/typescript/commonjs/src/components/Images.d.ts.map +1 -0
  520. package/lib/typescript/commonjs/src/components/Light.d.ts +17 -0
  521. package/lib/typescript/commonjs/src/components/Light.d.ts.map +1 -0
  522. package/lib/typescript/commonjs/src/components/LineLayer.d.ts +17 -0
  523. package/lib/typescript/commonjs/src/components/LineLayer.d.ts.map +1 -0
  524. package/lib/typescript/commonjs/src/components/MapView.d.ts +235 -0
  525. package/lib/typescript/commonjs/src/components/MapView.d.ts.map +1 -0
  526. package/lib/typescript/commonjs/src/components/MarkerView.d.ts +44 -0
  527. package/lib/typescript/commonjs/src/components/MarkerView.d.ts.map +1 -0
  528. package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts +26 -0
  529. package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts.map +1 -0
  530. package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts +91 -0
  531. package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts.map +1 -0
  532. package/lib/typescript/commonjs/src/components/RasterLayer.d.ts +14 -0
  533. package/lib/typescript/commonjs/src/components/RasterLayer.d.ts.map +1 -0
  534. package/lib/typescript/commonjs/src/components/RasterSource.d.ts +53 -0
  535. package/lib/typescript/commonjs/src/components/RasterSource.d.ts.map +1 -0
  536. package/lib/typescript/commonjs/src/components/ShapeSource.d.ts +124 -0
  537. package/lib/typescript/commonjs/src/components/ShapeSource.d.ts.map +1 -0
  538. package/lib/typescript/commonjs/src/components/Style.d.ts +81 -0
  539. package/lib/typescript/commonjs/src/components/Style.d.ts.map +1 -0
  540. package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts +22 -0
  541. package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts.map +1 -0
  542. package/lib/typescript/commonjs/src/components/UserLocation.d.ts +70 -0
  543. package/lib/typescript/commonjs/src/components/UserLocation.d.ts.map +1 -0
  544. package/lib/typescript/commonjs/src/components/VectorSource.d.ts +70 -0
  545. package/lib/typescript/commonjs/src/components/VectorSource.d.ts.map +1 -0
  546. package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts +62 -0
  547. package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts.map +1 -0
  548. package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts +7 -0
  549. package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts.map +1 -0
  550. package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts +21 -0
  551. package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts.map +1 -0
  552. package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts +8 -0
  553. package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts.map +1 -0
  554. package/lib/typescript/commonjs/src/hooks/useOnce.d.ts +3 -0
  555. package/lib/typescript/commonjs/src/hooks/useOnce.d.ts.map +1 -0
  556. package/lib/typescript/commonjs/src/index.d.ts +4 -0
  557. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  558. package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts +64 -0
  559. package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts.map +1 -0
  560. package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts +21 -0
  561. package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -0
  562. package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts +24 -0
  563. package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts.map +1 -0
  564. package/lib/typescript/commonjs/src/modules/offline/offlineManager.d.ts +210 -0
  565. package/lib/typescript/commonjs/src/modules/offline/offlineManager.d.ts.map +1 -0
  566. package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts +42 -0
  567. package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -0
  568. package/lib/typescript/commonjs/src/modules/snapshot/snapshotManager.d.ts +52 -0
  569. package/lib/typescript/commonjs/src/modules/snapshot/snapshotManager.d.ts.map +1 -0
  570. package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts +2 -0
  571. package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts.map +1 -0
  572. package/lib/typescript/commonjs/src/types/BaseProps.d.ts +4 -0
  573. package/lib/typescript/commonjs/src/types/BaseProps.d.ts.map +1 -0
  574. package/lib/typescript/commonjs/src/types/CameraMode.d.ts +7 -0
  575. package/lib/typescript/commonjs/src/types/CameraMode.d.ts.map +1 -0
  576. package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts +6 -0
  577. package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts.map +1 -0
  578. package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts +12 -0
  579. package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts.map +1 -0
  580. package/lib/typescript/commonjs/src/types/StyleURL.d.ts +4 -0
  581. package/lib/typescript/commonjs/src/types/StyleURL.d.ts.map +1 -0
  582. package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts +29 -0
  583. package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts.map +1 -0
  584. package/lib/typescript/commonjs/src/utils/Logger.d.ts +52 -0
  585. package/lib/typescript/commonjs/src/utils/Logger.d.ts.map +1 -0
  586. package/lib/typescript/commonjs/src/utils/StyleValue.d.ts +10 -0
  587. package/lib/typescript/commonjs/src/utils/StyleValue.d.ts.map +1 -0
  588. package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts +37 -0
  589. package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  590. package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts +33 -0
  591. package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +1 -0
  592. package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
  593. package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  594. package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +12 -0
  595. package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  596. package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts +32 -0
  597. package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts.map +1 -0
  598. package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +54 -0
  599. package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  600. package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts +28 -0
  601. package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts.map +1 -0
  602. package/lib/typescript/commonjs/src/utils/deprecation.d.ts +6 -0
  603. package/lib/typescript/commonjs/src/utils/deprecation.d.ts.map +1 -0
  604. package/lib/typescript/commonjs/src/utils/filterUtils.d.ts +3 -0
  605. package/lib/typescript/commonjs/src/utils/filterUtils.d.ts.map +1 -0
  606. package/lib/typescript/commonjs/src/utils/index.d.ts +20 -0
  607. package/lib/typescript/commonjs/src/utils/index.d.ts.map +1 -0
  608. package/lib/typescript/commonjs/src/utils/makeNativeBounds.d.ts +2 -0
  609. package/lib/typescript/commonjs/src/utils/makeNativeBounds.d.ts.map +1 -0
  610. package/lib/typescript/commonjs/src/utils/styleMap.d.ts +231 -0
  611. package/lib/typescript/commonjs/src/utils/styleMap.d.ts.map +1 -0
  612. package/lib/typescript/module/jest.config.d.ts +2 -0
  613. package/lib/typescript/module/jest.config.d.ts.map +1 -0
  614. package/lib/typescript/module/package.json +1 -0
  615. package/lib/typescript/module/src/MLRNModule.d.ts +21 -0
  616. package/lib/typescript/module/src/MLRNModule.d.ts.map +1 -0
  617. package/lib/typescript/module/src/MapLibreRN.d.ts +42 -0
  618. package/lib/typescript/module/src/MapLibreRN.d.ts.map +1 -0
  619. package/lib/typescript/module/src/components/Annotation.d.ts +21 -0
  620. package/lib/typescript/module/src/components/Annotation.d.ts.map +1 -0
  621. package/lib/typescript/module/src/components/BackgroundLayer.d.ts +14 -0
  622. package/lib/typescript/module/src/components/BackgroundLayer.d.ts.map +1 -0
  623. package/lib/typescript/module/src/components/Callout.d.ts +35 -0
  624. package/lib/typescript/module/src/components/Callout.d.ts.map +1 -0
  625. package/lib/typescript/module/src/components/Camera.d.ts +134 -0
  626. package/lib/typescript/module/src/components/Camera.d.ts.map +1 -0
  627. package/lib/typescript/module/src/components/CircleLayer.d.ts +17 -0
  628. package/lib/typescript/module/src/components/CircleLayer.d.ts.map +1 -0
  629. package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts +17 -0
  630. package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts.map +1 -0
  631. package/lib/typescript/module/src/components/FillLayer.d.ts +17 -0
  632. package/lib/typescript/module/src/components/FillLayer.d.ts.map +1 -0
  633. package/lib/typescript/module/src/components/HeadingIndicator.d.ts +8 -0
  634. package/lib/typescript/module/src/components/HeadingIndicator.d.ts.map +1 -0
  635. package/lib/typescript/module/src/components/HeatmapLayer.d.ts +17 -0
  636. package/lib/typescript/module/src/components/HeatmapLayer.d.ts.map +1 -0
  637. package/lib/typescript/module/src/components/ImageSource.d.ts +31 -0
  638. package/lib/typescript/module/src/components/ImageSource.d.ts.map +1 -0
  639. package/lib/typescript/module/src/components/Images.d.ts +33 -0
  640. package/lib/typescript/module/src/components/Images.d.ts.map +1 -0
  641. package/lib/typescript/module/src/components/Light.d.ts +17 -0
  642. package/lib/typescript/module/src/components/Light.d.ts.map +1 -0
  643. package/lib/typescript/module/src/components/LineLayer.d.ts +17 -0
  644. package/lib/typescript/module/src/components/LineLayer.d.ts.map +1 -0
  645. package/lib/typescript/module/src/components/MapView.d.ts +235 -0
  646. package/lib/typescript/module/src/components/MapView.d.ts.map +1 -0
  647. package/lib/typescript/module/src/components/MarkerView.d.ts +44 -0
  648. package/lib/typescript/module/src/components/MarkerView.d.ts.map +1 -0
  649. package/lib/typescript/module/src/components/NativeUserLocation.d.ts +26 -0
  650. package/lib/typescript/module/src/components/NativeUserLocation.d.ts.map +1 -0
  651. package/lib/typescript/module/src/components/PointAnnotation.d.ts +91 -0
  652. package/lib/typescript/module/src/components/PointAnnotation.d.ts.map +1 -0
  653. package/lib/typescript/module/src/components/RasterLayer.d.ts +14 -0
  654. package/lib/typescript/module/src/components/RasterLayer.d.ts.map +1 -0
  655. package/lib/typescript/module/src/components/RasterSource.d.ts +53 -0
  656. package/lib/typescript/module/src/components/RasterSource.d.ts.map +1 -0
  657. package/lib/typescript/module/src/components/ShapeSource.d.ts +124 -0
  658. package/lib/typescript/module/src/components/ShapeSource.d.ts.map +1 -0
  659. package/lib/typescript/module/src/components/Style.d.ts +81 -0
  660. package/lib/typescript/module/src/components/Style.d.ts.map +1 -0
  661. package/lib/typescript/module/src/components/SymbolLayer.d.ts +22 -0
  662. package/lib/typescript/module/src/components/SymbolLayer.d.ts.map +1 -0
  663. package/lib/typescript/module/src/components/UserLocation.d.ts +70 -0
  664. package/lib/typescript/module/src/components/UserLocation.d.ts.map +1 -0
  665. package/lib/typescript/module/src/components/VectorSource.d.ts +70 -0
  666. package/lib/typescript/module/src/components/VectorSource.d.ts.map +1 -0
  667. package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts +62 -0
  668. package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts.map +1 -0
  669. package/lib/typescript/module/src/hooks/useAbstractSource.d.ts +7 -0
  670. package/lib/typescript/module/src/hooks/useAbstractSource.d.ts.map +1 -0
  671. package/lib/typescript/module/src/hooks/useNativeBridge.d.ts +21 -0
  672. package/lib/typescript/module/src/hooks/useNativeBridge.d.ts.map +1 -0
  673. package/lib/typescript/module/src/hooks/useNativeRef.d.ts +8 -0
  674. package/lib/typescript/module/src/hooks/useNativeRef.d.ts.map +1 -0
  675. package/lib/typescript/module/src/hooks/useOnce.d.ts +3 -0
  676. package/lib/typescript/module/src/hooks/useOnce.d.ts.map +1 -0
  677. package/lib/typescript/module/src/index.d.ts +4 -0
  678. package/lib/typescript/module/src/index.d.ts.map +1 -0
  679. package/lib/typescript/module/src/modules/location/locationManager.d.ts +64 -0
  680. package/lib/typescript/module/src/modules/location/locationManager.d.ts.map +1 -0
  681. package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts +21 -0
  682. package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -0
  683. package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts +24 -0
  684. package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts.map +1 -0
  685. package/lib/typescript/module/src/modules/offline/offlineManager.d.ts +210 -0
  686. package/lib/typescript/module/src/modules/offline/offlineManager.d.ts.map +1 -0
  687. package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts +42 -0
  688. package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -0
  689. package/lib/typescript/module/src/modules/snapshot/snapshotManager.d.ts +52 -0
  690. package/lib/typescript/module/src/modules/snapshot/snapshotManager.d.ts.map +1 -0
  691. package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts +2 -0
  692. package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts.map +1 -0
  693. package/lib/typescript/module/src/types/BaseProps.d.ts +4 -0
  694. package/lib/typescript/module/src/types/BaseProps.d.ts.map +1 -0
  695. package/lib/typescript/module/src/types/CameraMode.d.ts +7 -0
  696. package/lib/typescript/module/src/types/CameraMode.d.ts.map +1 -0
  697. package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts +6 -0
  698. package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts.map +1 -0
  699. package/lib/typescript/module/src/types/OnPressEvent.d.ts +12 -0
  700. package/lib/typescript/module/src/types/OnPressEvent.d.ts.map +1 -0
  701. package/lib/typescript/module/src/types/StyleURL.d.ts +4 -0
  702. package/lib/typescript/module/src/types/StyleURL.d.ts.map +1 -0
  703. package/lib/typescript/module/src/utils/BridgeValue.d.ts +29 -0
  704. package/lib/typescript/module/src/utils/BridgeValue.d.ts.map +1 -0
  705. package/lib/typescript/module/src/utils/Logger.d.ts +52 -0
  706. package/lib/typescript/module/src/utils/Logger.d.ts.map +1 -0
  707. package/lib/typescript/module/src/utils/StyleValue.d.ts +10 -0
  708. package/lib/typescript/module/src/utils/StyleValue.d.ts.map +1 -0
  709. package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts +37 -0
  710. package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  711. package/lib/typescript/module/src/utils/animated/Animated.d.ts +33 -0
  712. package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +1 -0
  713. package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
  714. package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  715. package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +12 -0
  716. package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  717. package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts +32 -0
  718. package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts.map +1 -0
  719. package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +54 -0
  720. package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  721. package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts +28 -0
  722. package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts.map +1 -0
  723. package/lib/typescript/module/src/utils/deprecation.d.ts +6 -0
  724. package/lib/typescript/module/src/utils/deprecation.d.ts.map +1 -0
  725. package/lib/typescript/module/src/utils/filterUtils.d.ts +3 -0
  726. package/lib/typescript/module/src/utils/filterUtils.d.ts.map +1 -0
  727. package/lib/typescript/module/src/utils/index.d.ts +20 -0
  728. package/lib/typescript/module/src/utils/index.d.ts.map +1 -0
  729. package/lib/typescript/module/src/utils/makeNativeBounds.d.ts +2 -0
  730. package/lib/typescript/module/src/utils/makeNativeBounds.d.ts.map +1 -0
  731. package/lib/typescript/module/src/utils/styleMap.d.ts +231 -0
  732. package/lib/typescript/module/src/utils/styleMap.d.ts.map +1 -0
  733. package/maplibre-react-native.podspec +14 -14
  734. package/package.json +141 -110
  735. package/plugin/build/withMapLibre.d.ts +1 -1
  736. package/plugin/build/withMapLibre.js +31 -17
  737. package/src/MLRNModule.ts +46 -0
  738. package/src/MapLibreRN.ts +70 -0
  739. package/src/assets/heading.png +0 -0
  740. package/src/assets/heading@2x.png +0 -0
  741. package/src/assets/heading@3x.png +0 -0
  742. package/src/components/Annotation.tsx +164 -0
  743. package/src/components/BackgroundLayer.tsx +50 -0
  744. package/src/components/Callout.tsx +141 -0
  745. package/src/components/Camera.tsx +492 -0
  746. package/src/components/CircleLayer.tsx +52 -0
  747. package/src/components/FillExtrusionLayer.tsx +47 -0
  748. package/src/components/FillLayer.tsx +44 -0
  749. package/src/components/HeadingIndicator.tsx +30 -0
  750. package/src/components/HeatmapLayer.tsx +46 -0
  751. package/src/components/ImageSource.tsx +70 -0
  752. package/src/components/Images.tsx +136 -0
  753. package/src/components/Light.tsx +40 -0
  754. package/src/components/LineLayer.tsx +45 -0
  755. package/src/components/MapView.tsx +879 -0
  756. package/src/components/MarkerView.tsx +88 -0
  757. package/src/components/NativeUserLocation.tsx +35 -0
  758. package/src/components/PointAnnotation.tsx +245 -0
  759. package/src/components/RasterLayer.tsx +43 -0
  760. package/src/components/RasterSource.tsx +114 -0
  761. package/src/components/ShapeSource.tsx +436 -0
  762. package/src/components/Style.tsx +371 -0
  763. package/src/components/SymbolLayer.tsx +77 -0
  764. package/src/components/UserLocation.tsx +307 -0
  765. package/src/components/VectorSource.tsx +218 -0
  766. package/src/hooks/useAbstractLayer.ts +127 -0
  767. package/src/hooks/useAbstractSource.ts +34 -0
  768. package/src/hooks/useNativeBridge.ts +125 -0
  769. package/src/hooks/useNativeRef.ts +14 -0
  770. package/src/index.ts +4 -0
  771. package/src/modules/location/locationManager.ts +161 -0
  772. package/src/modules/offline/OfflineCreatePackOptions.ts +55 -0
  773. package/src/modules/offline/OfflinePack.ts +56 -0
  774. package/src/modules/offline/offlineManager.ts +438 -0
  775. package/src/modules/snapshot/SnapshotOptions.ts +103 -0
  776. package/src/modules/snapshot/snapshotManager.ts +62 -0
  777. package/src/requestAndroidLocationPermissions.ts +29 -0
  778. package/src/types/BaseProps.ts +3 -0
  779. package/src/types/CameraMode.ts +6 -0
  780. package/src/types/MapLibreRNEvent.ts +7 -0
  781. package/src/types/OnPressEvent.ts +11 -0
  782. package/src/types/StyleURL.ts +3 -0
  783. package/src/utils/BridgeValue.ts +90 -0
  784. package/src/utils/Logger.ts +133 -0
  785. package/src/utils/MapLibreRNStyles.d.ts +1494 -0
  786. package/src/utils/StyleValue.ts +51 -0
  787. package/src/utils/animated/Animated.ts +61 -0
  788. package/src/utils/animated/AnimatedCoordinatesArray.ts +113 -0
  789. package/src/utils/animated/AnimatedPoint.ts +134 -0
  790. package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +150 -0
  791. package/src/utils/filterUtils.ts +9 -0
  792. package/src/utils/index.ts +118 -0
  793. package/src/utils/makeNativeBounds.ts +5 -0
  794. package/src/utils/styleMap.ts +265 -0
  795. package/.gitattributes +0 -1
  796. package/.husky/pre-commit +0 -5
  797. package/.nvmrc +0 -1
  798. package/.sonarcloud.properties +0 -15
  799. package/CHANGELOG.md +0 -432
  800. package/CODE_OF_CONDUCT.md +0 -2
  801. package/CONTRIBUTING.md +0 -55
  802. package/RELEASE.md +0 -30
  803. package/android/install.md +0 -31
  804. package/android/rctmln/.settings/org.eclipse.buildship.core.prefs +0 -2
  805. package/android/rctmln/build.gradle +0 -59
  806. package/android/rctmln/proguard-rules.pro +0 -25
  807. package/android/rctmln/src/main/AndroidManifest.xml +0 -4
  808. package/android/rctmln/src/main/java/com/maplibre/rctmln/RCTMLNPackage.java +0 -99
  809. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractEvent.java +0 -35
  810. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractEventEmitter.java +0 -80
  811. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractMapFeature.java +0 -19
  812. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/MarkerView.java +0 -23
  813. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/MarkerViewManager.java +0 -69
  814. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCallout.java +0 -15
  815. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCalloutManager.java +0 -22
  816. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerView.java +0 -112
  817. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerViewManager.java +0 -45
  818. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotation.java +0 -361
  819. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotationManager.java +0 -88
  820. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraStop.java +0 -251
  821. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraUpdateItem.java +0 -125
  822. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraUpdateQueue.java +0 -73
  823. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCamera.java +0 -530
  824. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCameraManager.java +0 -101
  825. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/constants/CameraMode.java +0 -22
  826. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImages.java +0 -234
  827. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImagesManager.java +0 -103
  828. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/LocationComponentManager.java +0 -149
  829. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocation.java +0 -66
  830. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocationManager.java +0 -35
  831. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/LayerSourceInfo.java +0 -59
  832. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapView.java +0 -16
  833. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapViewManager.java +0 -31
  834. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapView.java +0 -1527
  835. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapViewManager.java +0 -353
  836. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/helpers/CameraChangeTracker.java +0 -41
  837. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyle.java +0 -83
  838. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFactory.java +0 -2275
  839. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFunctionParser.java +0 -107
  840. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleValue.java +0 -212
  841. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTLayer.java +0 -287
  842. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayer.java +0 -27
  843. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayerManager.java +0 -64
  844. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayer.java +0 -55
  845. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayerManager.java +0 -77
  846. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayer.java +0 -55
  847. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayerManager.java +0 -80
  848. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayer.java +0 -55
  849. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayerManager.java +0 -80
  850. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayer.java +0 -55
  851. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayerManager.java +0 -77
  852. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayer.java +0 -55
  853. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayerManager.java +0 -79
  854. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayer.java +0 -27
  855. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayerManager.java +0 -64
  856. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayer.java +0 -55
  857. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayerManager.java +0 -75
  858. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLight.java +0 -65
  859. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLightManager.java +0 -29
  860. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSource.java +0 -81
  861. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSourceManager.java +0 -72
  862. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSource.java +0 -45
  863. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSourceManager.java +0 -44
  864. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSource.java +0 -316
  865. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSourceManager.java +0 -253
  866. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSource.java +0 -97
  867. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSourceManager.java +0 -80
  868. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSource.java +0 -64
  869. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSourceManager.java +0 -84
  870. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTSource.java +0 -244
  871. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/AbstractEvent.java +0 -66
  872. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/AndroidCallbackEvent.java +0 -38
  873. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/EventEmitter.java +0 -45
  874. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/FeatureClickEvent.java +0 -79
  875. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/IEvent.java +0 -18
  876. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/ImageMissingEvent.java +0 -42
  877. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/LocationEvent.java +0 -100
  878. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapChangeEvent.java +0 -47
  879. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapClickEvent.java +0 -51
  880. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapUserTrackingModeEvent.java +0 -36
  881. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/OfflineEvent.java +0 -29
  882. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/PointAnnotationClickEvent.java +0 -46
  883. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/PointAnnotationDragEvent.java +0 -51
  884. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/constants/EventKeys.java +0 -39
  885. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/constants/EventTypes.java +0 -51
  886. package/android/rctmln/src/main/java/com/maplibre/rctmln/http/CustomHeadersInterceptor.java +0 -38
  887. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/LocationManager.java +0 -168
  888. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserLocation.java +0 -63
  889. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserLocationVerticalAlignment.java +0 -11
  890. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserTrackingMode.java +0 -63
  891. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserTrackingState.java +0 -19
  892. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLocationModule.java +0 -158
  893. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLogging.java +0 -140
  894. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNModule.java +0 -348
  895. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNOfflineModule.java +0 -592
  896. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNSnapshotModule.java +0 -139
  897. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/BitmapUtils.java +0 -129
  898. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ClusterPropertyEntry.java +0 -13
  899. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ConvertUtils.java +0 -257
  900. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/DownloadMapImageTask.java +0 -159
  901. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ExpressionParser.java +0 -74
  902. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/GeoJSONUtils.java +0 -209
  903. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/GeoViewport.java +0 -38
  904. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ImageEntry.java +0 -25
  905. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ResourceUtils.java +0 -30
  906. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/SimpleEventCallback.java +0 -30
  907. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/SphericalMercator.java +0 -69
  908. package/android/rctmln/src/main/res/values/strings.xml +0 -3
  909. package/android/settings.gradle +0 -1
  910. package/assets/indoor_building_map_android.png +0 -0
  911. package/assets/indoor_building_map_ios.png +0 -0
  912. package/assets/mapbox_logo.png +0 -0
  913. package/babel.config.js +0 -9
  914. package/docs/Annotation.md +0 -38
  915. package/docs/Annotations.md +0 -12
  916. package/docs/BackgroundLayer.md +0 -158
  917. package/docs/Callout.md +0 -15
  918. package/docs/Camera.md +0 -133
  919. package/docs/CircleLayer.md +0 -462
  920. package/docs/CustomHttpHeaders.md +0 -87
  921. package/docs/FillExtrusionLayer.md +0 -319
  922. package/docs/FillLayer.md +0 -302
  923. package/docs/GettingStarted.md +0 -114
  924. package/docs/HeadingIndicator.md +0 -10
  925. package/docs/HeatmapLayer.md +0 -207
  926. package/docs/ImageSource.md +0 -13
  927. package/docs/Images.md +0 -14
  928. package/docs/Light.md +0 -159
  929. package/docs/LineLayer.md +0 -576
  930. package/docs/Logger.md +0 -23
  931. package/docs/MapLibreGL.md +0 -65
  932. package/docs/MapView.md +0 -203
  933. package/docs/MarkerView.md +0 -16
  934. package/docs/NativeUserLocation.md +0 -11
  935. package/docs/OfflineManager.md +0 -246
  936. package/docs/PointAnnotation.md +0 -31
  937. package/docs/RasterLayer.md +0 -349
  938. package/docs/RasterSource.md +0 -18
  939. package/docs/ShapeSource.md +0 -106
  940. package/docs/Style.md +0 -10
  941. package/docs/StyleSheet.md +0 -451
  942. package/docs/SymbolLayer.md +0 -1655
  943. package/docs/UserLocation.md +0 -45
  944. package/docs/VectorSource.md +0 -49
  945. package/docs/coordinates.md +0 -6
  946. package/docs/docs.json +0 -5396
  947. package/docs/location.md +0 -6
  948. package/docs/offlineManager.md +0 -246
  949. package/docs/snapshotManager.md +0 -53
  950. package/ios/RCTMLN/CameraMode.h +0 -18
  951. package/ios/RCTMLN/CameraMode.m +0 -18
  952. package/ios/RCTMLN/CameraStop.h +0 -26
  953. package/ios/RCTMLN/CameraStop.m +0 -83
  954. package/ios/RCTMLN/CameraUpdateItem.h +0 -18
  955. package/ios/RCTMLN/CameraUpdateItem.m +0 -178
  956. package/ios/RCTMLN/CameraUpdateQueue.h +0 -21
  957. package/ios/RCTMLN/CameraUpdateQueue.m +0 -74
  958. package/ios/RCTMLN/FilterParser.h +0 -14
  959. package/ios/RCTMLN/FilterParser.m +0 -22
  960. package/ios/RCTMLN/MLNCustomHeaders.h +0 -20
  961. package/ios/RCTMLN/MLNCustomHeaders.m +0 -98
  962. package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.h +0 -23
  963. package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.m +0 -474
  964. package/ios/RCTMLN/MLNModule.h +0 -13
  965. package/ios/RCTMLN/MLNModule.m +0 -269
  966. package/ios/RCTMLN/MLNOfflineModule.h +0 -19
  967. package/ios/RCTMLN/MLNOfflineModule.m +0 -516
  968. package/ios/RCTMLN/MLNSnapshotModule.h +0 -13
  969. package/ios/RCTMLN/MLNSnapshotModule.m +0 -80
  970. package/ios/RCTMLN/MLNUserLocationHeadingArrowLayer.h +0 -11
  971. package/ios/RCTMLN/MLNUserLocationHeadingArrowLayer.m +0 -57
  972. package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.h +0 -11
  973. package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.m +0 -102
  974. package/ios/RCTMLN/MLNUserLocationHeadingIndicator.h +0 -10
  975. package/ios/RCTMLN/RCTConvert+Mapbox.h +0 -16
  976. package/ios/RCTMLN/RCTConvert+Mapbox.m +0 -32
  977. package/ios/RCTMLN/RCTMLN.h +0 -13
  978. package/ios/RCTMLN/RCTMLN.m +0 -13
  979. package/ios/RCTMLN/RCTMLNBackgroundLayer.h +0 -14
  980. package/ios/RCTMLN/RCTMLNBackgroundLayer.m +0 -27
  981. package/ios/RCTMLN/RCTMLNBackgroundLayerManager.h +0 -13
  982. package/ios/RCTMLN/RCTMLNBackgroundLayerManager.m +0 -35
  983. package/ios/RCTMLN/RCTMLNCallout.h +0 -15
  984. package/ios/RCTMLN/RCTMLNCallout.m +0 -74
  985. package/ios/RCTMLN/RCTMLNCalloutManager.h +0 -13
  986. package/ios/RCTMLN/RCTMLNCalloutManager.m +0 -21
  987. package/ios/RCTMLN/RCTMLNCamera.h +0 -39
  988. package/ios/RCTMLN/RCTMLNCamera.m +0 -258
  989. package/ios/RCTMLN/RCTMLNCameraManager.h +0 -13
  990. package/ios/RCTMLN/RCTMLNCameraManager.m +0 -52
  991. package/ios/RCTMLN/RCTMLNCircleLayer.h +0 -13
  992. package/ios/RCTMLN/RCTMLNCircleLayer.m +0 -34
  993. package/ios/RCTMLN/RCTMLNCircleLayerManager.h +0 -13
  994. package/ios/RCTMLN/RCTMLNCircleLayerManager.m +0 -39
  995. package/ios/RCTMLN/RCTMLNEvent.h +0 -21
  996. package/ios/RCTMLN/RCTMLNEvent.m +0 -47
  997. package/ios/RCTMLN/RCTMLNEventProtocol.h +0 -16
  998. package/ios/RCTMLN/RCTMLNEventTypes.h +0 -50
  999. package/ios/RCTMLN/RCTMLNEventTypes.m +0 -49
  1000. package/ios/RCTMLN/RCTMLNFillExtrusionLayer.h +0 -14
  1001. package/ios/RCTMLN/RCTMLNFillExtrusionLayer.m +0 -32
  1002. package/ios/RCTMLN/RCTMLNFillExtrusionLayerManager.h +0 -13
  1003. package/ios/RCTMLN/RCTMLNFillExtrusionLayerManager.m +0 -39
  1004. package/ios/RCTMLN/RCTMLNFillLayer.h +0 -14
  1005. package/ios/RCTMLN/RCTMLNFillLayer.m +0 -33
  1006. package/ios/RCTMLN/RCTMLNFillLayerManager.h +0 -13
  1007. package/ios/RCTMLN/RCTMLNFillLayerManager.m +0 -37
  1008. package/ios/RCTMLN/RCTMLNHeatmapLayer.h +0 -12
  1009. package/ios/RCTMLN/RCTMLNHeatmapLayer.m +0 -30
  1010. package/ios/RCTMLN/RCTMLNHeatmapLayerManager.h +0 -12
  1011. package/ios/RCTMLN/RCTMLNHeatmapLayerManager.m +0 -38
  1012. package/ios/RCTMLN/RCTMLNImageQueue.h +0 -19
  1013. package/ios/RCTMLN/RCTMLNImageQueue.m +0 -57
  1014. package/ios/RCTMLN/RCTMLNImageQueueOperation.h +0 -17
  1015. package/ios/RCTMLN/RCTMLNImageQueueOperation.m +0 -138
  1016. package/ios/RCTMLN/RCTMLNImageSource.h +0 -16
  1017. package/ios/RCTMLN/RCTMLNImageSource.m +0 -60
  1018. package/ios/RCTMLN/RCTMLNImageSourceManager.h +0 -13
  1019. package/ios/RCTMLN/RCTMLNImageSourceManager.m +0 -25
  1020. package/ios/RCTMLN/RCTMLNImages.h +0 -25
  1021. package/ios/RCTMLN/RCTMLNImages.m +0 -126
  1022. package/ios/RCTMLN/RCTMLNImagesManager.h +0 -5
  1023. package/ios/RCTMLN/RCTMLNImagesManager.m +0 -21
  1024. package/ios/RCTMLN/RCTMLNLayer.h +0 -52
  1025. package/ios/RCTMLN/RCTMLNLayer.m +0 -236
  1026. package/ios/RCTMLN/RCTMLNLight.h +0 -17
  1027. package/ios/RCTMLN/RCTMLNLight.m +0 -46
  1028. package/ios/RCTMLN/RCTMLNLightManager.h +0 -13
  1029. package/ios/RCTMLN/RCTMLNLightManager.m +0 -23
  1030. package/ios/RCTMLN/RCTMLNLineLayer.h +0 -14
  1031. package/ios/RCTMLN/RCTMLNLineLayer.m +0 -33
  1032. package/ios/RCTMLN/RCTMLNLineLayerManager.h +0 -13
  1033. package/ios/RCTMLN/RCTMLNLineLayerManager.m +0 -40
  1034. package/ios/RCTMLN/RCTMLNLocation.h +0 -19
  1035. package/ios/RCTMLN/RCTMLNLocation.m +0 -32
  1036. package/ios/RCTMLN/RCTMLNLocationManager.h +0 -30
  1037. package/ios/RCTMLN/RCTMLNLocationManager.m +0 -180
  1038. package/ios/RCTMLN/RCTMLNLocationManagerDelegate.h +0 -20
  1039. package/ios/RCTMLN/RCTMLNLocationModule.h +0 -15
  1040. package/ios/RCTMLN/RCTMLNLocationModule.m +0 -99
  1041. package/ios/RCTMLN/RCTMLNLogging.h +0 -18
  1042. package/ios/RCTMLN/RCTMLNLogging.m +0 -132
  1043. package/ios/RCTMLN/RCTMLNMapTouchEvent.h +0 -25
  1044. package/ios/RCTMLN/RCTMLNMapTouchEvent.m +0 -77
  1045. package/ios/RCTMLN/RCTMLNMapView.h +0 -91
  1046. package/ios/RCTMLN/RCTMLNMapView.m +0 -536
  1047. package/ios/RCTMLN/RCTMLNMapViewManager.h +0 -17
  1048. package/ios/RCTMLN/RCTMLNMapViewManager.m +0 -625
  1049. package/ios/RCTMLN/RCTMLNNativeUserLocation.h +0 -18
  1050. package/ios/RCTMLN/RCTMLNNativeUserLocation.m +0 -49
  1051. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.h +0 -5
  1052. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.m +0 -25
  1053. package/ios/RCTMLN/RCTMLNPointAnnotation.h +0 -41
  1054. package/ios/RCTMLN/RCTMLNPointAnnotation.m +0 -251
  1055. package/ios/RCTMLN/RCTMLNPointAnnotationManager.h +0 -13
  1056. package/ios/RCTMLN/RCTMLNPointAnnotationManager.m +0 -36
  1057. package/ios/RCTMLN/RCTMLNRasterLayer.h +0 -14
  1058. package/ios/RCTMLN/RCTMLNRasterLayer.m +0 -30
  1059. package/ios/RCTMLN/RCTMLNRasterLayerManager.h +0 -13
  1060. package/ios/RCTMLN/RCTMLNRasterLayerManager.m +0 -35
  1061. package/ios/RCTMLN/RCTMLNRasterSource.h +0 -16
  1062. package/ios/RCTMLN/RCTMLNRasterSource.m +0 -35
  1063. package/ios/RCTMLN/RCTMLNRasterSourceManager.h +0 -13
  1064. package/ios/RCTMLN/RCTMLNRasterSourceManager.m +0 -32
  1065. package/ios/RCTMLN/RCTMLNShapeSource.h +0 -53
  1066. package/ios/RCTMLN/RCTMLNShapeSource.m +0 -194
  1067. package/ios/RCTMLN/RCTMLNShapeSourceManager.h +0 -14
  1068. package/ios/RCTMLN/RCTMLNShapeSourceManager.m +0 -206
  1069. package/ios/RCTMLN/RCTMLNSource.h +0 -35
  1070. package/ios/RCTMLN/RCTMLNSource.m +0 -143
  1071. package/ios/RCTMLN/RCTMLNStyle.h +0 -222
  1072. package/ios/RCTMLN/RCTMLNStyle.m +0 -1675
  1073. package/ios/RCTMLN/RCTMLNStyleValue.h +0 -27
  1074. package/ios/RCTMLN/RCTMLNStyleValue.m +0 -167
  1075. package/ios/RCTMLN/RCTMLNSymbolLayer.h +0 -19
  1076. package/ios/RCTMLN/RCTMLNSymbolLayer.m +0 -121
  1077. package/ios/RCTMLN/RCTMLNSymbolLayerManager.h +0 -13
  1078. package/ios/RCTMLN/RCTMLNSymbolLayerManager.m +0 -40
  1079. package/ios/RCTMLN/RCTMLNTileSource.h +0 -22
  1080. package/ios/RCTMLN/RCTMLNTileSource.m +0 -31
  1081. package/ios/RCTMLN/RCTMLNUserLocation.h +0 -15
  1082. package/ios/RCTMLN/RCTMLNUserLocation.m +0 -38
  1083. package/ios/RCTMLN/RCTMLNUtils.h +0 -31
  1084. package/ios/RCTMLN/RCTMLNUtils.m +0 -218
  1085. package/ios/RCTMLN/RCTMLNVectorLayer.h +0 -15
  1086. package/ios/RCTMLN/RCTMLNVectorLayer.m +0 -59
  1087. package/ios/RCTMLN/RCTMLNVectorSource.h +0 -16
  1088. package/ios/RCTMLN/RCTMLNVectorSource.m +0 -28
  1089. package/ios/RCTMLN/RCTMLNVectorSourceManager.h +0 -14
  1090. package/ios/RCTMLN/RCTMLNVectorSourceManager.m +0 -79
  1091. package/ios/RCTMLN/RNMBImageUtils.h +0 -17
  1092. package/ios/RCTMLN/RNMBImageUtils.m +0 -31
  1093. package/ios/RCTMLN/ViewManager.h +0 -16
  1094. package/ios/RCTMLN/ViewManager.m +0 -63
  1095. package/ios/RCTMLN/index.d.ts +0 -1183
  1096. package/ios/RCTMLN.xcodeproj/project.pbxproj +0 -775
  1097. package/ios/install.md +0 -49
  1098. package/javascript/MLNModule.ts +0 -37
  1099. package/javascript/Maplibre.ts +0 -64
  1100. package/javascript/components/BackgroundLayer.tsx +0 -50
  1101. package/javascript/components/Callout.tsx +0 -141
  1102. package/javascript/components/Camera.tsx +0 -623
  1103. package/javascript/components/CircleLayer.tsx +0 -53
  1104. package/javascript/components/FillExtrusionLayer.tsx +0 -47
  1105. package/javascript/components/FillLayer.tsx +0 -44
  1106. package/javascript/components/HeadingIndicator.tsx +0 -30
  1107. package/javascript/components/HeatmapLayer.tsx +0 -46
  1108. package/javascript/components/ImageSource.tsx +0 -71
  1109. package/javascript/components/Images.tsx +0 -134
  1110. package/javascript/components/Light.tsx +0 -40
  1111. package/javascript/components/LineLayer.tsx +0 -45
  1112. package/javascript/components/MapView.tsx +0 -880
  1113. package/javascript/components/MarkerView.tsx +0 -88
  1114. package/javascript/components/NativeUserLocation.tsx +0 -31
  1115. package/javascript/components/PointAnnotation.tsx +0 -245
  1116. package/javascript/components/RasterLayer.tsx +0 -44
  1117. package/javascript/components/RasterSource.tsx +0 -114
  1118. package/javascript/components/ShapeSource.tsx +0 -433
  1119. package/javascript/components/Style.tsx +0 -368
  1120. package/javascript/components/SymbolLayer.tsx +0 -78
  1121. package/javascript/components/UserLocation.tsx +0 -289
  1122. package/javascript/components/VectorSource.tsx +0 -218
  1123. package/javascript/components/annotations/Annotation.tsx +0 -161
  1124. package/javascript/hooks/useAbstractLayer.ts +0 -127
  1125. package/javascript/hooks/useAbstractSource.ts +0 -34
  1126. package/javascript/hooks/useNativeBridge.ts +0 -125
  1127. package/javascript/hooks/useNativeRef.ts +0 -13
  1128. package/javascript/index.ts +0 -4
  1129. package/javascript/modules/location/locationManager.ts +0 -162
  1130. package/javascript/modules/offline/OfflineCreatePackOptions.ts +0 -62
  1131. package/javascript/modules/offline/OfflinePack.ts +0 -56
  1132. package/javascript/modules/offline/offlineManager.ts +0 -434
  1133. package/javascript/modules/snapshot/SnapshotOptions.ts +0 -104
  1134. package/javascript/modules/snapshot/snapshotManager.ts +0 -62
  1135. package/javascript/requestAndroidLocationPermissions.ts +0 -29
  1136. package/javascript/types/BaseProps.ts +0 -5
  1137. package/javascript/types/OnPressEvent.ts +0 -13
  1138. package/javascript/types/index.ts +0 -11
  1139. package/javascript/utils/BridgeValue.ts +0 -90
  1140. package/javascript/utils/Logger.ts +0 -133
  1141. package/javascript/utils/MaplibreStyles.d.ts +0 -1486
  1142. package/javascript/utils/StyleValue.ts +0 -49
  1143. package/javascript/utils/animated/Animated.ts +0 -61
  1144. package/javascript/utils/animated/AnimatedCoordinatesArray.ts +0 -108
  1145. package/javascript/utils/animated/AnimatedPoint.ts +0 -134
  1146. package/javascript/utils/animated/AnimatedRouteCoordinatesArray.ts +0 -145
  1147. package/javascript/utils/filterUtils.ts +0 -9
  1148. package/javascript/utils/geoUtils.ts +0 -79
  1149. package/javascript/utils/index.ts +0 -133
  1150. package/javascript/utils/styleMap.ts +0 -264
  1151. package/plugin/install.md +0 -32
  1152. package/react-native.config.js +0 -10
  1153. package/scripts/autogenHelpers/DocJSONBuilder.js +0 -458
  1154. package/scripts/autogenHelpers/JSDocNodeTree.js +0 -131
  1155. package/scripts/autogenHelpers/MarkdownBuilder.js +0 -29
  1156. package/scripts/autogenHelpers/globals.js +0 -507
  1157. package/scripts/autogenerate.js +0 -382
  1158. package/scripts/download-style-spec.sh +0 -15
  1159. package/scripts/templates/MaplibreStyles.ts.ejs +0 -99
  1160. package/scripts/templates/RCTMLNStyle.h.ejs +0 -33
  1161. package/scripts/templates/RCTMLNStyle.m.ejs +0 -97
  1162. package/scripts/templates/RCTMLNStyleFactory.java.ejs +0 -107
  1163. package/scripts/templates/component.md.ejs +0 -122
  1164. package/scripts/templates/index.d.ts.ejs +0 -85
  1165. package/scripts/templates/styleMap.ts.ejs +0 -85
  1166. package/setup-jest.js +0 -108
  1167. package/style-spec/v8.json +0 -6021
  1168. package/tsconfig.json +0 -24
  1169. /package/android/{rctmln/src → src}/main/res/drawable/empty.xml +0 -0
  1170. /package/android/{rctmln/src → src}/main/res/drawable/empty_drawable.png +0 -0
  1171. /package/android/{rctmln/src → src}/main/res/drawable-xxhdpi/red_marker.png +0 -0
  1172. /package/android/{rctmln/src → src}/main/res/layout/annotation.xml +0 -0
  1173. /package/{assets → lib/commonjs/assets}/heading.png +0 -0
  1174. /package/{assets → lib/commonjs/assets}/heading@2x.png +0 -0
  1175. /package/{assets → lib/commonjs/assets}/heading@3x.png +0 -0
  1176. /package/{javascript/@types/assets.d.ts → src/assets/png.d.ts} +0 -0
  1177. /package/{javascript → src}/hooks/useOnce.ts +0 -0
  1178. /package/{javascript → src}/utils/animated/AbstractAnimatedCoordinates.ts +0 -0
  1179. /package/{javascript → src}/utils/animated/AnimatedExtractCoordinateFromArray.ts +0 -0
  1180. /package/{javascript → src}/utils/animated/AnimatedShape.ts +0 -0
  1181. /package/{javascript → src}/utils/deprecation.ts +0 -0
@@ -0,0 +1,199 @@
1
+ #import <React/RCTUIManager.h>
2
+
3
+ #import "MLRNShapeSourceManager.h"
4
+ #import "MLRNShapeSource.h"
5
+
6
+ #import "FilterParser.h"
7
+
8
+ @implementation MLRNShapeSourceManager
9
+
10
+ RCT_EXPORT_MODULE(MLRNShapeSource)
11
+
12
+ RCT_EXPORT_VIEW_PROPERTY(id, NSString)
13
+ RCT_EXPORT_VIEW_PROPERTY(url, NSString)
14
+ RCT_EXPORT_VIEW_PROPERTY(shape, NSString)
15
+
16
+ RCT_EXPORT_VIEW_PROPERTY(cluster, NSNumber)
17
+ RCT_EXPORT_VIEW_PROPERTY(clusterRadius, NSNumber)
18
+ RCT_EXPORT_VIEW_PROPERTY(clusterMaxZoomLevel, NSNumber)
19
+ RCT_EXPORT_VIEW_PROPERTY(clusterProperties, NSDictionary)
20
+ RCT_EXPORT_VIEW_PROPERTY(maxZoomLevel, NSNumber)
21
+ RCT_EXPORT_VIEW_PROPERTY(buffer, NSNumber)
22
+ RCT_EXPORT_VIEW_PROPERTY(tolerance, NSNumber)
23
+ RCT_EXPORT_VIEW_PROPERTY(lineMetrics, NSNumber)
24
+ RCT_EXPORT_VIEW_PROPERTY(images, NSDictionary)
25
+ RCT_EXPORT_VIEW_PROPERTY(nativeImages, NSArray)
26
+ RCT_EXPORT_VIEW_PROPERTY(hasPressListener, BOOL)
27
+ RCT_EXPORT_VIEW_PROPERTY(hitbox, NSDictionary)
28
+ RCT_REMAP_VIEW_PROPERTY(onMapboxShapeSourcePress, onPress, RCTBubblingEventBlock)
29
+
30
+ - (UIView*)view
31
+ {
32
+ MLRNShapeSource *source = [MLRNShapeSource new];
33
+ source.bridge = self.bridge;
34
+ return source;
35
+ }
36
+
37
+ RCT_EXPORT_METHOD(features:(nonnull NSNumber*)reactTag
38
+ withFilter:(NSArray *)filter
39
+ resolver:(RCTPromiseResolveBlock)resolve
40
+ rejecter:(RCTPromiseRejectBlock)reject)
41
+ {
42
+ [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary<NSNumber*, UIView*> *viewRegistry) {
43
+ MLRNShapeSource* shapeSource = viewRegistry[reactTag];
44
+
45
+ if (![shapeSource isKindOfClass:[MLRNShapeSource class]]) {
46
+ RCTLogError(@"Invalid react tag, could not find MLRNMapView");
47
+ return;
48
+ }
49
+
50
+ NSPredicate* predicate = [FilterParser parse:filter];
51
+ NSArray<id<MLNFeature>> *shapes = [shapeSource featuresMatchingPredicate: predicate];
52
+
53
+ NSMutableArray<NSDictionary*> *features = [[NSMutableArray alloc] initWithCapacity:shapes.count];
54
+ for (int i = 0; i < shapes.count; i++) {
55
+ [features addObject:shapes[i].geoJSONDictionary];
56
+ }
57
+
58
+ resolve(@{
59
+ @"data": @{ @"type": @"FeatureCollection", @"features": features }
60
+ });
61
+ }];
62
+ }
63
+
64
+ RCT_EXPORT_METHOD(getClusterExpansionZoom:(nonnull NSNumber*)reactTag
65
+ featureJSON:(nonnull NSString*)featureJSON
66
+ resolver:(RCTPromiseResolveBlock)resolve
67
+ rejecter:(RCTPromiseRejectBlock)reject)
68
+ {
69
+ [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary<NSNumber*, UIView*> *viewRegistry) {
70
+ MLRNShapeSource* shapeSource = (MLRNShapeSource *)viewRegistry[reactTag];
71
+
72
+ if (![shapeSource isKindOfClass:[MLRNShapeSource class]]) {
73
+ RCTLogError(@"Invalid react tag, could not find MLRNMapView");
74
+ return;
75
+ }
76
+
77
+ double zoom = [shapeSource getClusterExpansionZoom: featureJSON];
78
+ if (zoom == -1) {
79
+ reject(@"zoom_error", [NSString stringWithFormat:@"Could not get zoom for cluster %@", featureJSON], nil);
80
+ return;
81
+ }
82
+ resolve(@{@"data":@(zoom)});
83
+ }];
84
+ }
85
+
86
+
87
+ RCT_EXPORT_METHOD(getClusterLeaves:(nonnull NSNumber*)reactTag
88
+ featureJSON:(nonnull NSString*)featureJSON
89
+ number:(NSUInteger) number
90
+ offset:(NSUInteger) offset
91
+ resolver:(RCTPromiseResolveBlock)resolve
92
+ rejecter:(RCTPromiseRejectBlock)reject)
93
+ {
94
+ [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary<NSNumber*, UIView*> *viewRegistry) {
95
+ MLRNShapeSource* shapeSource = (MLRNShapeSource *)viewRegistry[reactTag];
96
+
97
+ NSArray<id<MLNFeature>> *shapes = [shapeSource getClusterLeaves:featureJSON number:number offset:offset];
98
+
99
+ NSMutableArray<NSDictionary*> *features = [[NSMutableArray alloc] initWithCapacity:shapes.count];
100
+ for (int i = 0; i < shapes.count; i++) {
101
+ [features addObject:shapes[i].geoJSONDictionary];
102
+ }
103
+
104
+ resolve(@{
105
+ @"data": @{ @"type": @"FeatureCollection", @"features": features }
106
+ });
107
+ }];
108
+ }
109
+
110
+ RCT_EXPORT_METHOD(getClusterChildren:(nonnull NSNumber*)reactTag
111
+ featureJSON:(nonnull NSString*)featureJSON
112
+ resolver:(RCTPromiseResolveBlock)resolve
113
+ rejecter:(RCTPromiseRejectBlock)reject)
114
+ {
115
+ [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary<NSNumber*, UIView*> *viewRegistry) {
116
+ MLRNShapeSource* shapeSource = (MLRNShapeSource *)viewRegistry[reactTag];
117
+
118
+ NSArray<id<MLNFeature>> *shapes = [shapeSource getClusterChildren: featureJSON];
119
+
120
+ NSMutableArray<NSDictionary*> *features = [[NSMutableArray alloc] initWithCapacity:shapes.count];
121
+ for (int i = 0; i < shapes.count; i++) {
122
+ [features addObject:shapes[i].geoJSONDictionary];
123
+ }
124
+
125
+ resolve(@{
126
+ @"data": @{ @"type": @"FeatureCollection", @"features": features }
127
+ });
128
+ }];
129
+ }
130
+
131
+ // Deprecated. Will be removed in 9+ ver.
132
+ RCT_EXPORT_METHOD(getClusterExpansionZoomById:(nonnull NSNumber*)reactTag
133
+ clusterId:(nonnull NSNumber*)clusterId
134
+ resolver:(RCTPromiseResolveBlock)resolve
135
+ rejecter:(RCTPromiseRejectBlock)reject)
136
+ {
137
+ [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary<NSNumber*, UIView*> *viewRegistry) {
138
+ MLRNShapeSource* shapeSource = (MLRNShapeSource *)viewRegistry[reactTag];
139
+
140
+ if (![shapeSource isKindOfClass:[MLRNShapeSource class]]) {
141
+ RCTLogError(@"Invalid react tag, could not find MLRNMapView");
142
+ return;
143
+ }
144
+
145
+ double zoom = [shapeSource getClusterExpansionZoomById:clusterId];
146
+ if (zoom == -1) {
147
+ reject(@"zoom_error", [NSString stringWithFormat:@"Could not get zoom for cluster id %@", clusterId], nil);
148
+ return;
149
+ }
150
+ resolve(@{@"data":@(zoom)});
151
+ }];
152
+ }
153
+
154
+ // Deprecated. Will be removed in 9+ ver.
155
+ RCT_EXPORT_METHOD(getClusterLeavesById:(nonnull NSNumber*)reactTag
156
+ clusterId:(nonnull NSNumber *)clusterId
157
+ number:(NSUInteger) number
158
+ offset:(NSUInteger) offset
159
+ resolver:(RCTPromiseResolveBlock)resolve
160
+ rejecter:(RCTPromiseRejectBlock)reject)
161
+ {
162
+ [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary<NSNumber*, UIView*> *viewRegistry) {
163
+ MLRNShapeSource* shapeSource = (MLRNShapeSource *)viewRegistry[reactTag];
164
+
165
+ NSArray<id<MLNFeature>> *shapes = [shapeSource getClusterLeavesById:clusterId number:number offset:offset];
166
+
167
+ NSMutableArray<NSDictionary*> *features = [[NSMutableArray alloc] initWithCapacity:shapes.count];
168
+ for (int i = 0; i < shapes.count; i++) {
169
+ [features addObject:shapes[i].geoJSONDictionary];
170
+ }
171
+
172
+ resolve(@{
173
+ @"data": @{ @"type": @"FeatureCollection", @"features": features }
174
+ });
175
+ }];
176
+ }
177
+ // Deprecated. Will be removed in 9+ ver.
178
+ RCT_EXPORT_METHOD(getClusterChildrenById:(nonnull NSNumber*)reactTag
179
+ clusterId:(nonnull NSNumber *)clusterId
180
+ resolver:(RCTPromiseResolveBlock)resolve
181
+ rejecter:(RCTPromiseRejectBlock)reject)
182
+ {
183
+ [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary<NSNumber*, UIView*> *viewRegistry) {
184
+ MLRNShapeSource* shapeSource = (MLRNShapeSource *)viewRegistry[reactTag];
185
+
186
+ NSArray<id<MLNFeature>> *shapes = [shapeSource getClusterChildrenById: clusterId];
187
+
188
+ NSMutableArray<NSDictionary*> *features = [[NSMutableArray alloc] initWithCapacity:shapes.count];
189
+ for (int i = 0; i < shapes.count; i++) {
190
+ [features addObject:shapes[i].geoJSONDictionary];
191
+ }
192
+
193
+ resolve(@{
194
+ @"data": @{ @"type": @"FeatureCollection", @"features": features }
195
+ });
196
+ }];
197
+ }
198
+
199
+ @end
@@ -0,0 +1,5 @@
1
+ #import <React/RCTBridgeModule.h>
2
+
3
+ @interface MLRNSnapshotModule : NSObject<RCTBridgeModule>
4
+
5
+ @end
@@ -0,0 +1,72 @@
1
+ #import "MLRNSnapshotModule.h"
2
+ #import "MLRNUtils.h"
3
+ #import "MLRNImageUtils.h"
4
+ @import MapLibre;
5
+
6
+ @implementation MLRNSnapshotModule
7
+
8
+ RCT_EXPORT_MODULE()
9
+
10
+ + (BOOL)requiresMainQueueSetup
11
+ {
12
+ return YES;
13
+ }
14
+
15
+ RCT_EXPORT_METHOD(takeSnap:(NSDictionary *)jsOptions
16
+ resolver:(RCTPromiseResolveBlock)resolve
17
+ rejecter:(RCTPromiseRejectBlock)reject)
18
+ {
19
+ dispatch_async(dispatch_get_main_queue(), ^{
20
+ MLNMapSnapshotOptions *options = [self _getOptions:jsOptions];
21
+ __block MLNMapSnapshotter *snapshotter = [[MLNMapSnapshotter alloc] initWithOptions:options];
22
+
23
+ [snapshotter startWithCompletionHandler:^(MLNMapSnapshot * _Nullable snapshot, NSError * _Nullable err) {
24
+ if (err != nil) {
25
+ reject(@"takeSnap", @"Could not create snapshot", err);
26
+ snapshotter = nil;
27
+ return;
28
+ }
29
+
30
+ NSString *result = nil;
31
+ if ([jsOptions[@"writeToDisk"] boolValue]) {
32
+ result = [MLRNImageUtils createTempFile:snapshot.image];
33
+ } else {
34
+ result = [MLRNImageUtils createBase64:snapshot.image];
35
+ }
36
+
37
+ resolve(result);
38
+ snapshotter = nil;
39
+ }];
40
+ });
41
+ }
42
+
43
+ - (MLNMapSnapshotOptions *)_getOptions:(NSDictionary *)jsOptions
44
+ {
45
+ MLNMapCamera *camera = [[MLNMapCamera alloc] init];
46
+
47
+ camera.pitch = [jsOptions[@"pitch"] doubleValue];
48
+ camera.heading = [jsOptions[@"heading"] doubleValue];
49
+
50
+ if (jsOptions[@"centerCoordinate"] != nil) {
51
+ camera.centerCoordinate = [MLRNUtils fromFeature:jsOptions[@"centerCoordinate"]];
52
+ }
53
+
54
+ NSNumber *width = jsOptions[@"width"];
55
+ NSNumber *height = jsOptions[@"height"];
56
+ CGSize size = CGSizeMake([width doubleValue], [height doubleValue]);
57
+
58
+ MLNMapSnapshotOptions *options = [[MLNMapSnapshotOptions alloc] initWithStyleURL:[NSURL URLWithString:jsOptions[@"styleURL"]]
59
+ camera:camera
60
+ size:size];
61
+ if (jsOptions[@"zoomLevel"] != nil) {
62
+ options.zoomLevel = [jsOptions[@"zoomLevel"] doubleValue];
63
+ }
64
+
65
+ if (jsOptions[@"bounds"] != nil) {
66
+ options.coordinateBounds = [MLRNUtils fromFeatureCollection:jsOptions[@"bounds"]];
67
+ }
68
+
69
+ return options;
70
+ }
71
+
72
+ @end
@@ -0,0 +1,27 @@
1
+ #import <React/RCTComponent.h>
2
+ #import "MLRNLayer.h"
3
+ #import <UIKit/UIKit.h>
4
+ @import MapLibre;
5
+
6
+ @interface MLRNSource : UIView
7
+
8
+ extern NSString * _Nonnull const DEFAULT_SOURCE_ID;
9
+
10
+ @property (nonatomic, strong) NSMutableArray<id<RCTComponent>> *reactSubviews;
11
+ @property (nonatomic, strong) NSMutableArray<MLRNLayer*> *layers;
12
+ @property (nonatomic, strong) MLNSource *source;
13
+ @property (nonatomic, strong) MLRNMapView *map;
14
+ @property (nonatomic, strong) NSDictionary<NSString *, NSNumber *> *hitbox;
15
+
16
+ @property (nonatomic, copy) NSString *id;
17
+ @property (nonatomic, assign) BOOL hasPressListener;
18
+ @property (nonatomic, copy) RCTBubblingEventBlock onPress;
19
+
20
+ - (void)addToMap;
21
+ - (void)removeFromMap;
22
+ - (nullable MLNSource*)makeSource;
23
+ - (NSArray<NSString *> *)getLayerIDs;
24
+
25
+ + (BOOL)isDefaultSource:(NSString*)sourceID;
26
+
27
+ @end
@@ -0,0 +1,135 @@
1
+ #import "MLRNSource.h"
2
+ #import <React/UIView+React.h>
3
+ #import "MLRNMapView.h"
4
+ #import <React/RCTLog.h>
5
+
6
+ @implementation MLRNSource
7
+
8
+ double const DEFAULT_HITBOX_AREA = 44.0;
9
+ NSString *const DEFAULT_SOURCE_ID = @"composite";
10
+
11
+
12
+ - (instancetype)initWithFrame:(CGRect)frame
13
+ {
14
+ if (self = [super initWithFrame:frame]) {
15
+ _layers = [[NSMutableArray alloc] init];
16
+ _reactSubviews = [[NSMutableArray alloc] init];
17
+ _hitbox = @{ @"width": @(DEFAULT_HITBOX_AREA), @"height": @(DEFAULT_HITBOX_AREA) };
18
+ }
19
+ return self;
20
+ }
21
+
22
+ #pragma clang diagnostic push
23
+ #pragma clang diagnostic ignored "-Wobjc-missing-super-calls"
24
+ - (void)insertReactSubview:(id<RCTComponent>)subview atIndex:(NSInteger)atIndex {
25
+ if ([subview isKindOfClass:[MLRNLayer class]]) {
26
+ MLRNLayer *layer = (MLRNLayer*)subview;
27
+
28
+ if (_map.style != nil) {
29
+ [layer addToMap:_map style:_map.style];
30
+ }
31
+
32
+ [_layers addObject:layer];
33
+ [_reactSubviews insertObject:layer atIndex:atIndex];
34
+ }
35
+ }
36
+ #pragma clang diagnostic pop
37
+
38
+ #pragma clang diagnostic push
39
+ #pragma clang diagnostic ignored "-Wobjc-missing-super-calls"
40
+ - (void)removeReactSubview:(id<RCTComponent>)subview {
41
+ if ([subview isKindOfClass:[MLRNLayer class]]) {
42
+ MLRNLayer *layer = (MLRNLayer*)subview;
43
+ [layer removeFromMap:_map.style];
44
+ [_layers removeObject:layer];
45
+ [_reactSubviews removeObject:layer];
46
+ }
47
+ }
48
+ #pragma clang diagnostic pop
49
+
50
+ #pragma clang diagnostic push
51
+ #pragma clang diagnostic ignored "-Wobjc-missing-super-calls"
52
+ - (NSArray<id<RCTComponent>> *)reactSubviews {
53
+ return _reactSubviews;
54
+ }
55
+ #pragma clang diagnostic pop
56
+
57
+ - (void)setMap:(MLRNMapView *)map
58
+ {
59
+ if (map == nil) {
60
+ [self removeFromMap];
61
+ _map = nil;
62
+ } else {
63
+ _map = map;
64
+ [self addToMap];
65
+ }
66
+ }
67
+
68
+ - (void)addToMap
69
+ {
70
+ if (_map.style == nil) {
71
+ return;
72
+ }
73
+
74
+ MLNSource *existingSource = [_map.style sourceWithIdentifier:_id];
75
+ if (existingSource != nil) {
76
+ _source = existingSource;
77
+ } else {
78
+ _source = [self makeSource];
79
+ if (_source != nil) {
80
+ [_map.style addSource:_source];
81
+ } else {
82
+ RCTLogError(@"Could not create source with id:%@. Make sure url/shape is provided", _id);
83
+ }
84
+ }
85
+
86
+ if (_layers.count > 0) {
87
+ for (int i = 0; i < _layers.count; i++) {
88
+ MLRNLayer *layer = [_layers objectAtIndex:i];
89
+ [layer addToMap:_map style:_map.style];
90
+ }
91
+ }
92
+ }
93
+
94
+ - (void)removeFromMap
95
+ {
96
+ if (_map.style == nil) {
97
+ return;
98
+ }
99
+
100
+ for (int i = 0; i < _layers.count; i++) {
101
+ MLRNLayer *layer = [_layers objectAtIndex:i];
102
+ [layer removeFromMap:_map.style];
103
+ }
104
+
105
+ if (![MLRNSource isDefaultSource:_id]) {
106
+ if (_source != nil) {
107
+ [_map.style removeSource:_source];
108
+ }
109
+ }
110
+ }
111
+
112
+ - (nullable MLNSource*)makeSource
113
+ {
114
+ @throw [NSException exceptionWithName:NSInternalInconsistencyException
115
+ reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
116
+ userInfo:nil];
117
+ }
118
+
119
+ - (NSArray<NSString *> *)getLayerIDs
120
+ {
121
+ NSMutableArray *layerIDs = [[NSMutableArray alloc] init];
122
+
123
+ for (MLRNLayer *layer in _layers) {
124
+ [layerIDs addObject:layer.id];
125
+ }
126
+
127
+ return layerIDs;
128
+ }
129
+
130
+ + (BOOL)isDefaultSource:(NSString *)sourceID
131
+ {
132
+ return [sourceID isEqualToString:DEFAULT_SOURCE_ID];
133
+ }
134
+
135
+ @end
@@ -0,0 +1,223 @@
1
+ // DO NOT MODIFY
2
+ // This file is auto-generated from scripts/templates/MLRNStyle.h.ejs
3
+
4
+ #import "MLRNStyle.h"
5
+ #import "MLRNStyleValue.h"
6
+ #import <React/RCTBridge.h>
7
+
8
+ @import MapLibre;
9
+
10
+ @interface MLRNStyle : NSObject
11
+
12
+ @property (nonatomic, weak) RCTBridge *bridge;
13
+ @property (nonatomic, strong) MLNStyle *style;
14
+
15
+ - (id)initWithMLNStyle:(MLNStyle*)mlnStyle;
16
+
17
+ - (void)fillLayer:(MLNFillStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
18
+ - (void)lineLayer:(MLNLineStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
19
+ - (void)symbolLayer:(MLNSymbolStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
20
+ - (void)circleLayer:(MLNCircleStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
21
+ - (void)heatmapLayer:(MLNHeatmapStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
22
+ - (void)fillExtrusionLayer:(MLNFillExtrusionStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
23
+ - (void)rasterLayer:(MLNRasterStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
24
+ - (void)hillshadeLayer:(MLNHillshadeStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
25
+ - (void)backgroundLayer:(MLNBackgroundStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
26
+ - (void)lightLayer:(MLNLight *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
27
+
28
+ - (void)setFillSortKey:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
29
+ - (void)setFillStyleLayerVisibility:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
30
+ - (void)setFillAntialias:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
31
+ - (void)setFillOpacity:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
32
+ - (void)setFillOpacityTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
33
+ - (void)setFillColor:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
34
+ - (void)setFillColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
35
+ - (void)setFillOutlineColor:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
36
+ - (void)setFillOutlineColorTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
37
+ - (void)setFillTranslate:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
38
+ - (void)setFillTranslateTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
39
+ - (void)setFillTranslateAnchor:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
40
+ - (void)setFillPattern:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
41
+ - (void)setFillPatternTransition:(MLNFillStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
42
+ - (void)setLineCap:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
43
+ - (void)setLineJoin:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
44
+ - (void)setLineMiterLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
45
+ - (void)setLineRoundLimit:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
46
+ - (void)setLineSortKey:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
47
+ - (void)setLineStyleLayerVisibility:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
48
+ - (void)setLineOpacity:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
49
+ - (void)setLineOpacityTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
50
+ - (void)setLineColor:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
51
+ - (void)setLineColorTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
52
+ - (void)setLineTranslate:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
53
+ - (void)setLineTranslateTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
54
+ - (void)setLineTranslateAnchor:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
55
+ - (void)setLineWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
56
+ - (void)setLineWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
57
+ - (void)setLineGapWidth:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
58
+ - (void)setLineGapWidthTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
59
+ - (void)setLineOffset:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
60
+ - (void)setLineOffsetTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
61
+ - (void)setLineBlur:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
62
+ - (void)setLineBlurTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
63
+ - (void)setLineDasharray:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
64
+ - (void)setLineDasharrayTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
65
+ - (void)setLinePattern:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
66
+ - (void)setLinePatternTransition:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
67
+ - (void)setLineGradient:(MLNLineStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
68
+ - (void)setSymbolPlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
69
+ - (void)setSymbolSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
70
+ - (void)setSymbolAvoidEdges:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
71
+ - (void)setSymbolSortKey:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
72
+ - (void)setSymbolZOrder:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
73
+ - (void)setIconAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
74
+ - (void)setIconIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
75
+ - (void)setIconOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
76
+ - (void)setIconRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
77
+ - (void)setIconSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
78
+ - (void)setIconTextFit:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
79
+ - (void)setIconTextFitPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
80
+ - (void)setIconImage:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
81
+ - (void)setIconRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
82
+ - (void)setIconPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
83
+ - (void)setIconKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
84
+ - (void)setIconOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
85
+ - (void)setIconAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
86
+ - (void)setIconPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
87
+ - (void)setTextPitchAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
88
+ - (void)setTextRotationAlignment:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
89
+ - (void)setTextField:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
90
+ - (void)setTextFont:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
91
+ - (void)setTextSize:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
92
+ - (void)setTextMaxWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
93
+ - (void)setTextLineHeight:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
94
+ - (void)setTextLetterSpacing:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
95
+ - (void)setTextJustify:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
96
+ - (void)setTextRadialOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
97
+ - (void)setTextVariableAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
98
+ - (void)setTextAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
99
+ - (void)setTextMaxAngle:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
100
+ - (void)setTextWritingMode:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
101
+ - (void)setTextRotate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
102
+ - (void)setTextPadding:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
103
+ - (void)setTextKeepUpright:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
104
+ - (void)setTextTransform:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
105
+ - (void)setTextOffset:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
106
+ - (void)setTextAllowOverlap:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
107
+ - (void)setTextIgnorePlacement:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
108
+ - (void)setTextOptional:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
109
+ - (void)setSymbolStyleLayerVisibility:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
110
+ - (void)setIconOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
111
+ - (void)setIconOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
112
+ - (void)setIconColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
113
+ - (void)setIconColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
114
+ - (void)setIconHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
115
+ - (void)setIconHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
116
+ - (void)setIconHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
117
+ - (void)setIconHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
118
+ - (void)setIconHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
119
+ - (void)setIconHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
120
+ - (void)setIconTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
121
+ - (void)setIconTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
122
+ - (void)setIconTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
123
+ - (void)setTextOpacity:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
124
+ - (void)setTextOpacityTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
125
+ - (void)setTextColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
126
+ - (void)setTextColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
127
+ - (void)setTextHaloColor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
128
+ - (void)setTextHaloColorTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
129
+ - (void)setTextHaloWidth:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
130
+ - (void)setTextHaloWidthTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
131
+ - (void)setTextHaloBlur:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
132
+ - (void)setTextHaloBlurTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
133
+ - (void)setTextTranslate:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
134
+ - (void)setTextTranslateTransition:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
135
+ - (void)setTextTranslateAnchor:(MLNSymbolStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
136
+ - (void)setCircleSortKey:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
137
+ - (void)setCircleStyleLayerVisibility:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
138
+ - (void)setCircleRadius:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
139
+ - (void)setCircleRadiusTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
140
+ - (void)setCircleColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
141
+ - (void)setCircleColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
142
+ - (void)setCircleBlur:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
143
+ - (void)setCircleBlurTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
144
+ - (void)setCircleOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
145
+ - (void)setCircleOpacityTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
146
+ - (void)setCircleTranslate:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
147
+ - (void)setCircleTranslateTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
148
+ - (void)setCircleTranslateAnchor:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
149
+ - (void)setCirclePitchScale:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
150
+ - (void)setCirclePitchAlignment:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
151
+ - (void)setCircleStrokeWidth:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
152
+ - (void)setCircleStrokeWidthTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
153
+ - (void)setCircleStrokeColor:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
154
+ - (void)setCircleStrokeColorTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
155
+ - (void)setCircleStrokeOpacity:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
156
+ - (void)setCircleStrokeOpacityTransition:(MLNCircleStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
157
+ - (void)setHeatmapStyleLayerVisibility:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
158
+ - (void)setHeatmapRadius:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
159
+ - (void)setHeatmapRadiusTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
160
+ - (void)setHeatmapWeight:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
161
+ - (void)setHeatmapIntensity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
162
+ - (void)setHeatmapIntensityTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
163
+ - (void)setHeatmapColor:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
164
+ - (void)setHeatmapOpacity:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
165
+ - (void)setHeatmapOpacityTransition:(MLNHeatmapStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
166
+ - (void)setFillExtrusionStyleLayerVisibility:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
167
+ - (void)setFillExtrusionOpacity:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
168
+ - (void)setFillExtrusionOpacityTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
169
+ - (void)setFillExtrusionColor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
170
+ - (void)setFillExtrusionColorTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
171
+ - (void)setFillExtrusionTranslate:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
172
+ - (void)setFillExtrusionTranslateTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
173
+ - (void)setFillExtrusionTranslateAnchor:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
174
+ - (void)setFillExtrusionPattern:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
175
+ - (void)setFillExtrusionPatternTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
176
+ - (void)setFillExtrusionHeight:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
177
+ - (void)setFillExtrusionHeightTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
178
+ - (void)setFillExtrusionBase:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
179
+ - (void)setFillExtrusionBaseTransition:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
180
+ - (void)setFillExtrusionVerticalGradient:(MLNFillExtrusionStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
181
+ - (void)setRasterStyleLayerVisibility:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
182
+ - (void)setRasterOpacity:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
183
+ - (void)setRasterOpacityTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
184
+ - (void)setRasterHueRotate:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
185
+ - (void)setRasterHueRotateTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
186
+ - (void)setRasterBrightnessMin:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
187
+ - (void)setRasterBrightnessMinTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
188
+ - (void)setRasterBrightnessMax:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
189
+ - (void)setRasterBrightnessMaxTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
190
+ - (void)setRasterSaturation:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
191
+ - (void)setRasterSaturationTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
192
+ - (void)setRasterContrast:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
193
+ - (void)setRasterContrastTransition:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
194
+ - (void)setRasterResampling:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
195
+ - (void)setRasterFadeDuration:(MLNRasterStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
196
+ - (void)setHillshadeStyleLayerVisibility:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
197
+ - (void)setHillshadeIlluminationDirection:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
198
+ - (void)setHillshadeIlluminationAnchor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
199
+ - (void)setHillshadeExaggeration:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
200
+ - (void)setHillshadeExaggerationTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
201
+ - (void)setHillshadeShadowColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
202
+ - (void)setHillshadeShadowColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
203
+ - (void)setHillshadeHighlightColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
204
+ - (void)setHillshadeHighlightColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
205
+ - (void)setHillshadeAccentColor:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
206
+ - (void)setHillshadeAccentColorTransition:(MLNHillshadeStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
207
+ - (void)setBackgroundStyleLayerVisibility:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
208
+ - (void)setBackgroundColor:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
209
+ - (void)setBackgroundColorTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
210
+ - (void)setBackgroundPattern:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
211
+ - (void)setBackgroundPatternTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
212
+ - (void)setBackgroundOpacity:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
213
+ - (void)setBackgroundOpacityTransition:(MLNBackgroundStyleLayer *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
214
+ - (void)setAnchor:(MLNLight *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
215
+ - (void)setPosition:(MLNLight *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
216
+ - (void)setPositionTransition:(MLNLight *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
217
+ - (void)setColor:(MLNLight *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
218
+ - (void)setColorTransition:(MLNLight *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
219
+ - (void)setIntensity:(MLNLight *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
220
+ - (void)setIntensityTransition:(MLNLight *)layer withReactStyleValue:(MLRNStyleValue *)styleValue;
221
+
222
+
223
+ @end