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

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 (1169) hide show
  1. package/LICENSE.md +2 -2
  2. package/README.md +51 -54
  3. package/android/build.gradle +109 -27
  4. package/android/gradle.properties +7 -0
  5. package/android/src/main/AndroidManifest.xml +6 -0
  6. package/android/src/main/AndroidManifestNew.xml +5 -0
  7. package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java +90 -0
  8. package/android/src/main/java/org/maplibre/reactnative/components/AbstractEvent.java +35 -0
  9. package/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java +84 -0
  10. package/android/src/main/java/org/maplibre/reactnative/components/AbstractMapFeature.java +15 -0
  11. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java +11 -0
  12. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java +18 -0
  13. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerView.java +112 -0
  14. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerViewManager.java +45 -0
  15. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotation.java +361 -0
  16. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java +84 -0
  17. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerView.java +23 -0
  18. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerViewManager.java +69 -0
  19. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java +245 -0
  20. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java +121 -0
  21. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java +68 -0
  22. package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCamera.java +530 -0
  23. package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCameraManager.java +101 -0
  24. package/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java +18 -0
  25. package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImages.java +234 -0
  26. package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImagesManager.java +103 -0
  27. package/android/src/main/java/org/maplibre/reactnative/components/location/LocationComponentManager.java +158 -0
  28. package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocation.java +76 -0
  29. package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocationManager.java +40 -0
  30. package/android/src/main/java/org/maplibre/reactnative/components/mapview/LayerSourceInfo.java +59 -0
  31. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java +13 -0
  32. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java +27 -0
  33. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java +1523 -0
  34. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java +349 -0
  35. package/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java +37 -0
  36. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java +76 -0
  37. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFactory.java +2285 -0
  38. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java +103 -0
  39. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java +208 -0
  40. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java +23 -0
  41. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java +60 -0
  42. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java +51 -0
  43. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java +73 -0
  44. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java +51 -0
  45. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java +76 -0
  46. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java +51 -0
  47. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java +76 -0
  48. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java +51 -0
  49. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java +73 -0
  50. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java +283 -0
  51. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java +51 -0
  52. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java +75 -0
  53. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java +23 -0
  54. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java +60 -0
  55. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java +51 -0
  56. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java +71 -0
  57. package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java +61 -0
  58. package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java +25 -0
  59. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java +77 -0
  60. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java +68 -0
  61. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java +41 -0
  62. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java +39 -0
  63. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java +246 -0
  64. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java +221 -0
  65. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java +240 -0
  66. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSource.java +97 -0
  67. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSourceManager.java +80 -0
  68. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java +60 -0
  69. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java +80 -0
  70. package/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java +62 -0
  71. package/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java +34 -0
  72. package/android/src/main/java/org/maplibre/reactnative/events/EventEmitter.java +45 -0
  73. package/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java +75 -0
  74. package/android/src/main/java/org/maplibre/reactnative/events/IEvent.java +14 -0
  75. package/android/src/main/java/org/maplibre/reactnative/events/ImageMissingEvent.java +42 -0
  76. package/android/src/main/java/org/maplibre/reactnative/events/LocationEvent.java +100 -0
  77. package/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java +43 -0
  78. package/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java +47 -0
  79. package/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java +32 -0
  80. package/android/src/main/java/org/maplibre/reactnative/events/OfflineEvent.java +25 -0
  81. package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java +42 -0
  82. package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationDragEvent.java +51 -0
  83. package/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java +35 -0
  84. package/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java +47 -0
  85. package/android/src/main/java/org/maplibre/reactnative/http/CustomHeadersInterceptor.java +38 -0
  86. package/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java +164 -0
  87. package/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java +59 -0
  88. package/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java +7 -0
  89. package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java +59 -0
  90. package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java +15 -0
  91. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLocationModule.java +158 -0
  92. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLogging.java +140 -0
  93. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java +199 -0
  94. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java +588 -0
  95. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.java +135 -0
  96. package/android/src/main/java/org/maplibre/reactnative/utils/BitmapUtils.java +125 -0
  97. package/android/src/main/java/org/maplibre/reactnative/utils/ClusterPropertyEntry.java +13 -0
  98. package/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java +253 -0
  99. package/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java +155 -0
  100. package/android/src/main/java/org/maplibre/reactnative/utils/ExpressionParser.java +74 -0
  101. package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java +285 -0
  102. package/android/src/main/java/org/maplibre/reactnative/utils/GeoViewport.java +37 -0
  103. package/android/src/main/java/org/maplibre/reactnative/utils/ImageEntry.java +25 -0
  104. package/android/src/main/java/org/maplibre/reactnative/utils/ResourceUtils.java +26 -0
  105. package/android/src/main/java/org/maplibre/reactnative/utils/SimpleEventCallback.java +26 -0
  106. package/android/src/main/java/org/maplibre/reactnative/utils/SphericalMercator.java +68 -0
  107. package/app.plugin.js +1 -1
  108. package/ios/MLRN/CameraMode.h +10 -0
  109. package/ios/MLRN/CameraMode.m +10 -0
  110. package/ios/MLRN/CameraStop.h +18 -0
  111. package/ios/MLRN/CameraStop.m +75 -0
  112. package/ios/MLRN/CameraUpdateItem.h +10 -0
  113. package/ios/MLRN/CameraUpdateItem.m +169 -0
  114. package/ios/MLRN/CameraUpdateQueue.h +13 -0
  115. package/ios/MLRN/CameraUpdateQueue.m +66 -0
  116. package/ios/MLRN/FilterParser.h +7 -0
  117. package/ios/MLRN/FilterParser.m +14 -0
  118. package/ios/MLRN/MLRN.h +5 -0
  119. package/ios/MLRN/MLRN.m +5 -0
  120. package/ios/MLRN/MLRNBackgroundLayer.h +5 -0
  121. package/ios/MLRN/MLRNBackgroundLayer.m +19 -0
  122. package/ios/MLRN/MLRNBackgroundLayerManager.h +5 -0
  123. package/ios/MLRN/MLRNBackgroundLayerManager.m +27 -0
  124. package/ios/MLRN/MLRNCallout.h +7 -0
  125. package/ios/MLRN/MLRNCallout.m +66 -0
  126. package/ios/MLRN/MLRNCalloutManager.h +5 -0
  127. package/ios/MLRN/MLRNCalloutManager.m +13 -0
  128. package/ios/MLRN/MLRNCamera.h +29 -0
  129. package/ios/MLRN/MLRNCamera.m +250 -0
  130. package/ios/MLRN/MLRNCameraManager.h +5 -0
  131. package/ios/MLRN/MLRNCameraManager.m +41 -0
  132. package/ios/MLRN/MLRNCircleLayer.h +5 -0
  133. package/ios/MLRN/MLRNCircleLayer.m +26 -0
  134. package/ios/MLRN/MLRNCircleLayerManager.h +5 -0
  135. package/ios/MLRN/MLRNCircleLayerManager.m +31 -0
  136. package/ios/MLRN/MLRNCustomHeaders.h +20 -0
  137. package/ios/MLRN/MLRNCustomHeaders.m +98 -0
  138. package/ios/MLRN/MLRNEvent.h +13 -0
  139. package/ios/MLRN/MLRNEvent.m +39 -0
  140. package/ios/MLRN/MLRNEventProtocol.h +8 -0
  141. package/ios/MLRN/MLRNEventTypes.h +42 -0
  142. package/ios/MLRN/MLRNEventTypes.m +41 -0
  143. package/ios/MLRN/MLRNFillExtrusionLayer.h +5 -0
  144. package/ios/MLRN/MLRNFillExtrusionLayer.m +24 -0
  145. package/ios/MLRN/MLRNFillExtrusionLayerManager.h +5 -0
  146. package/ios/MLRN/MLRNFillExtrusionLayerManager.m +31 -0
  147. package/ios/MLRN/MLRNFillLayer.h +5 -0
  148. package/ios/MLRN/MLRNFillLayer.m +26 -0
  149. package/ios/MLRN/MLRNFillLayerManager.h +5 -0
  150. package/ios/MLRN/MLRNFillLayerManager.m +29 -0
  151. package/ios/MLRN/MLRNHeatmapLayer.h +5 -0
  152. package/ios/MLRN/MLRNHeatmapLayer.m +24 -0
  153. package/ios/MLRN/MLRNHeatmapLayerManager.h +5 -0
  154. package/ios/MLRN/MLRNHeatmapLayerManager.m +31 -0
  155. package/ios/MLRN/MLRNImageQueue.h +11 -0
  156. package/ios/MLRN/MLRNImageQueue.m +49 -0
  157. package/ios/MLRN/MLRNImageQueueOperation.h +10 -0
  158. package/ios/MLRN/MLRNImageQueueOperation.m +130 -0
  159. package/ios/MLRN/MLRNImageSource.h +8 -0
  160. package/ios/MLRN/MLRNImageSource.m +52 -0
  161. package/ios/MLRN/MLRNImageSourceManager.h +5 -0
  162. package/ios/MLRN/MLRNImageSourceManager.m +17 -0
  163. package/ios/MLRN/MLRNImageUtils.h +9 -0
  164. package/ios/MLRN/MLRNImageUtils.m +23 -0
  165. package/ios/MLRN/MLRNImages.h +25 -0
  166. package/ios/MLRN/MLRNImages.m +126 -0
  167. package/ios/MLRN/MLRNImagesManager.h +5 -0
  168. package/ios/MLRN/MLRNImagesManager.m +21 -0
  169. package/ios/MLRN/MLRNLayer.h +44 -0
  170. package/ios/MLRN/MLRNLayer.m +228 -0
  171. package/ios/MLRN/MLRNLight.h +9 -0
  172. package/ios/MLRN/MLRNLight.m +38 -0
  173. package/ios/MLRN/MLRNLightManager.h +5 -0
  174. package/ios/MLRN/MLRNLightManager.m +15 -0
  175. package/ios/MLRN/MLRNLineLayer.h +5 -0
  176. package/ios/MLRN/MLRNLineLayer.m +25 -0
  177. package/ios/MLRN/MLRNLineLayerManager.h +5 -0
  178. package/ios/MLRN/MLRNLineLayerManager.m +32 -0
  179. package/ios/MLRN/MLRNLocation.h +11 -0
  180. package/ios/MLRN/MLRNLocation.m +24 -0
  181. package/ios/MLRN/MLRNLocationManager.h +22 -0
  182. package/ios/MLRN/MLRNLocationManager.m +172 -0
  183. package/ios/MLRN/MLRNLocationManagerDelegate.h +12 -0
  184. package/ios/MLRN/MLRNLocationModule.h +7 -0
  185. package/ios/MLRN/MLRNLocationModule.m +91 -0
  186. package/ios/MLRN/MLRNLogging.h +18 -0
  187. package/ios/MLRN/MLRNLogging.m +132 -0
  188. package/ios/MLRN/MLRNMapTouchEvent.h +17 -0
  189. package/ios/MLRN/MLRNMapTouchEvent.m +69 -0
  190. package/ios/MLRN/MLRNMapView.h +83 -0
  191. package/ios/MLRN/MLRNMapView.m +528 -0
  192. package/ios/MLRN/MLRNMapViewManager.h +9 -0
  193. package/ios/MLRN/MLRNMapViewManager.m +617 -0
  194. package/ios/MLRN/MLRNModule.h +5 -0
  195. package/ios/MLRN/MLRNModule.m +126 -0
  196. package/ios/MLRN/MLRNNativeUserLocation.h +11 -0
  197. package/ios/MLRN/MLRNNativeUserLocation.m +41 -0
  198. package/ios/MLRN/MLRNNativeUserLocationManager.h +5 -0
  199. package/ios/MLRN/MLRNNativeUserLocationManager.m +25 -0
  200. package/ios/MLRN/MLRNOfflineModule.h +11 -0
  201. package/ios/MLRN/MLRNOfflineModule.m +529 -0
  202. package/ios/MLRN/MLRNPointAnnotation.h +33 -0
  203. package/ios/MLRN/MLRNPointAnnotation.m +243 -0
  204. package/ios/MLRN/MLRNPointAnnotationManager.h +5 -0
  205. package/ios/MLRN/MLRNPointAnnotationManager.m +28 -0
  206. package/ios/MLRN/MLRNRasterLayer.h +5 -0
  207. package/ios/MLRN/MLRNRasterLayer.m +22 -0
  208. package/ios/MLRN/MLRNRasterLayerManager.h +5 -0
  209. package/ios/MLRN/MLRNRasterLayerManager.m +27 -0
  210. package/ios/MLRN/MLRNRasterSource.h +8 -0
  211. package/ios/MLRN/MLRNRasterSource.m +27 -0
  212. package/ios/MLRN/MLRNRasterSourceManager.h +5 -0
  213. package/ios/MLRN/MLRNRasterSourceManager.m +24 -0
  214. package/ios/MLRN/MLRNShapeSource.h +34 -0
  215. package/ios/MLRN/MLRNShapeSource.m +148 -0
  216. package/ios/MLRN/MLRNShapeSourceManager.h +6 -0
  217. package/ios/MLRN/MLRNShapeSourceManager.m +131 -0
  218. package/ios/MLRN/MLRNSnapshotModule.h +5 -0
  219. package/ios/MLRN/MLRNSnapshotModule.m +72 -0
  220. package/ios/MLRN/MLRNSource.h +27 -0
  221. package/ios/MLRN/MLRNSource.m +135 -0
  222. package/ios/MLRN/MLRNStyle.h +223 -0
  223. package/ios/MLRN/MLRNStyle.m +1682 -0
  224. package/ios/MLRN/MLRNStyleValue.h +19 -0
  225. package/ios/MLRN/MLRNStyleValue.m +159 -0
  226. package/ios/MLRN/MLRNSymbolLayer.h +5 -0
  227. package/ios/MLRN/MLRNSymbolLayer.m +25 -0
  228. package/ios/MLRN/MLRNSymbolLayerManager.h +5 -0
  229. package/ios/MLRN/MLRNSymbolLayerManager.m +31 -0
  230. package/ios/MLRN/MLRNTileSource.h +22 -0
  231. package/ios/MLRN/MLRNTileSource.m +31 -0
  232. package/ios/MLRN/MLRNUserLocation.h +15 -0
  233. package/ios/MLRN/MLRNUserLocation.m +38 -0
  234. package/ios/MLRN/MLRNUtils.h +23 -0
  235. package/ios/MLRN/MLRNUtils.m +210 -0
  236. package/ios/MLRN/MLRNVectorLayer.h +7 -0
  237. package/ios/MLRN/MLRNVectorLayer.m +51 -0
  238. package/ios/MLRN/MLRNVectorSource.h +8 -0
  239. package/ios/MLRN/MLRNVectorSource.m +20 -0
  240. package/ios/MLRN/MLRNVectorSourceManager.h +6 -0
  241. package/ios/MLRN/MLRNVectorSourceManager.m +71 -0
  242. package/ios/MLRN/ViewManager.h +8 -0
  243. package/ios/MLRN/ViewManager.m +55 -0
  244. package/ios/MLRN.xcodeproj/project.pbxproj +1 -0
  245. package/lib/commonjs/MLRNModule.js +29 -0
  246. package/lib/commonjs/MLRNModule.js.map +1 -0
  247. package/lib/commonjs/MapLibreRN.js +269 -0
  248. package/lib/commonjs/MapLibreRN.js.map +1 -0
  249. package/lib/commonjs/assets/png.d.js +2 -0
  250. package/lib/commonjs/assets/png.d.js.map +1 -0
  251. package/lib/commonjs/components/Annotation.js +109 -0
  252. package/lib/commonjs/components/Annotation.js.map +1 -0
  253. package/lib/commonjs/components/BackgroundLayer.js +33 -0
  254. package/lib/commonjs/components/BackgroundLayer.js.map +1 -0
  255. package/lib/commonjs/components/Callout.js +101 -0
  256. package/lib/commonjs/components/Callout.js.map +1 -0
  257. package/lib/commonjs/components/Camera.js +285 -0
  258. package/lib/commonjs/components/Camera.js.map +1 -0
  259. package/lib/commonjs/components/CircleLayer.js +37 -0
  260. package/lib/commonjs/components/CircleLayer.js.map +1 -0
  261. package/lib/commonjs/components/FillExtrusionLayer.js +36 -0
  262. package/lib/commonjs/components/FillExtrusionLayer.js.map +1 -0
  263. package/lib/commonjs/components/FillLayer.js +36 -0
  264. package/lib/commonjs/components/FillLayer.js.map +1 -0
  265. package/lib/commonjs/components/HeadingIndicator.js +28 -0
  266. package/lib/commonjs/components/HeadingIndicator.js.map +1 -0
  267. package/lib/commonjs/components/HeatmapLayer.js +35 -0
  268. package/lib/commonjs/components/HeatmapLayer.js.map +1 -0
  269. package/lib/commonjs/components/ImageSource.js +42 -0
  270. package/lib/commonjs/components/ImageSource.js.map +1 -0
  271. package/lib/commonjs/components/Images.js +76 -0
  272. package/lib/commonjs/components/Images.js.map +1 -0
  273. package/lib/commonjs/components/Light.js +32 -0
  274. package/lib/commonjs/components/Light.js.map +1 -0
  275. package/lib/commonjs/components/LineLayer.js +36 -0
  276. package/lib/commonjs/components/LineLayer.js.map +1 -0
  277. package/lib/commonjs/components/MapView.js +456 -0
  278. package/lib/commonjs/components/MapView.js.map +1 -0
  279. package/lib/commonjs/components/MarkerView.js +61 -0
  280. package/lib/commonjs/components/MarkerView.js.map +1 -0
  281. package/lib/commonjs/components/NativeUserLocation.js +17 -0
  282. package/lib/commonjs/components/NativeUserLocation.js.map +1 -0
  283. package/lib/commonjs/components/PointAnnotation.js +121 -0
  284. package/lib/commonjs/components/PointAnnotation.js.map +1 -0
  285. package/lib/commonjs/components/RasterLayer.js +32 -0
  286. package/lib/commonjs/components/RasterLayer.js.map +1 -0
  287. package/lib/commonjs/components/RasterSource.js +67 -0
  288. package/lib/commonjs/components/RasterSource.js.map +1 -0
  289. package/lib/commonjs/components/ShapeSource.js +171 -0
  290. package/lib/commonjs/components/ShapeSource.js.map +1 -0
  291. package/lib/commonjs/components/SymbolLayer.js +38 -0
  292. package/lib/commonjs/components/SymbolLayer.js.map +1 -0
  293. package/lib/commonjs/components/UserLocation.js +188 -0
  294. package/lib/commonjs/components/UserLocation.js.map +1 -0
  295. package/lib/commonjs/components/VectorSource.js +119 -0
  296. package/lib/commonjs/components/VectorSource.js.map +1 -0
  297. package/lib/commonjs/hooks/useAbstractLayer.js +53 -0
  298. package/lib/commonjs/hooks/useAbstractLayer.js.map +1 -0
  299. package/lib/commonjs/hooks/useAbstractSource.js +24 -0
  300. package/lib/commonjs/hooks/useAbstractSource.js.map +1 -0
  301. package/lib/commonjs/hooks/useNativeBridge.js +84 -0
  302. package/lib/commonjs/hooks/useNativeBridge.js.map +1 -0
  303. package/lib/commonjs/hooks/useNativeRef.js +14 -0
  304. package/lib/commonjs/hooks/useNativeRef.js.map +1 -0
  305. package/lib/commonjs/hooks/useOnce.js +16 -0
  306. package/lib/commonjs/hooks/useOnce.js.map +1 -0
  307. package/lib/commonjs/index.js +23 -0
  308. package/lib/commonjs/index.js.map +1 -0
  309. package/lib/commonjs/modules/location/locationManager.js +91 -0
  310. package/lib/commonjs/modules/location/locationManager.js.map +1 -0
  311. package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js +37 -0
  312. package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js.map +1 -0
  313. package/lib/commonjs/modules/offline/OfflinePack.js +40 -0
  314. package/lib/commonjs/modules/offline/OfflinePack.js.map +1 -0
  315. package/lib/commonjs/modules/offline/offlineManager.js +346 -0
  316. package/lib/commonjs/modules/offline/offlineManager.js.map +1 -0
  317. package/lib/commonjs/modules/snapshot/SnapshotOptions.js +58 -0
  318. package/lib/commonjs/modules/snapshot/SnapshotOptions.js.map +1 -0
  319. package/lib/commonjs/modules/snapshot/snapshotManager.js +66 -0
  320. package/lib/commonjs/modules/snapshot/snapshotManager.js.map +1 -0
  321. package/lib/commonjs/requestAndroidLocationPermissions.js +25 -0
  322. package/lib/commonjs/requestAndroidLocationPermissions.js.map +1 -0
  323. package/lib/commonjs/types/BaseProps.js +2 -0
  324. package/lib/commonjs/types/BaseProps.js.map +1 -0
  325. package/lib/commonjs/types/CameraMode.js +14 -0
  326. package/lib/commonjs/types/CameraMode.js.map +1 -0
  327. package/lib/commonjs/types/MapLibreRNEvent.js +6 -0
  328. package/lib/commonjs/types/MapLibreRNEvent.js.map +1 -0
  329. package/lib/commonjs/types/MapLibreRNStyles.js +6 -0
  330. package/lib/commonjs/types/MapLibreRNStyles.js.map +1 -0
  331. package/lib/commonjs/types/OnPressEvent.js +2 -0
  332. package/lib/commonjs/types/OnPressEvent.js.map +1 -0
  333. package/lib/commonjs/types/StyleURL.js +11 -0
  334. package/lib/commonjs/types/StyleURL.js.map +1 -0
  335. package/lib/commonjs/utils/BridgeValue.js +59 -0
  336. package/lib/commonjs/utils/BridgeValue.js.map +1 -0
  337. package/lib/commonjs/utils/Logger.js +116 -0
  338. package/lib/commonjs/utils/Logger.js.map +1 -0
  339. package/lib/commonjs/utils/StyleValue.js +39 -0
  340. package/lib/commonjs/utils/StyleValue.js.map +1 -0
  341. package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js +95 -0
  342. package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
  343. package/lib/commonjs/utils/animated/Animated.js +47 -0
  344. package/lib/commonjs/utils/animated/Animated.js.map +1 -0
  345. package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js +92 -0
  346. package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
  347. package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js +40 -0
  348. package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
  349. package/lib/commonjs/utils/animated/AnimatedPoint.js +111 -0
  350. package/lib/commonjs/utils/animated/AnimatedPoint.js.map +1 -0
  351. package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +137 -0
  352. package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
  353. package/lib/commonjs/utils/animated/AnimatedShape.js +75 -0
  354. package/lib/commonjs/utils/animated/AnimatedShape.js.map +1 -0
  355. package/lib/commonjs/utils/filterUtils.js +13 -0
  356. package/lib/commonjs/utils/filterUtils.js.map +1 -0
  357. package/lib/commonjs/utils/getStylePropertyType.js +252 -0
  358. package/lib/commonjs/utils/getStylePropertyType.js.map +1 -0
  359. package/lib/commonjs/utils/index.js +84 -0
  360. package/lib/commonjs/utils/index.js.map +1 -0
  361. package/lib/commonjs/utils/makeNativeBounds.js +11 -0
  362. package/lib/commonjs/utils/makeNativeBounds.js.map +1 -0
  363. package/lib/module/MLRNModule.js +16 -0
  364. package/lib/module/MLRNModule.js.map +1 -0
  365. package/lib/module/MapLibreRN.js +33 -0
  366. package/lib/module/MapLibreRN.js.map +1 -0
  367. package/lib/module/assets/heading.png +0 -0
  368. package/lib/module/assets/heading@2x.png +0 -0
  369. package/lib/module/assets/heading@3x.png +0 -0
  370. package/lib/module/assets/png.d.js +2 -0
  371. package/lib/module/assets/png.d.js.map +1 -0
  372. package/lib/module/components/Annotation.js +104 -0
  373. package/lib/module/components/Annotation.js.map +1 -0
  374. package/lib/module/components/BackgroundLayer.js +28 -0
  375. package/lib/module/components/BackgroundLayer.js.map +1 -0
  376. package/lib/module/components/Callout.js +97 -0
  377. package/lib/module/components/Callout.js.map +1 -0
  378. package/lib/module/components/Camera.js +280 -0
  379. package/lib/module/components/Camera.js.map +1 -0
  380. package/lib/module/components/CircleLayer.js +32 -0
  381. package/lib/module/components/CircleLayer.js.map +1 -0
  382. package/lib/module/components/FillExtrusionLayer.js +31 -0
  383. package/lib/module/components/FillExtrusionLayer.js.map +1 -0
  384. package/lib/module/components/FillLayer.js +31 -0
  385. package/lib/module/components/FillLayer.js.map +1 -0
  386. package/lib/module/components/HeadingIndicator.js +23 -0
  387. package/lib/module/components/HeadingIndicator.js.map +1 -0
  388. package/lib/module/components/HeatmapLayer.js +30 -0
  389. package/lib/module/components/HeatmapLayer.js.map +1 -0
  390. package/lib/module/components/ImageSource.js +37 -0
  391. package/lib/module/components/ImageSource.js.map +1 -0
  392. package/lib/module/components/Images.js +72 -0
  393. package/lib/module/components/Images.js.map +1 -0
  394. package/lib/module/components/Light.js +27 -0
  395. package/lib/module/components/Light.js.map +1 -0
  396. package/lib/module/components/LineLayer.js +31 -0
  397. package/lib/module/components/LineLayer.js.map +1 -0
  398. package/lib/module/components/MapView.js +451 -0
  399. package/lib/module/components/MapView.js.map +1 -0
  400. package/lib/module/components/MarkerView.js +56 -0
  401. package/lib/module/components/MarkerView.js.map +1 -0
  402. package/lib/module/components/NativeUserLocation.js +13 -0
  403. package/lib/module/components/NativeUserLocation.js.map +1 -0
  404. package/lib/module/components/PointAnnotation.js +116 -0
  405. package/lib/module/components/PointAnnotation.js.map +1 -0
  406. package/lib/module/components/RasterLayer.js +27 -0
  407. package/lib/module/components/RasterLayer.js.map +1 -0
  408. package/lib/module/components/RasterSource.js +62 -0
  409. package/lib/module/components/RasterSource.js.map +1 -0
  410. package/lib/module/components/ShapeSource.js +166 -0
  411. package/lib/module/components/ShapeSource.js.map +1 -0
  412. package/lib/module/components/SymbolLayer.js +33 -0
  413. package/lib/module/components/SymbolLayer.js.map +1 -0
  414. package/lib/module/components/UserLocation.js +182 -0
  415. package/lib/module/components/UserLocation.js.map +1 -0
  416. package/lib/module/components/VectorSource.js +114 -0
  417. package/lib/module/components/VectorSource.js.map +1 -0
  418. package/lib/module/hooks/useAbstractLayer.js +49 -0
  419. package/lib/module/hooks/useAbstractLayer.js.map +1 -0
  420. package/lib/module/hooks/useAbstractSource.js +20 -0
  421. package/lib/module/hooks/useAbstractSource.js.map +1 -0
  422. package/lib/module/hooks/useNativeBridge.js +80 -0
  423. package/lib/module/hooks/useNativeBridge.js.map +1 -0
  424. package/lib/module/hooks/useNativeRef.js +10 -0
  425. package/lib/module/hooks/useNativeRef.js.map +1 -0
  426. package/lib/module/hooks/useOnce.js +12 -0
  427. package/lib/module/hooks/useOnce.js.map +1 -0
  428. package/lib/module/index.js +6 -0
  429. package/lib/module/index.js.map +1 -0
  430. package/lib/module/modules/location/locationManager.js +87 -0
  431. package/lib/module/modules/location/locationManager.js.map +1 -0
  432. package/lib/module/modules/offline/OfflineCreatePackOptions.js +33 -0
  433. package/lib/module/modules/offline/OfflineCreatePackOptions.js.map +1 -0
  434. package/lib/module/modules/offline/OfflinePack.js +36 -0
  435. package/lib/module/modules/offline/OfflinePack.js.map +1 -0
  436. package/lib/module/modules/offline/offlineManager.js +341 -0
  437. package/lib/module/modules/offline/offlineManager.js.map +1 -0
  438. package/lib/module/modules/snapshot/SnapshotOptions.js +53 -0
  439. package/lib/module/modules/snapshot/SnapshotOptions.js.map +1 -0
  440. package/lib/module/modules/snapshot/snapshotManager.js +61 -0
  441. package/lib/module/modules/snapshot/snapshotManager.js.map +1 -0
  442. package/lib/module/requestAndroidLocationPermissions.js +21 -0
  443. package/lib/module/requestAndroidLocationPermissions.js.map +1 -0
  444. package/lib/module/types/BaseProps.js +2 -0
  445. package/lib/module/types/BaseProps.js.map +1 -0
  446. package/lib/module/types/CameraMode.js +10 -0
  447. package/lib/module/types/CameraMode.js.map +1 -0
  448. package/lib/module/types/MapLibreRNEvent.js +4 -0
  449. package/lib/module/types/MapLibreRNEvent.js.map +1 -0
  450. package/lib/module/types/MapLibreRNStyles.js +4 -0
  451. package/lib/module/types/MapLibreRNStyles.js.map +1 -0
  452. package/lib/module/types/OnPressEvent.js +2 -0
  453. package/lib/module/types/OnPressEvent.js.map +1 -0
  454. package/lib/module/types/StyleURL.js +7 -0
  455. package/lib/module/types/StyleURL.js.map +1 -0
  456. package/lib/module/utils/BridgeValue.js +54 -0
  457. package/lib/module/utils/BridgeValue.js.map +1 -0
  458. package/lib/module/utils/Logger.js +112 -0
  459. package/lib/module/utils/Logger.js.map +1 -0
  460. package/lib/module/utils/StyleValue.js +34 -0
  461. package/lib/module/utils/StyleValue.js.map +1 -0
  462. package/lib/module/utils/animated/AbstractAnimatedCoordinates.js +92 -0
  463. package/lib/module/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
  464. package/lib/module/utils/animated/Animated.js +42 -0
  465. package/lib/module/utils/animated/Animated.js.map +1 -0
  466. package/lib/module/utils/animated/AnimatedCoordinatesArray.js +87 -0
  467. package/lib/module/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
  468. package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js +36 -0
  469. package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
  470. package/lib/module/utils/animated/AnimatedPoint.js +107 -0
  471. package/lib/module/utils/animated/AnimatedPoint.js.map +1 -0
  472. package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +131 -0
  473. package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
  474. package/lib/module/utils/animated/AnimatedShape.js +71 -0
  475. package/lib/module/utils/animated/AnimatedShape.js.map +1 -0
  476. package/lib/module/utils/filterUtils.js +9 -0
  477. package/lib/module/utils/filterUtils.js.map +1 -0
  478. package/lib/module/utils/getStylePropertyType.js +248 -0
  479. package/lib/module/utils/getStylePropertyType.js.map +1 -0
  480. package/lib/module/utils/index.js +69 -0
  481. package/lib/module/utils/index.js.map +1 -0
  482. package/lib/module/utils/makeNativeBounds.js +7 -0
  483. package/lib/module/utils/makeNativeBounds.js.map +1 -0
  484. package/lib/typescript/commonjs/jest.config.d.ts +2 -0
  485. package/lib/typescript/commonjs/jest.config.d.ts.map +1 -0
  486. package/lib/typescript/commonjs/package.json +1 -0
  487. package/lib/typescript/commonjs/src/MLRNModule.d.ts +17 -0
  488. package/lib/typescript/commonjs/src/MLRNModule.d.ts.map +1 -0
  489. package/lib/typescript/commonjs/src/MapLibreRN.d.ts +39 -0
  490. package/lib/typescript/commonjs/src/MapLibreRN.d.ts.map +1 -0
  491. package/lib/typescript/commonjs/src/components/Annotation.d.ts +21 -0
  492. package/lib/typescript/commonjs/src/components/Annotation.d.ts.map +1 -0
  493. package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts +14 -0
  494. package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts.map +1 -0
  495. package/lib/typescript/commonjs/src/components/Callout.d.ts +35 -0
  496. package/lib/typescript/commonjs/src/components/Callout.d.ts.map +1 -0
  497. package/lib/typescript/commonjs/src/components/Camera.d.ts +134 -0
  498. package/lib/typescript/commonjs/src/components/Camera.d.ts.map +1 -0
  499. package/lib/typescript/commonjs/src/components/CircleLayer.d.ts +17 -0
  500. package/lib/typescript/commonjs/src/components/CircleLayer.d.ts.map +1 -0
  501. package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts +17 -0
  502. package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts.map +1 -0
  503. package/lib/typescript/commonjs/src/components/FillLayer.d.ts +17 -0
  504. package/lib/typescript/commonjs/src/components/FillLayer.d.ts.map +1 -0
  505. package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts +8 -0
  506. package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts.map +1 -0
  507. package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts +17 -0
  508. package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts.map +1 -0
  509. package/lib/typescript/commonjs/src/components/ImageSource.d.ts +31 -0
  510. package/lib/typescript/commonjs/src/components/ImageSource.d.ts.map +1 -0
  511. package/lib/typescript/commonjs/src/components/Images.d.ts +33 -0
  512. package/lib/typescript/commonjs/src/components/Images.d.ts.map +1 -0
  513. package/lib/typescript/commonjs/src/components/Light.d.ts +17 -0
  514. package/lib/typescript/commonjs/src/components/Light.d.ts.map +1 -0
  515. package/lib/typescript/commonjs/src/components/LineLayer.d.ts +17 -0
  516. package/lib/typescript/commonjs/src/components/LineLayer.d.ts.map +1 -0
  517. package/lib/typescript/commonjs/src/components/MapView.d.ts +234 -0
  518. package/lib/typescript/commonjs/src/components/MapView.d.ts.map +1 -0
  519. package/lib/typescript/commonjs/src/components/MarkerView.d.ts +44 -0
  520. package/lib/typescript/commonjs/src/components/MarkerView.d.ts.map +1 -0
  521. package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts +26 -0
  522. package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts.map +1 -0
  523. package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts +91 -0
  524. package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts.map +1 -0
  525. package/lib/typescript/commonjs/src/components/RasterLayer.d.ts +14 -0
  526. package/lib/typescript/commonjs/src/components/RasterLayer.d.ts.map +1 -0
  527. package/lib/typescript/commonjs/src/components/RasterSource.d.ts +53 -0
  528. package/lib/typescript/commonjs/src/components/RasterSource.d.ts.map +1 -0
  529. package/lib/typescript/commonjs/src/components/ShapeSource.d.ts +123 -0
  530. package/lib/typescript/commonjs/src/components/ShapeSource.d.ts.map +1 -0
  531. package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts +16 -0
  532. package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts.map +1 -0
  533. package/lib/typescript/commonjs/src/components/UserLocation.d.ts +70 -0
  534. package/lib/typescript/commonjs/src/components/UserLocation.d.ts.map +1 -0
  535. package/lib/typescript/commonjs/src/components/VectorSource.d.ts +70 -0
  536. package/lib/typescript/commonjs/src/components/VectorSource.d.ts.map +1 -0
  537. package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts +62 -0
  538. package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts.map +1 -0
  539. package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts +7 -0
  540. package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts.map +1 -0
  541. package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts +21 -0
  542. package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts.map +1 -0
  543. package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts +8 -0
  544. package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts.map +1 -0
  545. package/lib/typescript/commonjs/src/hooks/useOnce.d.ts +3 -0
  546. package/lib/typescript/commonjs/src/hooks/useOnce.d.ts.map +1 -0
  547. package/lib/typescript/commonjs/src/index.d.ts +4 -0
  548. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  549. package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts +64 -0
  550. package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts.map +1 -0
  551. package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts +21 -0
  552. package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -0
  553. package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts +24 -0
  554. package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts.map +1 -0
  555. package/lib/typescript/commonjs/src/modules/offline/offlineManager.d.ts +200 -0
  556. package/lib/typescript/commonjs/src/modules/offline/offlineManager.d.ts.map +1 -0
  557. package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts +42 -0
  558. package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -0
  559. package/lib/typescript/commonjs/src/modules/snapshot/snapshotManager.d.ts +52 -0
  560. package/lib/typescript/commonjs/src/modules/snapshot/snapshotManager.d.ts.map +1 -0
  561. package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts +2 -0
  562. package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts.map +1 -0
  563. package/lib/typescript/commonjs/src/types/BaseProps.d.ts +4 -0
  564. package/lib/typescript/commonjs/src/types/BaseProps.d.ts.map +1 -0
  565. package/lib/typescript/commonjs/src/types/CameraMode.d.ts +7 -0
  566. package/lib/typescript/commonjs/src/types/CameraMode.d.ts.map +1 -0
  567. package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts +6 -0
  568. package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts.map +1 -0
  569. package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts +960 -0
  570. package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts.map +1 -0
  571. package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts +12 -0
  572. package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts.map +1 -0
  573. package/lib/typescript/commonjs/src/types/StyleURL.d.ts +4 -0
  574. package/lib/typescript/commonjs/src/types/StyleURL.d.ts.map +1 -0
  575. package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts +29 -0
  576. package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts.map +1 -0
  577. package/lib/typescript/commonjs/src/utils/Logger.d.ts +52 -0
  578. package/lib/typescript/commonjs/src/utils/Logger.d.ts.map +1 -0
  579. package/lib/typescript/commonjs/src/utils/StyleValue.d.ts +10 -0
  580. package/lib/typescript/commonjs/src/utils/StyleValue.d.ts.map +1 -0
  581. package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts +37 -0
  582. package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  583. package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts +33 -0
  584. package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +1 -0
  585. package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
  586. package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  587. package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +12 -0
  588. package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  589. package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts +32 -0
  590. package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts.map +1 -0
  591. package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +54 -0
  592. package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  593. package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts +28 -0
  594. package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts.map +1 -0
  595. package/lib/typescript/commonjs/src/utils/filterUtils.d.ts +3 -0
  596. package/lib/typescript/commonjs/src/utils/filterUtils.d.ts.map +1 -0
  597. package/lib/typescript/commonjs/src/utils/getStylePropertyType.d.ts +35 -0
  598. package/lib/typescript/commonjs/src/utils/getStylePropertyType.d.ts.map +1 -0
  599. package/lib/typescript/commonjs/src/utils/index.d.ts +20 -0
  600. package/lib/typescript/commonjs/src/utils/index.d.ts.map +1 -0
  601. package/lib/typescript/commonjs/src/utils/makeNativeBounds.d.ts +2 -0
  602. package/lib/typescript/commonjs/src/utils/makeNativeBounds.d.ts.map +1 -0
  603. package/lib/typescript/module/jest.config.d.ts +2 -0
  604. package/lib/typescript/module/jest.config.d.ts.map +1 -0
  605. package/lib/typescript/module/package.json +1 -0
  606. package/lib/typescript/module/src/MLRNModule.d.ts +17 -0
  607. package/lib/typescript/module/src/MLRNModule.d.ts.map +1 -0
  608. package/lib/typescript/module/src/MapLibreRN.d.ts +39 -0
  609. package/lib/typescript/module/src/MapLibreRN.d.ts.map +1 -0
  610. package/lib/typescript/module/src/components/Annotation.d.ts +21 -0
  611. package/lib/typescript/module/src/components/Annotation.d.ts.map +1 -0
  612. package/lib/typescript/module/src/components/BackgroundLayer.d.ts +14 -0
  613. package/lib/typescript/module/src/components/BackgroundLayer.d.ts.map +1 -0
  614. package/lib/typescript/module/src/components/Callout.d.ts +35 -0
  615. package/lib/typescript/module/src/components/Callout.d.ts.map +1 -0
  616. package/lib/typescript/module/src/components/Camera.d.ts +134 -0
  617. package/lib/typescript/module/src/components/Camera.d.ts.map +1 -0
  618. package/lib/typescript/module/src/components/CircleLayer.d.ts +17 -0
  619. package/lib/typescript/module/src/components/CircleLayer.d.ts.map +1 -0
  620. package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts +17 -0
  621. package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts.map +1 -0
  622. package/lib/typescript/module/src/components/FillLayer.d.ts +17 -0
  623. package/lib/typescript/module/src/components/FillLayer.d.ts.map +1 -0
  624. package/lib/typescript/module/src/components/HeadingIndicator.d.ts +8 -0
  625. package/lib/typescript/module/src/components/HeadingIndicator.d.ts.map +1 -0
  626. package/lib/typescript/module/src/components/HeatmapLayer.d.ts +17 -0
  627. package/lib/typescript/module/src/components/HeatmapLayer.d.ts.map +1 -0
  628. package/lib/typescript/module/src/components/ImageSource.d.ts +31 -0
  629. package/lib/typescript/module/src/components/ImageSource.d.ts.map +1 -0
  630. package/lib/typescript/module/src/components/Images.d.ts +33 -0
  631. package/lib/typescript/module/src/components/Images.d.ts.map +1 -0
  632. package/lib/typescript/module/src/components/Light.d.ts +17 -0
  633. package/lib/typescript/module/src/components/Light.d.ts.map +1 -0
  634. package/lib/typescript/module/src/components/LineLayer.d.ts +17 -0
  635. package/lib/typescript/module/src/components/LineLayer.d.ts.map +1 -0
  636. package/lib/typescript/module/src/components/MapView.d.ts +234 -0
  637. package/lib/typescript/module/src/components/MapView.d.ts.map +1 -0
  638. package/lib/typescript/module/src/components/MarkerView.d.ts +44 -0
  639. package/lib/typescript/module/src/components/MarkerView.d.ts.map +1 -0
  640. package/lib/typescript/module/src/components/NativeUserLocation.d.ts +26 -0
  641. package/lib/typescript/module/src/components/NativeUserLocation.d.ts.map +1 -0
  642. package/lib/typescript/module/src/components/PointAnnotation.d.ts +91 -0
  643. package/lib/typescript/module/src/components/PointAnnotation.d.ts.map +1 -0
  644. package/lib/typescript/module/src/components/RasterLayer.d.ts +14 -0
  645. package/lib/typescript/module/src/components/RasterLayer.d.ts.map +1 -0
  646. package/lib/typescript/module/src/components/RasterSource.d.ts +53 -0
  647. package/lib/typescript/module/src/components/RasterSource.d.ts.map +1 -0
  648. package/lib/typescript/module/src/components/ShapeSource.d.ts +123 -0
  649. package/lib/typescript/module/src/components/ShapeSource.d.ts.map +1 -0
  650. package/lib/typescript/module/src/components/SymbolLayer.d.ts +16 -0
  651. package/lib/typescript/module/src/components/SymbolLayer.d.ts.map +1 -0
  652. package/lib/typescript/module/src/components/UserLocation.d.ts +70 -0
  653. package/lib/typescript/module/src/components/UserLocation.d.ts.map +1 -0
  654. package/lib/typescript/module/src/components/VectorSource.d.ts +70 -0
  655. package/lib/typescript/module/src/components/VectorSource.d.ts.map +1 -0
  656. package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts +62 -0
  657. package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts.map +1 -0
  658. package/lib/typescript/module/src/hooks/useAbstractSource.d.ts +7 -0
  659. package/lib/typescript/module/src/hooks/useAbstractSource.d.ts.map +1 -0
  660. package/lib/typescript/module/src/hooks/useNativeBridge.d.ts +21 -0
  661. package/lib/typescript/module/src/hooks/useNativeBridge.d.ts.map +1 -0
  662. package/lib/typescript/module/src/hooks/useNativeRef.d.ts +8 -0
  663. package/lib/typescript/module/src/hooks/useNativeRef.d.ts.map +1 -0
  664. package/lib/typescript/module/src/hooks/useOnce.d.ts +3 -0
  665. package/lib/typescript/module/src/hooks/useOnce.d.ts.map +1 -0
  666. package/lib/typescript/module/src/index.d.ts +4 -0
  667. package/lib/typescript/module/src/index.d.ts.map +1 -0
  668. package/lib/typescript/module/src/modules/location/locationManager.d.ts +64 -0
  669. package/lib/typescript/module/src/modules/location/locationManager.d.ts.map +1 -0
  670. package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts +21 -0
  671. package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -0
  672. package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts +24 -0
  673. package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts.map +1 -0
  674. package/lib/typescript/module/src/modules/offline/offlineManager.d.ts +200 -0
  675. package/lib/typescript/module/src/modules/offline/offlineManager.d.ts.map +1 -0
  676. package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts +42 -0
  677. package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -0
  678. package/lib/typescript/module/src/modules/snapshot/snapshotManager.d.ts +52 -0
  679. package/lib/typescript/module/src/modules/snapshot/snapshotManager.d.ts.map +1 -0
  680. package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts +2 -0
  681. package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts.map +1 -0
  682. package/lib/typescript/module/src/types/BaseProps.d.ts +4 -0
  683. package/lib/typescript/module/src/types/BaseProps.d.ts.map +1 -0
  684. package/lib/typescript/module/src/types/CameraMode.d.ts +7 -0
  685. package/lib/typescript/module/src/types/CameraMode.d.ts.map +1 -0
  686. package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts +6 -0
  687. package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts.map +1 -0
  688. package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts +960 -0
  689. package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts.map +1 -0
  690. package/lib/typescript/module/src/types/OnPressEvent.d.ts +12 -0
  691. package/lib/typescript/module/src/types/OnPressEvent.d.ts.map +1 -0
  692. package/lib/typescript/module/src/types/StyleURL.d.ts +4 -0
  693. package/lib/typescript/module/src/types/StyleURL.d.ts.map +1 -0
  694. package/lib/typescript/module/src/utils/BridgeValue.d.ts +29 -0
  695. package/lib/typescript/module/src/utils/BridgeValue.d.ts.map +1 -0
  696. package/lib/typescript/module/src/utils/Logger.d.ts +52 -0
  697. package/lib/typescript/module/src/utils/Logger.d.ts.map +1 -0
  698. package/lib/typescript/module/src/utils/StyleValue.d.ts +10 -0
  699. package/lib/typescript/module/src/utils/StyleValue.d.ts.map +1 -0
  700. package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts +37 -0
  701. package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  702. package/lib/typescript/module/src/utils/animated/Animated.d.ts +33 -0
  703. package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +1 -0
  704. package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
  705. package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  706. package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +12 -0
  707. package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  708. package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts +32 -0
  709. package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts.map +1 -0
  710. package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +54 -0
  711. package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  712. package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts +28 -0
  713. package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts.map +1 -0
  714. package/lib/typescript/module/src/utils/filterUtils.d.ts +3 -0
  715. package/lib/typescript/module/src/utils/filterUtils.d.ts.map +1 -0
  716. package/lib/typescript/module/src/utils/getStylePropertyType.d.ts +35 -0
  717. package/lib/typescript/module/src/utils/getStylePropertyType.d.ts.map +1 -0
  718. package/lib/typescript/module/src/utils/index.d.ts +20 -0
  719. package/lib/typescript/module/src/utils/index.d.ts.map +1 -0
  720. package/lib/typescript/module/src/utils/makeNativeBounds.d.ts +2 -0
  721. package/lib/typescript/module/src/utils/makeNativeBounds.d.ts.map +1 -0
  722. package/maplibre-react-native.podspec +14 -14
  723. package/package.json +141 -110
  724. package/plugin/build/withMapLibre.d.ts +1 -1
  725. package/plugin/build/withMapLibre.js +31 -17
  726. package/src/MLRNModule.ts +52 -0
  727. package/src/MapLibreRN.ts +69 -0
  728. package/src/assets/heading.png +0 -0
  729. package/src/assets/heading@2x.png +0 -0
  730. package/src/assets/heading@3x.png +0 -0
  731. package/src/components/Annotation.tsx +164 -0
  732. package/src/components/BackgroundLayer.tsx +50 -0
  733. package/src/components/Callout.tsx +141 -0
  734. package/src/components/Camera.tsx +492 -0
  735. package/src/components/CircleLayer.tsx +52 -0
  736. package/src/components/FillExtrusionLayer.tsx +47 -0
  737. package/src/components/FillLayer.tsx +44 -0
  738. package/src/components/HeadingIndicator.tsx +30 -0
  739. package/src/components/HeatmapLayer.tsx +46 -0
  740. package/src/components/ImageSource.tsx +70 -0
  741. package/src/components/Images.tsx +127 -0
  742. package/src/components/Light.tsx +40 -0
  743. package/src/components/LineLayer.tsx +45 -0
  744. package/src/components/MapView.tsx +868 -0
  745. package/src/components/MarkerView.tsx +88 -0
  746. package/src/components/NativeUserLocation.tsx +35 -0
  747. package/src/components/PointAnnotation.tsx +245 -0
  748. package/src/components/RasterLayer.tsx +43 -0
  749. package/src/components/RasterSource.tsx +114 -0
  750. package/src/components/ShapeSource.tsx +368 -0
  751. package/src/components/SymbolLayer.tsx +49 -0
  752. package/src/components/UserLocation.tsx +307 -0
  753. package/src/components/VectorSource.tsx +202 -0
  754. package/src/hooks/useAbstractLayer.ts +127 -0
  755. package/src/hooks/useAbstractSource.ts +34 -0
  756. package/src/hooks/useNativeBridge.ts +125 -0
  757. package/src/hooks/useNativeRef.ts +14 -0
  758. package/src/index.ts +4 -0
  759. package/src/modules/location/locationManager.ts +161 -0
  760. package/src/modules/offline/OfflineCreatePackOptions.ts +55 -0
  761. package/src/modules/offline/OfflinePack.ts +56 -0
  762. package/src/modules/offline/offlineManager.ts +424 -0
  763. package/src/modules/snapshot/SnapshotOptions.ts +103 -0
  764. package/src/modules/snapshot/snapshotManager.ts +62 -0
  765. package/src/requestAndroidLocationPermissions.ts +29 -0
  766. package/src/types/BaseProps.ts +3 -0
  767. package/src/types/CameraMode.ts +6 -0
  768. package/src/types/MapLibreRNEvent.ts +7 -0
  769. package/src/types/MapLibreRNStyles.ts +1174 -0
  770. package/src/types/OnPressEvent.ts +11 -0
  771. package/src/types/StyleURL.ts +3 -0
  772. package/src/utils/BridgeValue.ts +90 -0
  773. package/src/utils/Logger.ts +133 -0
  774. package/src/utils/StyleValue.ts +51 -0
  775. package/src/utils/animated/Animated.ts +61 -0
  776. package/src/utils/animated/AnimatedCoordinatesArray.ts +113 -0
  777. package/src/utils/animated/AnimatedPoint.ts +134 -0
  778. package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +150 -0
  779. package/src/utils/filterUtils.ts +9 -0
  780. package/src/utils/getStylePropertyType.ts +265 -0
  781. package/src/utils/index.ts +118 -0
  782. package/src/utils/makeNativeBounds.ts +5 -0
  783. package/.gitattributes +0 -1
  784. package/.husky/pre-commit +0 -5
  785. package/.nvmrc +0 -1
  786. package/.sonarcloud.properties +0 -15
  787. package/CHANGELOG.md +0 -432
  788. package/CODE_OF_CONDUCT.md +0 -2
  789. package/CONTRIBUTING.md +0 -55
  790. package/RELEASE.md +0 -30
  791. package/android/install.md +0 -31
  792. package/android/rctmln/.settings/org.eclipse.buildship.core.prefs +0 -2
  793. package/android/rctmln/build.gradle +0 -59
  794. package/android/rctmln/proguard-rules.pro +0 -25
  795. package/android/rctmln/src/main/AndroidManifest.xml +0 -4
  796. package/android/rctmln/src/main/java/com/maplibre/rctmln/RCTMLNPackage.java +0 -99
  797. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractEvent.java +0 -35
  798. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractEventEmitter.java +0 -80
  799. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractMapFeature.java +0 -19
  800. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/MarkerView.java +0 -23
  801. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/MarkerViewManager.java +0 -69
  802. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCallout.java +0 -15
  803. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCalloutManager.java +0 -22
  804. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerView.java +0 -112
  805. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerViewManager.java +0 -45
  806. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotation.java +0 -361
  807. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotationManager.java +0 -88
  808. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraStop.java +0 -251
  809. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraUpdateItem.java +0 -125
  810. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraUpdateQueue.java +0 -73
  811. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCamera.java +0 -530
  812. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCameraManager.java +0 -101
  813. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/constants/CameraMode.java +0 -22
  814. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImages.java +0 -234
  815. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImagesManager.java +0 -103
  816. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/LocationComponentManager.java +0 -149
  817. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocation.java +0 -66
  818. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocationManager.java +0 -35
  819. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/LayerSourceInfo.java +0 -59
  820. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapView.java +0 -16
  821. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapViewManager.java +0 -31
  822. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapView.java +0 -1527
  823. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapViewManager.java +0 -353
  824. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/helpers/CameraChangeTracker.java +0 -41
  825. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyle.java +0 -83
  826. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFactory.java +0 -2275
  827. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFunctionParser.java +0 -107
  828. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleValue.java +0 -212
  829. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTLayer.java +0 -287
  830. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayer.java +0 -27
  831. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayerManager.java +0 -64
  832. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayer.java +0 -55
  833. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayerManager.java +0 -77
  834. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayer.java +0 -55
  835. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayerManager.java +0 -80
  836. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayer.java +0 -55
  837. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayerManager.java +0 -80
  838. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayer.java +0 -55
  839. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayerManager.java +0 -77
  840. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayer.java +0 -55
  841. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayerManager.java +0 -79
  842. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayer.java +0 -27
  843. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayerManager.java +0 -64
  844. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayer.java +0 -55
  845. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayerManager.java +0 -75
  846. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLight.java +0 -65
  847. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLightManager.java +0 -29
  848. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSource.java +0 -81
  849. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSourceManager.java +0 -72
  850. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSource.java +0 -45
  851. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSourceManager.java +0 -44
  852. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSource.java +0 -316
  853. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSourceManager.java +0 -253
  854. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSource.java +0 -97
  855. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSourceManager.java +0 -80
  856. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSource.java +0 -64
  857. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSourceManager.java +0 -84
  858. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTSource.java +0 -244
  859. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/AbstractEvent.java +0 -66
  860. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/AndroidCallbackEvent.java +0 -38
  861. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/EventEmitter.java +0 -45
  862. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/FeatureClickEvent.java +0 -79
  863. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/IEvent.java +0 -18
  864. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/ImageMissingEvent.java +0 -42
  865. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/LocationEvent.java +0 -100
  866. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapChangeEvent.java +0 -47
  867. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapClickEvent.java +0 -51
  868. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapUserTrackingModeEvent.java +0 -36
  869. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/OfflineEvent.java +0 -29
  870. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/PointAnnotationClickEvent.java +0 -46
  871. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/PointAnnotationDragEvent.java +0 -51
  872. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/constants/EventKeys.java +0 -39
  873. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/constants/EventTypes.java +0 -51
  874. package/android/rctmln/src/main/java/com/maplibre/rctmln/http/CustomHeadersInterceptor.java +0 -38
  875. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/LocationManager.java +0 -168
  876. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserLocation.java +0 -63
  877. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserLocationVerticalAlignment.java +0 -11
  878. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserTrackingMode.java +0 -63
  879. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserTrackingState.java +0 -19
  880. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLocationModule.java +0 -158
  881. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLogging.java +0 -140
  882. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNModule.java +0 -348
  883. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNOfflineModule.java +0 -592
  884. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNSnapshotModule.java +0 -139
  885. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/BitmapUtils.java +0 -129
  886. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ClusterPropertyEntry.java +0 -13
  887. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ConvertUtils.java +0 -257
  888. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/DownloadMapImageTask.java +0 -159
  889. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ExpressionParser.java +0 -74
  890. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/GeoJSONUtils.java +0 -209
  891. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/GeoViewport.java +0 -38
  892. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ImageEntry.java +0 -25
  893. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ResourceUtils.java +0 -30
  894. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/SimpleEventCallback.java +0 -30
  895. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/SphericalMercator.java +0 -69
  896. package/android/rctmln/src/main/res/values/strings.xml +0 -3
  897. package/android/settings.gradle +0 -1
  898. package/assets/indoor_building_map_android.png +0 -0
  899. package/assets/indoor_building_map_ios.png +0 -0
  900. package/assets/mapbox_logo.png +0 -0
  901. package/babel.config.js +0 -9
  902. package/docs/Annotation.md +0 -38
  903. package/docs/Annotations.md +0 -12
  904. package/docs/BackgroundLayer.md +0 -158
  905. package/docs/Callout.md +0 -15
  906. package/docs/Camera.md +0 -133
  907. package/docs/CircleLayer.md +0 -462
  908. package/docs/CustomHttpHeaders.md +0 -87
  909. package/docs/FillExtrusionLayer.md +0 -319
  910. package/docs/FillLayer.md +0 -302
  911. package/docs/GettingStarted.md +0 -114
  912. package/docs/HeadingIndicator.md +0 -10
  913. package/docs/HeatmapLayer.md +0 -207
  914. package/docs/ImageSource.md +0 -13
  915. package/docs/Images.md +0 -14
  916. package/docs/Light.md +0 -159
  917. package/docs/LineLayer.md +0 -576
  918. package/docs/Logger.md +0 -23
  919. package/docs/MapLibreGL.md +0 -65
  920. package/docs/MapView.md +0 -203
  921. package/docs/MarkerView.md +0 -16
  922. package/docs/NativeUserLocation.md +0 -11
  923. package/docs/OfflineManager.md +0 -246
  924. package/docs/PointAnnotation.md +0 -31
  925. package/docs/RasterLayer.md +0 -349
  926. package/docs/RasterSource.md +0 -18
  927. package/docs/ShapeSource.md +0 -106
  928. package/docs/Style.md +0 -10
  929. package/docs/StyleSheet.md +0 -451
  930. package/docs/SymbolLayer.md +0 -1655
  931. package/docs/UserLocation.md +0 -45
  932. package/docs/VectorSource.md +0 -49
  933. package/docs/coordinates.md +0 -6
  934. package/docs/docs.json +0 -5396
  935. package/docs/location.md +0 -6
  936. package/docs/offlineManager.md +0 -246
  937. package/docs/snapshotManager.md +0 -53
  938. package/ios/RCTMLN/CameraMode.h +0 -18
  939. package/ios/RCTMLN/CameraMode.m +0 -18
  940. package/ios/RCTMLN/CameraStop.h +0 -26
  941. package/ios/RCTMLN/CameraStop.m +0 -83
  942. package/ios/RCTMLN/CameraUpdateItem.h +0 -18
  943. package/ios/RCTMLN/CameraUpdateItem.m +0 -178
  944. package/ios/RCTMLN/CameraUpdateQueue.h +0 -21
  945. package/ios/RCTMLN/CameraUpdateQueue.m +0 -74
  946. package/ios/RCTMLN/FilterParser.h +0 -14
  947. package/ios/RCTMLN/FilterParser.m +0 -22
  948. package/ios/RCTMLN/MLNCustomHeaders.h +0 -20
  949. package/ios/RCTMLN/MLNCustomHeaders.m +0 -98
  950. package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.h +0 -23
  951. package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.m +0 -474
  952. package/ios/RCTMLN/MLNModule.h +0 -13
  953. package/ios/RCTMLN/MLNModule.m +0 -269
  954. package/ios/RCTMLN/MLNOfflineModule.h +0 -19
  955. package/ios/RCTMLN/MLNOfflineModule.m +0 -516
  956. package/ios/RCTMLN/MLNSnapshotModule.h +0 -13
  957. package/ios/RCTMLN/MLNSnapshotModule.m +0 -80
  958. package/ios/RCTMLN/MLNUserLocationHeadingArrowLayer.h +0 -11
  959. package/ios/RCTMLN/MLNUserLocationHeadingArrowLayer.m +0 -57
  960. package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.h +0 -11
  961. package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.m +0 -102
  962. package/ios/RCTMLN/MLNUserLocationHeadingIndicator.h +0 -10
  963. package/ios/RCTMLN/RCTConvert+Mapbox.h +0 -16
  964. package/ios/RCTMLN/RCTConvert+Mapbox.m +0 -32
  965. package/ios/RCTMLN/RCTMLN.h +0 -13
  966. package/ios/RCTMLN/RCTMLN.m +0 -13
  967. package/ios/RCTMLN/RCTMLNBackgroundLayer.h +0 -14
  968. package/ios/RCTMLN/RCTMLNBackgroundLayer.m +0 -27
  969. package/ios/RCTMLN/RCTMLNBackgroundLayerManager.h +0 -13
  970. package/ios/RCTMLN/RCTMLNBackgroundLayerManager.m +0 -35
  971. package/ios/RCTMLN/RCTMLNCallout.h +0 -15
  972. package/ios/RCTMLN/RCTMLNCallout.m +0 -74
  973. package/ios/RCTMLN/RCTMLNCalloutManager.h +0 -13
  974. package/ios/RCTMLN/RCTMLNCalloutManager.m +0 -21
  975. package/ios/RCTMLN/RCTMLNCamera.h +0 -39
  976. package/ios/RCTMLN/RCTMLNCamera.m +0 -258
  977. package/ios/RCTMLN/RCTMLNCameraManager.h +0 -13
  978. package/ios/RCTMLN/RCTMLNCameraManager.m +0 -52
  979. package/ios/RCTMLN/RCTMLNCircleLayer.h +0 -13
  980. package/ios/RCTMLN/RCTMLNCircleLayer.m +0 -34
  981. package/ios/RCTMLN/RCTMLNCircleLayerManager.h +0 -13
  982. package/ios/RCTMLN/RCTMLNCircleLayerManager.m +0 -39
  983. package/ios/RCTMLN/RCTMLNEvent.h +0 -21
  984. package/ios/RCTMLN/RCTMLNEvent.m +0 -47
  985. package/ios/RCTMLN/RCTMLNEventProtocol.h +0 -16
  986. package/ios/RCTMLN/RCTMLNEventTypes.h +0 -50
  987. package/ios/RCTMLN/RCTMLNEventTypes.m +0 -49
  988. package/ios/RCTMLN/RCTMLNFillExtrusionLayer.h +0 -14
  989. package/ios/RCTMLN/RCTMLNFillExtrusionLayer.m +0 -32
  990. package/ios/RCTMLN/RCTMLNFillExtrusionLayerManager.h +0 -13
  991. package/ios/RCTMLN/RCTMLNFillExtrusionLayerManager.m +0 -39
  992. package/ios/RCTMLN/RCTMLNFillLayer.h +0 -14
  993. package/ios/RCTMLN/RCTMLNFillLayer.m +0 -33
  994. package/ios/RCTMLN/RCTMLNFillLayerManager.h +0 -13
  995. package/ios/RCTMLN/RCTMLNFillLayerManager.m +0 -37
  996. package/ios/RCTMLN/RCTMLNHeatmapLayer.h +0 -12
  997. package/ios/RCTMLN/RCTMLNHeatmapLayer.m +0 -30
  998. package/ios/RCTMLN/RCTMLNHeatmapLayerManager.h +0 -12
  999. package/ios/RCTMLN/RCTMLNHeatmapLayerManager.m +0 -38
  1000. package/ios/RCTMLN/RCTMLNImageQueue.h +0 -19
  1001. package/ios/RCTMLN/RCTMLNImageQueue.m +0 -57
  1002. package/ios/RCTMLN/RCTMLNImageQueueOperation.h +0 -17
  1003. package/ios/RCTMLN/RCTMLNImageQueueOperation.m +0 -138
  1004. package/ios/RCTMLN/RCTMLNImageSource.h +0 -16
  1005. package/ios/RCTMLN/RCTMLNImageSource.m +0 -60
  1006. package/ios/RCTMLN/RCTMLNImageSourceManager.h +0 -13
  1007. package/ios/RCTMLN/RCTMLNImageSourceManager.m +0 -25
  1008. package/ios/RCTMLN/RCTMLNImages.h +0 -25
  1009. package/ios/RCTMLN/RCTMLNImages.m +0 -126
  1010. package/ios/RCTMLN/RCTMLNImagesManager.h +0 -5
  1011. package/ios/RCTMLN/RCTMLNImagesManager.m +0 -21
  1012. package/ios/RCTMLN/RCTMLNLayer.h +0 -52
  1013. package/ios/RCTMLN/RCTMLNLayer.m +0 -236
  1014. package/ios/RCTMLN/RCTMLNLight.h +0 -17
  1015. package/ios/RCTMLN/RCTMLNLight.m +0 -46
  1016. package/ios/RCTMLN/RCTMLNLightManager.h +0 -13
  1017. package/ios/RCTMLN/RCTMLNLightManager.m +0 -23
  1018. package/ios/RCTMLN/RCTMLNLineLayer.h +0 -14
  1019. package/ios/RCTMLN/RCTMLNLineLayer.m +0 -33
  1020. package/ios/RCTMLN/RCTMLNLineLayerManager.h +0 -13
  1021. package/ios/RCTMLN/RCTMLNLineLayerManager.m +0 -40
  1022. package/ios/RCTMLN/RCTMLNLocation.h +0 -19
  1023. package/ios/RCTMLN/RCTMLNLocation.m +0 -32
  1024. package/ios/RCTMLN/RCTMLNLocationManager.h +0 -30
  1025. package/ios/RCTMLN/RCTMLNLocationManager.m +0 -180
  1026. package/ios/RCTMLN/RCTMLNLocationManagerDelegate.h +0 -20
  1027. package/ios/RCTMLN/RCTMLNLocationModule.h +0 -15
  1028. package/ios/RCTMLN/RCTMLNLocationModule.m +0 -99
  1029. package/ios/RCTMLN/RCTMLNLogging.h +0 -18
  1030. package/ios/RCTMLN/RCTMLNLogging.m +0 -132
  1031. package/ios/RCTMLN/RCTMLNMapTouchEvent.h +0 -25
  1032. package/ios/RCTMLN/RCTMLNMapTouchEvent.m +0 -77
  1033. package/ios/RCTMLN/RCTMLNMapView.h +0 -91
  1034. package/ios/RCTMLN/RCTMLNMapView.m +0 -536
  1035. package/ios/RCTMLN/RCTMLNMapViewManager.h +0 -17
  1036. package/ios/RCTMLN/RCTMLNMapViewManager.m +0 -625
  1037. package/ios/RCTMLN/RCTMLNNativeUserLocation.h +0 -18
  1038. package/ios/RCTMLN/RCTMLNNativeUserLocation.m +0 -49
  1039. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.h +0 -5
  1040. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.m +0 -25
  1041. package/ios/RCTMLN/RCTMLNPointAnnotation.h +0 -41
  1042. package/ios/RCTMLN/RCTMLNPointAnnotation.m +0 -251
  1043. package/ios/RCTMLN/RCTMLNPointAnnotationManager.h +0 -13
  1044. package/ios/RCTMLN/RCTMLNPointAnnotationManager.m +0 -36
  1045. package/ios/RCTMLN/RCTMLNRasterLayer.h +0 -14
  1046. package/ios/RCTMLN/RCTMLNRasterLayer.m +0 -30
  1047. package/ios/RCTMLN/RCTMLNRasterLayerManager.h +0 -13
  1048. package/ios/RCTMLN/RCTMLNRasterLayerManager.m +0 -35
  1049. package/ios/RCTMLN/RCTMLNRasterSource.h +0 -16
  1050. package/ios/RCTMLN/RCTMLNRasterSource.m +0 -35
  1051. package/ios/RCTMLN/RCTMLNRasterSourceManager.h +0 -13
  1052. package/ios/RCTMLN/RCTMLNRasterSourceManager.m +0 -32
  1053. package/ios/RCTMLN/RCTMLNShapeSource.h +0 -53
  1054. package/ios/RCTMLN/RCTMLNShapeSource.m +0 -194
  1055. package/ios/RCTMLN/RCTMLNShapeSourceManager.h +0 -14
  1056. package/ios/RCTMLN/RCTMLNShapeSourceManager.m +0 -206
  1057. package/ios/RCTMLN/RCTMLNSource.h +0 -35
  1058. package/ios/RCTMLN/RCTMLNSource.m +0 -143
  1059. package/ios/RCTMLN/RCTMLNStyle.h +0 -222
  1060. package/ios/RCTMLN/RCTMLNStyle.m +0 -1675
  1061. package/ios/RCTMLN/RCTMLNStyleValue.h +0 -27
  1062. package/ios/RCTMLN/RCTMLNStyleValue.m +0 -167
  1063. package/ios/RCTMLN/RCTMLNSymbolLayer.h +0 -19
  1064. package/ios/RCTMLN/RCTMLNSymbolLayer.m +0 -121
  1065. package/ios/RCTMLN/RCTMLNSymbolLayerManager.h +0 -13
  1066. package/ios/RCTMLN/RCTMLNSymbolLayerManager.m +0 -40
  1067. package/ios/RCTMLN/RCTMLNTileSource.h +0 -22
  1068. package/ios/RCTMLN/RCTMLNTileSource.m +0 -31
  1069. package/ios/RCTMLN/RCTMLNUserLocation.h +0 -15
  1070. package/ios/RCTMLN/RCTMLNUserLocation.m +0 -38
  1071. package/ios/RCTMLN/RCTMLNUtils.h +0 -31
  1072. package/ios/RCTMLN/RCTMLNUtils.m +0 -218
  1073. package/ios/RCTMLN/RCTMLNVectorLayer.h +0 -15
  1074. package/ios/RCTMLN/RCTMLNVectorLayer.m +0 -59
  1075. package/ios/RCTMLN/RCTMLNVectorSource.h +0 -16
  1076. package/ios/RCTMLN/RCTMLNVectorSource.m +0 -28
  1077. package/ios/RCTMLN/RCTMLNVectorSourceManager.h +0 -14
  1078. package/ios/RCTMLN/RCTMLNVectorSourceManager.m +0 -79
  1079. package/ios/RCTMLN/RNMBImageUtils.h +0 -17
  1080. package/ios/RCTMLN/RNMBImageUtils.m +0 -31
  1081. package/ios/RCTMLN/ViewManager.h +0 -16
  1082. package/ios/RCTMLN/ViewManager.m +0 -63
  1083. package/ios/RCTMLN/index.d.ts +0 -1183
  1084. package/ios/RCTMLN.xcodeproj/project.pbxproj +0 -775
  1085. package/ios/install.md +0 -49
  1086. package/javascript/MLNModule.ts +0 -37
  1087. package/javascript/Maplibre.ts +0 -64
  1088. package/javascript/components/BackgroundLayer.tsx +0 -50
  1089. package/javascript/components/Callout.tsx +0 -141
  1090. package/javascript/components/Camera.tsx +0 -623
  1091. package/javascript/components/CircleLayer.tsx +0 -53
  1092. package/javascript/components/FillExtrusionLayer.tsx +0 -47
  1093. package/javascript/components/FillLayer.tsx +0 -44
  1094. package/javascript/components/HeadingIndicator.tsx +0 -30
  1095. package/javascript/components/HeatmapLayer.tsx +0 -46
  1096. package/javascript/components/ImageSource.tsx +0 -71
  1097. package/javascript/components/Images.tsx +0 -134
  1098. package/javascript/components/Light.tsx +0 -40
  1099. package/javascript/components/LineLayer.tsx +0 -45
  1100. package/javascript/components/MapView.tsx +0 -880
  1101. package/javascript/components/MarkerView.tsx +0 -88
  1102. package/javascript/components/NativeUserLocation.tsx +0 -31
  1103. package/javascript/components/PointAnnotation.tsx +0 -245
  1104. package/javascript/components/RasterLayer.tsx +0 -44
  1105. package/javascript/components/RasterSource.tsx +0 -114
  1106. package/javascript/components/ShapeSource.tsx +0 -433
  1107. package/javascript/components/Style.tsx +0 -368
  1108. package/javascript/components/SymbolLayer.tsx +0 -78
  1109. package/javascript/components/UserLocation.tsx +0 -289
  1110. package/javascript/components/VectorSource.tsx +0 -218
  1111. package/javascript/components/annotations/Annotation.tsx +0 -161
  1112. package/javascript/hooks/useAbstractLayer.ts +0 -127
  1113. package/javascript/hooks/useAbstractSource.ts +0 -34
  1114. package/javascript/hooks/useNativeBridge.ts +0 -125
  1115. package/javascript/hooks/useNativeRef.ts +0 -13
  1116. package/javascript/index.ts +0 -4
  1117. package/javascript/modules/location/locationManager.ts +0 -162
  1118. package/javascript/modules/offline/OfflineCreatePackOptions.ts +0 -62
  1119. package/javascript/modules/offline/OfflinePack.ts +0 -56
  1120. package/javascript/modules/offline/offlineManager.ts +0 -434
  1121. package/javascript/modules/snapshot/SnapshotOptions.ts +0 -104
  1122. package/javascript/modules/snapshot/snapshotManager.ts +0 -62
  1123. package/javascript/requestAndroidLocationPermissions.ts +0 -29
  1124. package/javascript/types/BaseProps.ts +0 -5
  1125. package/javascript/types/OnPressEvent.ts +0 -13
  1126. package/javascript/types/index.ts +0 -11
  1127. package/javascript/utils/BridgeValue.ts +0 -90
  1128. package/javascript/utils/Logger.ts +0 -133
  1129. package/javascript/utils/MaplibreStyles.d.ts +0 -1486
  1130. package/javascript/utils/StyleValue.ts +0 -49
  1131. package/javascript/utils/animated/Animated.ts +0 -61
  1132. package/javascript/utils/animated/AnimatedCoordinatesArray.ts +0 -108
  1133. package/javascript/utils/animated/AnimatedPoint.ts +0 -134
  1134. package/javascript/utils/animated/AnimatedRouteCoordinatesArray.ts +0 -145
  1135. package/javascript/utils/deprecation.ts +0 -31
  1136. package/javascript/utils/filterUtils.ts +0 -9
  1137. package/javascript/utils/geoUtils.ts +0 -79
  1138. package/javascript/utils/index.ts +0 -133
  1139. package/javascript/utils/styleMap.ts +0 -264
  1140. package/plugin/install.md +0 -32
  1141. package/react-native.config.js +0 -10
  1142. package/scripts/autogenHelpers/DocJSONBuilder.js +0 -458
  1143. package/scripts/autogenHelpers/JSDocNodeTree.js +0 -131
  1144. package/scripts/autogenHelpers/MarkdownBuilder.js +0 -29
  1145. package/scripts/autogenHelpers/globals.js +0 -507
  1146. package/scripts/autogenerate.js +0 -382
  1147. package/scripts/download-style-spec.sh +0 -15
  1148. package/scripts/templates/MaplibreStyles.ts.ejs +0 -99
  1149. package/scripts/templates/RCTMLNStyle.h.ejs +0 -33
  1150. package/scripts/templates/RCTMLNStyle.m.ejs +0 -97
  1151. package/scripts/templates/RCTMLNStyleFactory.java.ejs +0 -107
  1152. package/scripts/templates/component.md.ejs +0 -122
  1153. package/scripts/templates/index.d.ts.ejs +0 -85
  1154. package/scripts/templates/styleMap.ts.ejs +0 -85
  1155. package/setup-jest.js +0 -108
  1156. package/style-spec/v8.json +0 -6021
  1157. package/tsconfig.json +0 -24
  1158. /package/android/{rctmln/src → src}/main/res/drawable/empty.xml +0 -0
  1159. /package/android/{rctmln/src → src}/main/res/drawable/empty_drawable.png +0 -0
  1160. /package/android/{rctmln/src → src}/main/res/drawable-xxhdpi/red_marker.png +0 -0
  1161. /package/android/{rctmln/src → src}/main/res/layout/annotation.xml +0 -0
  1162. /package/{assets → lib/commonjs/assets}/heading.png +0 -0
  1163. /package/{assets → lib/commonjs/assets}/heading@2x.png +0 -0
  1164. /package/{assets → lib/commonjs/assets}/heading@3x.png +0 -0
  1165. /package/{javascript/@types/assets.d.ts → src/assets/png.d.ts} +0 -0
  1166. /package/{javascript → src}/hooks/useOnce.ts +0 -0
  1167. /package/{javascript → src}/utils/animated/AbstractAnimatedCoordinates.ts +0 -0
  1168. /package/{javascript → src}/utils/animated/AnimatedExtractCoordinateFromArray.ts +0 -0
  1169. /package/{javascript → src}/utils/animated/AnimatedShape.ts +0 -0
@@ -0,0 +1,1174 @@
1
+ // DO NOT MODIFY
2
+ // This file is auto-generated from scripts/templates/MapLibreRNStyles.ts.ejs
3
+
4
+ import { type ImageSourcePropType } from "react-native";
5
+
6
+ export type Translation = { x: number; y: number } | [number, number];
7
+
8
+ export interface Transition {
9
+ duration: number;
10
+ delay: number;
11
+ }
12
+
13
+ export type FormattedString = string; /* TODO */
14
+
15
+ export type ExpressionName =
16
+ // Types
17
+ | "array"
18
+ | "boolean"
19
+ | "collator"
20
+ | "format"
21
+ | "image"
22
+ | "literal"
23
+ | "number"
24
+ | "number-format"
25
+ | "object"
26
+ | "string"
27
+ | "to-boolean"
28
+ | "to-color"
29
+ | "to-number"
30
+ | "to-string"
31
+ | "typeof"
32
+ // Feature data
33
+ | "accumulated"
34
+ | "feature-state"
35
+ | "geometry-type"
36
+ | "id"
37
+ | "line-progress"
38
+ | "properties"
39
+ // Lookup
40
+ | "at"
41
+ | "get"
42
+ | "has"
43
+ | "in"
44
+ | "index-of"
45
+ | "length"
46
+ | "slice"
47
+ // Decision
48
+ | "!"
49
+ | "!="
50
+ | "<"
51
+ | "<="
52
+ | "=="
53
+ | ">"
54
+ | ">="
55
+ | "all"
56
+ | "any"
57
+ | "case"
58
+ | "match"
59
+ | "coalesce"
60
+ | "within"
61
+ // Ramps, scales, curves
62
+ | "interpolate"
63
+ | "interpolate-hcl"
64
+ | "interpolate-lab"
65
+ | "step"
66
+ // Variable binding
67
+ | "let"
68
+ | "var"
69
+ // String
70
+ | "concat"
71
+ | "downcase"
72
+ | "is-supported-script"
73
+ | "resolved-locale"
74
+ | "upcase"
75
+ // Color
76
+ | "rgb"
77
+ | "rgba"
78
+ | "to-rgba"
79
+ // Math
80
+ | "-"
81
+ | "*"
82
+ | "/"
83
+ | "%"
84
+ | "^"
85
+ | "+"
86
+ | "abs"
87
+ | "acos"
88
+ | "asin"
89
+ | "atan"
90
+ | "ceil"
91
+ | "cos"
92
+ | "distance"
93
+ | "e"
94
+ | "floor"
95
+ | "ln"
96
+ | "ln2"
97
+ | "log10"
98
+ | "log2"
99
+ | "max"
100
+ | "min"
101
+ | "pi"
102
+ | "round"
103
+ | "sin"
104
+ | "sqrt"
105
+ | "tan"
106
+ // Zoom, Heatmap
107
+ | "zoom"
108
+ | "heatmap-density";
109
+
110
+ export type ExpressionField =
111
+ | string
112
+ | number
113
+ | boolean
114
+ | Expression
115
+ | ExpressionField[]
116
+ | { [key: string]: ExpressionField };
117
+
118
+ export type Expression = readonly [ExpressionName, ...ExpressionField[]];
119
+
120
+ export type FilterExpression = Expression;
121
+
122
+ type ExpressionParameters =
123
+ | "zoom"
124
+ | "feature"
125
+ | "feature-state"
126
+ | "sky-radial-progress"
127
+ | "line-progress"
128
+ | "heatmap-density";
129
+
130
+ type ResolvedImageType = ImageSourcePropType | string;
131
+
132
+ // @ts-ignore
133
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
134
+ export type Value<T, AllowedParameters extends ExpressionParameters[] = []> =
135
+ | T
136
+ | Expression;
137
+
138
+ export interface FillLayerStyle {
139
+ /**
140
+ * Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.
141
+ */
142
+ fillSortKey?: Value<number, ["zoom", "feature"]>;
143
+ /**
144
+ * Whether this layer is displayed.
145
+ */
146
+ visibility?: "visible" | "none";
147
+ /**
148
+ * Whether or not the fill should be antialiased.
149
+ */
150
+ fillAntialias?: Value<boolean, ["zoom"]>;
151
+ /**
152
+ * The opacity of the entire fill layer. In contrast to the `fillColor`, this value will also affect the 1px stroke around the fill, if the stroke is used.
153
+ */
154
+ fillOpacity?: Value<number, ["zoom", "feature", "feature-state"]>;
155
+
156
+ /**
157
+ * The transition affecting any changes to this layer’s fillOpacity property.
158
+ */
159
+ fillOpacityTransition?: Transition;
160
+ /**
161
+ * The color of the filled part of this layer. This color can be specified as `rgba` with an alpha component and the color's opacity will not affect the opacity of the 1px stroke, if it is used.
162
+ *
163
+ * @disabledBy fillPattern
164
+ */
165
+ fillColor?: Value<string, ["zoom", "feature", "feature-state"]>;
166
+
167
+ /**
168
+ * The transition affecting any changes to this layer’s fillColor property.
169
+ */
170
+ fillColorTransition?: Transition;
171
+ /**
172
+ * The outline color of the fill. Matches the value of `fillColor` if unspecified.
173
+ *
174
+ * @disabledBy fillPattern
175
+ */
176
+ fillOutlineColor?: Value<string, ["zoom", "feature", "feature-state"]>;
177
+
178
+ /**
179
+ * The transition affecting any changes to this layer’s fillOutlineColor property.
180
+ */
181
+ fillOutlineColorTransition?: Transition;
182
+ /**
183
+ * The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.
184
+ */
185
+ fillTranslate?: Value<Translation, ["zoom"]>;
186
+
187
+ /**
188
+ * The transition affecting any changes to this layer’s fillTranslate property.
189
+ */
190
+ fillTranslateTransition?: Transition;
191
+ /**
192
+ * Controls the frame of reference for `fillTranslate`.
193
+ *
194
+ * @requires fillTranslate
195
+ */
196
+ fillTranslateAnchor?: Value<"map" | "viewport", ["zoom"]>;
197
+ /**
198
+ * Name of image in sprite to use for drawing image fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
199
+ */
200
+ fillPattern?: Value<ResolvedImageType, ["zoom", "feature"]>;
201
+
202
+ /**
203
+ * The transition affecting any changes to this layer’s fillPattern property.
204
+ */
205
+ fillPatternTransition?: Transition;
206
+ }
207
+ export interface LineLayerStyle {
208
+ /**
209
+ * The display of line endings.
210
+ */
211
+ lineCap?: Value<"butt" | "round" | "square", ["zoom"]>;
212
+ /**
213
+ * The display of lines when joining.
214
+ */
215
+ lineJoin?: Value<"bevel" | "round" | "miter", ["zoom", "feature"]>;
216
+ /**
217
+ * Used to automatically convert miter joins to bevel joins for sharp angles.
218
+ */
219
+ lineMiterLimit?: Value<number, ["zoom"]>;
220
+ /**
221
+ * Used to automatically convert round joins to miter joins for shallow angles.
222
+ */
223
+ lineRoundLimit?: Value<number, ["zoom"]>;
224
+ /**
225
+ * Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.
226
+ */
227
+ lineSortKey?: Value<number, ["zoom", "feature"]>;
228
+ /**
229
+ * Whether this layer is displayed.
230
+ */
231
+ visibility?: "visible" | "none";
232
+ /**
233
+ * The opacity at which the line will be drawn.
234
+ */
235
+ lineOpacity?: Value<number, ["zoom", "feature", "feature-state"]>;
236
+
237
+ /**
238
+ * The transition affecting any changes to this layer’s lineOpacity property.
239
+ */
240
+ lineOpacityTransition?: Transition;
241
+ /**
242
+ * The color with which the line will be drawn.
243
+ *
244
+ * @disabledBy linePattern
245
+ */
246
+ lineColor?: Value<string, ["zoom", "feature", "feature-state"]>;
247
+
248
+ /**
249
+ * The transition affecting any changes to this layer’s lineColor property.
250
+ */
251
+ lineColorTransition?: Transition;
252
+ /**
253
+ * The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.
254
+ */
255
+ lineTranslate?: Value<Translation, ["zoom"]>;
256
+
257
+ /**
258
+ * The transition affecting any changes to this layer’s lineTranslate property.
259
+ */
260
+ lineTranslateTransition?: Transition;
261
+ /**
262
+ * Controls the frame of reference for `lineTranslate`.
263
+ *
264
+ * @requires lineTranslate
265
+ */
266
+ lineTranslateAnchor?: Value<"map" | "viewport", ["zoom"]>;
267
+ /**
268
+ * Stroke thickness.
269
+ */
270
+ lineWidth?: Value<number, ["zoom", "feature", "feature-state"]>;
271
+
272
+ /**
273
+ * The transition affecting any changes to this layer’s lineWidth property.
274
+ */
275
+ lineWidthTransition?: Transition;
276
+ /**
277
+ * Draws a line casing outside of a line's actual path. Value indicates the width of the inner gap.
278
+ */
279
+ lineGapWidth?: Value<number, ["zoom", "feature", "feature-state"]>;
280
+
281
+ /**
282
+ * The transition affecting any changes to this layer’s lineGapWidth property.
283
+ */
284
+ lineGapWidthTransition?: Transition;
285
+ /**
286
+ * The line's offset. For linear features, a positive value offsets the line to the right, relative to the direction of the line, and a negative value to the left. For polygon features, a positive value results in an inset, and a negative value results in an outset.
287
+ */
288
+ lineOffset?: Value<number, ["zoom", "feature", "feature-state"]>;
289
+
290
+ /**
291
+ * The transition affecting any changes to this layer’s lineOffset property.
292
+ */
293
+ lineOffsetTransition?: Transition;
294
+ /**
295
+ * Blur applied to the line, in pixels.
296
+ */
297
+ lineBlur?: Value<number, ["zoom", "feature", "feature-state"]>;
298
+
299
+ /**
300
+ * The transition affecting any changes to this layer’s lineBlur property.
301
+ */
302
+ lineBlurTransition?: Transition;
303
+ /**
304
+ * Specifies the lengths of the alternating dashes and gaps that form the dash pattern. The lengths are later scaled by the line width. To convert a dash length to pixels, multiply the length by the current line width. Note that GeoJSON sources with `lineMetrics: true` specified won't render dashed lines to the expected scale. Also note that zoomDependent expressions will be evaluated only at integer zoom levels.
305
+ *
306
+ * @disabledBy linePattern
307
+ */
308
+ lineDasharray?: Value<number[], ["zoom"]>;
309
+
310
+ /**
311
+ * The transition affecting any changes to this layer’s lineDasharray property.
312
+ */
313
+ lineDasharrayTransition?: Transition;
314
+ /**
315
+ * Name of image in sprite to use for drawing image lines. For seamless patterns, image width must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
316
+ */
317
+ linePattern?: Value<ResolvedImageType, ["zoom", "feature"]>;
318
+
319
+ /**
320
+ * The transition affecting any changes to this layer’s linePattern property.
321
+ */
322
+ linePatternTransition?: Transition;
323
+ /**
324
+ * Defines a gradient with which to color a line feature. Can only be used with GeoJSON sources that specify `"lineMetrics": true`.
325
+ *
326
+ * @disabledBy lineDasharray, linePattern
327
+ */
328
+ lineGradient?: Value<string, ["line-progress"]>;
329
+ }
330
+ export interface SymbolLayerStyle {
331
+ /**
332
+ * Label placement relative to its geometry.
333
+ */
334
+ symbolPlacement?: Value<"point" | "line" | "line-center", ["zoom"]>;
335
+ /**
336
+ * Distance between two symbol anchors.
337
+ */
338
+ symbolSpacing?: Value<number, ["zoom"]>;
339
+ /**
340
+ * If true, the symbols will not cross tile edges to avoid mutual collisions. Recommended in layers that don't have enough padding in the vector tile to prevent collisions, or if it is a point symbol layer placed after a line symbol layer. When using a client that supports global collision detection, like MapLibre GL JS version 0.42.0 or greater, enabling this property is not needed to prevent clipped labels at tile boundaries.
341
+ */
342
+ symbolAvoidEdges?: Value<boolean, ["zoom"]>;
343
+ /**
344
+ * Sorts features in ascending order based on this value. Features with lower sort keys are drawn and placed first. When `iconAllowOverlap` or `textAllowOverlap` is `false`, features with a lower sort key will have priority during placement. When `iconAllowOverlap` or `textAllowOverlap` is set to `true`, features with a higher sort key will overlap over features with a lower sort key.
345
+ */
346
+ symbolSortKey?: Value<number, ["zoom", "feature"]>;
347
+ /**
348
+ * Determines whether overlapping symbols in the same layer are rendered in the order that they appear in the data source or by their yPosition relative to the viewport. To control the order and prioritization of symbols otherwise, use `symbolSortKey`.
349
+ */
350
+ symbolZOrder?: Value<"auto" | "viewport-y" | "source", ["zoom"]>;
351
+ /**
352
+ * If true, the icon will be visible even if it collides with other previously drawn symbols.
353
+ *
354
+ * @requires iconImage
355
+ *
356
+ * @disabledBy iconOverlap
357
+ */
358
+ iconAllowOverlap?: Value<boolean, ["zoom"]>;
359
+ /**
360
+ * If true, other symbols can be visible even if they collide with the icon.
361
+ *
362
+ * @requires iconImage
363
+ */
364
+ iconIgnorePlacement?: Value<boolean, ["zoom"]>;
365
+ /**
366
+ * If true, text will display without their corresponding icons when the icon collides with other symbols and the text does not.
367
+ *
368
+ * @requires iconImage, textField
369
+ */
370
+ iconOptional?: Value<boolean, ["zoom"]>;
371
+ /**
372
+ * In combination with `symbolPlacement`, determines the rotation behavior of icons.
373
+ *
374
+ * @requires iconImage
375
+ */
376
+ iconRotationAlignment?: Value<"map" | "viewport" | "auto", ["zoom"]>;
377
+ /**
378
+ * Scales the original size of the icon by the provided factor. The new pixel size of the image will be the original pixel size multiplied by `iconSize`. 1 is the original size; 3 triples the size of the image.
379
+ *
380
+ * @requires iconImage
381
+ */
382
+ iconSize?: Value<number, ["zoom", "feature"]>;
383
+ /**
384
+ * Scales the icon to fit around the associated text.
385
+ *
386
+ * @requires iconImage, textField
387
+ */
388
+ iconTextFit?: Value<"none" | "width" | "height" | "both", ["zoom"]>;
389
+ /**
390
+ * Size of the additional area added to dimensions determined by `iconTextFit`, in clockwise order: top, right, bottom, left.
391
+ *
392
+ * @requires iconImage, textField
393
+ */
394
+ iconTextFitPadding?: Value<number[], ["zoom"]>;
395
+ /**
396
+ * Name of image in sprite to use for drawing an image background.
397
+ */
398
+ iconImage?: Value<ResolvedImageType, ["zoom", "feature"]>;
399
+ /**
400
+ * Rotates the icon clockwise.
401
+ *
402
+ * @requires iconImage
403
+ */
404
+ iconRotate?: Value<number, ["zoom", "feature"]>;
405
+ /**
406
+ * Size of additional area round the icon bounding box used for detecting symbol collisions.
407
+ *
408
+ * @requires iconImage
409
+ */
410
+ iconPadding?: Value<number[], ["zoom", "feature"]>;
411
+ /**
412
+ * If true, the icon may be flipped to prevent it from being rendered upsideDown.
413
+ *
414
+ * @requires iconImage
415
+ */
416
+ iconKeepUpright?: Value<boolean, ["zoom"]>;
417
+ /**
418
+ * Offset distance of icon from its anchor. Positive values indicate right and down, while negative values indicate left and up. Each component is multiplied by the value of `iconSize` to obtain the final offset in pixels. When combined with `iconRotate` the offset will be as if the rotated direction was up.
419
+ *
420
+ * @requires iconImage
421
+ */
422
+ iconOffset?: Value<number[], ["zoom", "feature"]>;
423
+ /**
424
+ * Part of the icon placed closest to the anchor.
425
+ *
426
+ * @requires iconImage
427
+ */
428
+ iconAnchor?: Value<
429
+ | "center"
430
+ | "left"
431
+ | "right"
432
+ | "top"
433
+ | "bottom"
434
+ | "top-left"
435
+ | "top-right"
436
+ | "bottom-left"
437
+ | "bottom-right",
438
+ ["zoom", "feature"]
439
+ >;
440
+ /**
441
+ * Orientation of icon when map is pitched.
442
+ *
443
+ * @requires iconImage
444
+ */
445
+ iconPitchAlignment?: Value<"map" | "viewport" | "auto", ["zoom"]>;
446
+ /**
447
+ * Orientation of text when map is pitched.
448
+ *
449
+ * @requires textField
450
+ */
451
+ textPitchAlignment?: Value<"map" | "viewport" | "auto", ["zoom"]>;
452
+ /**
453
+ * In combination with `symbolPlacement`, determines the rotation behavior of the individual glyphs forming the text.
454
+ *
455
+ * @requires textField
456
+ */
457
+ textRotationAlignment?: Value<
458
+ "map" | "viewport" | "viewport-glyph" | "auto",
459
+ ["zoom"]
460
+ >;
461
+ /**
462
+ * Value to use for a text label. If a plain `string` is provided, it will be treated as a `formatted` with default/inherited formatting options.
463
+ */
464
+ textField?: Value<FormattedString, ["zoom", "feature"]>;
465
+ /**
466
+ * Font stack to use for displaying text.
467
+ *
468
+ * @requires textField
469
+ */
470
+ textFont?: Value<string[], ["zoom", "feature"]>;
471
+ /**
472
+ * Font size.
473
+ *
474
+ * @requires textField
475
+ */
476
+ textSize?: Value<number, ["zoom", "feature"]>;
477
+ /**
478
+ * The maximum line width for text wrapping.
479
+ *
480
+ * @requires textField
481
+ */
482
+ textMaxWidth?: Value<number, ["zoom", "feature"]>;
483
+ /**
484
+ * Text leading value for multiLine text.
485
+ *
486
+ * @requires textField
487
+ */
488
+ textLineHeight?: Value<number, ["zoom"]>;
489
+ /**
490
+ * Text tracking amount.
491
+ *
492
+ * @requires textField
493
+ */
494
+ textLetterSpacing?: Value<number, ["zoom", "feature"]>;
495
+ /**
496
+ * Text justification options.
497
+ *
498
+ * @requires textField
499
+ */
500
+ textJustify?: Value<
501
+ "auto" | "left" | "center" | "right",
502
+ ["zoom", "feature"]
503
+ >;
504
+ /**
505
+ * Radial offset of text, in the direction of the symbol's anchor. Useful in combination with `textVariableAnchor`, which defaults to using the twoDimensional `textOffset` if present.
506
+ *
507
+ * @requires textField
508
+ */
509
+ textRadialOffset?: Value<number, ["zoom", "feature"]>;
510
+ /**
511
+ * To increase the chance of placing highPriority labels on the map, you can provide an array of `textAnchor` locations: the renderer will attempt to place the label at each location, in order, before moving onto the next label. Use `textJustify: auto` to choose justification based on anchor position. To apply an offset, use the `textRadialOffset` or the twoDimensional `textOffset`.
512
+ *
513
+ * @requires textField
514
+ */
515
+ textVariableAnchor?: Value<
516
+ (
517
+ | "center"
518
+ | "left"
519
+ | "right"
520
+ | "top"
521
+ | "bottom"
522
+ | "top-left"
523
+ | "top-right"
524
+ | "bottom-left"
525
+ | "bottom-right"
526
+ )[],
527
+ ["zoom"]
528
+ >;
529
+ /**
530
+ * Part of the text placed closest to the anchor.
531
+ *
532
+ * @requires textField
533
+ *
534
+ * @disabledBy textVariableAnchor
535
+ */
536
+ textAnchor?: Value<
537
+ | "center"
538
+ | "left"
539
+ | "right"
540
+ | "top"
541
+ | "bottom"
542
+ | "top-left"
543
+ | "top-right"
544
+ | "bottom-left"
545
+ | "bottom-right",
546
+ ["zoom", "feature"]
547
+ >;
548
+ /**
549
+ * Maximum angle change between adjacent characters.
550
+ *
551
+ * @requires textField
552
+ */
553
+ textMaxAngle?: Value<number, ["zoom"]>;
554
+ /**
555
+ * The property allows control over a symbol's orientation. Note that the property values act as a hint, so that a symbol whose language doesn’t support the provided orientation will be laid out in its natural orientation. Example: English point symbol will be rendered horizontally even if array value contains single 'vertical' enum value. The order of elements in an array define priority order for the placement of an orientation variant.
556
+ *
557
+ * @requires textField
558
+ */
559
+ textWritingMode?: Value<("horizontal" | "vertical")[], ["zoom"]>;
560
+ /**
561
+ * Rotates the text clockwise.
562
+ *
563
+ * @requires textField
564
+ */
565
+ textRotate?: Value<number, ["zoom", "feature"]>;
566
+ /**
567
+ * Size of the additional area around the text bounding box used for detecting symbol collisions.
568
+ *
569
+ * @requires textField
570
+ */
571
+ textPadding?: Value<number, ["zoom"]>;
572
+ /**
573
+ * If true, the text may be flipped vertically to prevent it from being rendered upsideDown.
574
+ *
575
+ * @requires textField
576
+ */
577
+ textKeepUpright?: Value<boolean, ["zoom"]>;
578
+ /**
579
+ * Specifies how to capitalize text, similar to the CSS `textTransform` property.
580
+ *
581
+ * @requires textField
582
+ */
583
+ textTransform?: Value<
584
+ "none" | "uppercase" | "lowercase",
585
+ ["zoom", "feature"]
586
+ >;
587
+ /**
588
+ * Offset distance of text from its anchor. Positive values indicate right and down, while negative values indicate left and up. If used with textVariableAnchor, input values will be taken as absolute values. Offsets along the x and yAxis will be applied automatically based on the anchor position.
589
+ *
590
+ * @requires textField
591
+ *
592
+ * @disabledBy textRadialOffset
593
+ */
594
+ textOffset?: Value<number[], ["zoom", "feature"]>;
595
+ /**
596
+ * If true, the text will be visible even if it collides with other previously drawn symbols.
597
+ *
598
+ * @requires textField
599
+ *
600
+ * @disabledBy textOverlap
601
+ */
602
+ textAllowOverlap?: Value<boolean, ["zoom"]>;
603
+ /**
604
+ * If true, other symbols can be visible even if they collide with the text.
605
+ *
606
+ * @requires textField
607
+ */
608
+ textIgnorePlacement?: Value<boolean, ["zoom"]>;
609
+ /**
610
+ * If true, icons will display without their corresponding text when the text collides with other symbols and the icon does not.
611
+ *
612
+ * @requires textField, iconImage
613
+ */
614
+ textOptional?: Value<boolean, ["zoom"]>;
615
+ /**
616
+ * Whether this layer is displayed.
617
+ */
618
+ visibility?: "visible" | "none";
619
+ /**
620
+ * The opacity at which the icon will be drawn.
621
+ *
622
+ * @requires iconImage
623
+ */
624
+ iconOpacity?: Value<number, ["zoom", "feature", "feature-state"]>;
625
+
626
+ /**
627
+ * The transition affecting any changes to this layer’s iconOpacity property.
628
+ */
629
+ iconOpacityTransition?: Transition;
630
+ /**
631
+ * The color of the icon. This can only be used with SDF icons.
632
+ *
633
+ * @requires iconImage
634
+ */
635
+ iconColor?: Value<string, ["zoom", "feature", "feature-state"]>;
636
+
637
+ /**
638
+ * The transition affecting any changes to this layer’s iconColor property.
639
+ */
640
+ iconColorTransition?: Transition;
641
+ /**
642
+ * The color of the icon's halo. Icon halos can only be used with SDF icons.
643
+ *
644
+ * @requires iconImage
645
+ */
646
+ iconHaloColor?: Value<string, ["zoom", "feature", "feature-state"]>;
647
+
648
+ /**
649
+ * The transition affecting any changes to this layer’s iconHaloColor property.
650
+ */
651
+ iconHaloColorTransition?: Transition;
652
+ /**
653
+ * Distance of halo to the icon outline.
654
+
655
+ The unit is in pixels only for SDF sprites that were created with a blur radius of 8, multiplied by the display density. I.e., the radius needs to be 16 for `@2x` sprites, etc.
656
+ *
657
+ * @requires iconImage
658
+ */
659
+ iconHaloWidth?: Value<number, ["zoom", "feature", "feature-state"]>;
660
+
661
+ /**
662
+ * The transition affecting any changes to this layer’s iconHaloWidth property.
663
+ */
664
+ iconHaloWidthTransition?: Transition;
665
+ /**
666
+ * Fade out the halo towards the outside.
667
+ *
668
+ * @requires iconImage
669
+ */
670
+ iconHaloBlur?: Value<number, ["zoom", "feature", "feature-state"]>;
671
+
672
+ /**
673
+ * The transition affecting any changes to this layer’s iconHaloBlur property.
674
+ */
675
+ iconHaloBlurTransition?: Transition;
676
+ /**
677
+ * Distance that the icon's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up.
678
+ *
679
+ * @requires iconImage
680
+ */
681
+ iconTranslate?: Value<Translation, ["zoom"]>;
682
+
683
+ /**
684
+ * The transition affecting any changes to this layer’s iconTranslate property.
685
+ */
686
+ iconTranslateTransition?: Transition;
687
+ /**
688
+ * Controls the frame of reference for `iconTranslate`.
689
+ *
690
+ * @requires iconImage, iconTranslate
691
+ */
692
+ iconTranslateAnchor?: Value<"map" | "viewport", ["zoom"]>;
693
+ /**
694
+ * The opacity at which the text will be drawn.
695
+ *
696
+ * @requires textField
697
+ */
698
+ textOpacity?: Value<number, ["zoom", "feature", "feature-state"]>;
699
+
700
+ /**
701
+ * The transition affecting any changes to this layer’s textOpacity property.
702
+ */
703
+ textOpacityTransition?: Transition;
704
+ /**
705
+ * The color with which the text will be drawn.
706
+ *
707
+ * @requires textField
708
+ */
709
+ textColor?: Value<string, ["zoom", "feature", "feature-state"]>;
710
+
711
+ /**
712
+ * The transition affecting any changes to this layer’s textColor property.
713
+ */
714
+ textColorTransition?: Transition;
715
+ /**
716
+ * The color of the text's halo, which helps it stand out from backgrounds.
717
+ *
718
+ * @requires textField
719
+ */
720
+ textHaloColor?: Value<string, ["zoom", "feature", "feature-state"]>;
721
+
722
+ /**
723
+ * The transition affecting any changes to this layer’s textHaloColor property.
724
+ */
725
+ textHaloColorTransition?: Transition;
726
+ /**
727
+ * Distance of halo to the font outline. Max text halo width is 1/4 of the fontSize.
728
+ *
729
+ * @requires textField
730
+ */
731
+ textHaloWidth?: Value<number, ["zoom", "feature", "feature-state"]>;
732
+
733
+ /**
734
+ * The transition affecting any changes to this layer’s textHaloWidth property.
735
+ */
736
+ textHaloWidthTransition?: Transition;
737
+ /**
738
+ * The halo's fadeout distance towards the outside.
739
+ *
740
+ * @requires textField
741
+ */
742
+ textHaloBlur?: Value<number, ["zoom", "feature", "feature-state"]>;
743
+
744
+ /**
745
+ * The transition affecting any changes to this layer’s textHaloBlur property.
746
+ */
747
+ textHaloBlurTransition?: Transition;
748
+ /**
749
+ * Distance that the text's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up.
750
+ *
751
+ * @requires textField
752
+ */
753
+ textTranslate?: Value<Translation, ["zoom"]>;
754
+
755
+ /**
756
+ * The transition affecting any changes to this layer’s textTranslate property.
757
+ */
758
+ textTranslateTransition?: Transition;
759
+ /**
760
+ * Controls the frame of reference for `textTranslate`.
761
+ *
762
+ * @requires textField, textTranslate
763
+ */
764
+ textTranslateAnchor?: Value<"map" | "viewport", ["zoom"]>;
765
+ }
766
+ export interface CircleLayerStyle {
767
+ /**
768
+ * Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.
769
+ */
770
+ circleSortKey?: Value<number, ["zoom", "feature"]>;
771
+ /**
772
+ * Whether this layer is displayed.
773
+ */
774
+ visibility?: "visible" | "none";
775
+ /**
776
+ * Circle radius.
777
+ */
778
+ circleRadius?: Value<number, ["zoom", "feature", "feature-state"]>;
779
+
780
+ /**
781
+ * The transition affecting any changes to this layer’s circleRadius property.
782
+ */
783
+ circleRadiusTransition?: Transition;
784
+ /**
785
+ * The fill color of the circle.
786
+ */
787
+ circleColor?: Value<string, ["zoom", "feature", "feature-state"]>;
788
+
789
+ /**
790
+ * The transition affecting any changes to this layer’s circleColor property.
791
+ */
792
+ circleColorTransition?: Transition;
793
+ /**
794
+ * Amount to blur the circle. 1 blurs the circle such that only the centerpoint is full opacity.
795
+ */
796
+ circleBlur?: Value<number, ["zoom", "feature", "feature-state"]>;
797
+
798
+ /**
799
+ * The transition affecting any changes to this layer’s circleBlur property.
800
+ */
801
+ circleBlurTransition?: Transition;
802
+ /**
803
+ * The opacity at which the circle will be drawn.
804
+ */
805
+ circleOpacity?: Value<number, ["zoom", "feature", "feature-state"]>;
806
+
807
+ /**
808
+ * The transition affecting any changes to this layer’s circleOpacity property.
809
+ */
810
+ circleOpacityTransition?: Transition;
811
+ /**
812
+ * The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.
813
+ */
814
+ circleTranslate?: Value<Translation, ["zoom"]>;
815
+
816
+ /**
817
+ * The transition affecting any changes to this layer’s circleTranslate property.
818
+ */
819
+ circleTranslateTransition?: Transition;
820
+ /**
821
+ * Controls the frame of reference for `circleTranslate`.
822
+ *
823
+ * @requires circleTranslate
824
+ */
825
+ circleTranslateAnchor?: Value<"map" | "viewport", ["zoom"]>;
826
+ /**
827
+ * Controls the scaling behavior of the circle when the map is pitched.
828
+ */
829
+ circlePitchScale?: Value<"map" | "viewport", ["zoom"]>;
830
+ /**
831
+ * Orientation of circle when map is pitched.
832
+ */
833
+ circlePitchAlignment?: Value<"map" | "viewport", ["zoom"]>;
834
+ /**
835
+ * The width of the circle's stroke. Strokes are placed outside of the `circleRadius`.
836
+ */
837
+ circleStrokeWidth?: Value<number, ["zoom", "feature", "feature-state"]>;
838
+
839
+ /**
840
+ * The transition affecting any changes to this layer’s circleStrokeWidth property.
841
+ */
842
+ circleStrokeWidthTransition?: Transition;
843
+ /**
844
+ * The stroke color of the circle.
845
+ */
846
+ circleStrokeColor?: Value<string, ["zoom", "feature", "feature-state"]>;
847
+
848
+ /**
849
+ * The transition affecting any changes to this layer’s circleStrokeColor property.
850
+ */
851
+ circleStrokeColorTransition?: Transition;
852
+ /**
853
+ * The opacity of the circle's stroke.
854
+ */
855
+ circleStrokeOpacity?: Value<number, ["zoom", "feature", "feature-state"]>;
856
+
857
+ /**
858
+ * The transition affecting any changes to this layer’s circleStrokeOpacity property.
859
+ */
860
+ circleStrokeOpacityTransition?: Transition;
861
+ }
862
+ export interface HeatmapLayerStyle {
863
+ /**
864
+ * Whether this layer is displayed.
865
+ */
866
+ visibility?: "visible" | "none";
867
+ /**
868
+ * Radius of influence of one heatmap point in pixels. Increasing the value makes the heatmap smoother, but less detailed.
869
+ */
870
+ heatmapRadius?: Value<number, ["zoom", "feature", "feature-state"]>;
871
+
872
+ /**
873
+ * The transition affecting any changes to this layer’s heatmapRadius property.
874
+ */
875
+ heatmapRadiusTransition?: Transition;
876
+ /**
877
+ * A measure of how much an individual point contributes to the heatmap. A value of 10 would be equivalent to having 10 points of weight 1 in the same spot. Especially useful when combined with clustering.
878
+ */
879
+ heatmapWeight?: Value<number, ["zoom", "feature", "feature-state"]>;
880
+ /**
881
+ * Similar to `heatmapWeight` but controls the intensity of the heatmap globally. Primarily used for adjusting the heatmap based on zoom level.
882
+ */
883
+ heatmapIntensity?: Value<number, ["zoom"]>;
884
+
885
+ /**
886
+ * The transition affecting any changes to this layer’s heatmapIntensity property.
887
+ */
888
+ heatmapIntensityTransition?: Transition;
889
+ /**
890
+ * Defines the color of each pixel based on its density value in a heatmap. Should be an expression that uses `["heatmapDensity"]` as input.
891
+ */
892
+ heatmapColor?: Value<string, ["heatmap-density"]>;
893
+ /**
894
+ * The global opacity at which the heatmap layer will be drawn.
895
+ */
896
+ heatmapOpacity?: Value<number, ["zoom"]>;
897
+
898
+ /**
899
+ * The transition affecting any changes to this layer’s heatmapOpacity property.
900
+ */
901
+ heatmapOpacityTransition?: Transition;
902
+ }
903
+ export interface FillExtrusionLayerStyle {
904
+ /**
905
+ * Whether this layer is displayed.
906
+ */
907
+ visibility?: "visible" | "none";
908
+ /**
909
+ * The opacity of the entire fill extrusion layer. This is rendered on a perLayer, not perFeature, basis, and dataDriven styling is not available.
910
+ */
911
+ fillExtrusionOpacity?: Value<number, ["zoom"]>;
912
+
913
+ /**
914
+ * The transition affecting any changes to this layer’s fillExtrusionOpacity property.
915
+ */
916
+ fillExtrusionOpacityTransition?: Transition;
917
+ /**
918
+ * The base color of the extruded fill. The extrusion's surfaces will be shaded differently based on this color in combination with the root `light` settings. If this color is specified as `rgba` with an alpha component, the alpha component will be ignored; use `fillExtrusionOpacity` to set layer opacity.
919
+ *
920
+ * @disabledBy fillExtrusionPattern
921
+ */
922
+ fillExtrusionColor?: Value<string, ["zoom", "feature", "feature-state"]>;
923
+
924
+ /**
925
+ * The transition affecting any changes to this layer’s fillExtrusionColor property.
926
+ */
927
+ fillExtrusionColorTransition?: Transition;
928
+ /**
929
+ * The geometry's offset. Values are [x, y] where negatives indicate left and up (on the flat plane), respectively.
930
+ */
931
+ fillExtrusionTranslate?: Value<Translation, ["zoom"]>;
932
+
933
+ /**
934
+ * The transition affecting any changes to this layer’s fillExtrusionTranslate property.
935
+ */
936
+ fillExtrusionTranslateTransition?: Transition;
937
+ /**
938
+ * Controls the frame of reference for `fillExtrusionTranslate`.
939
+ *
940
+ * @requires fillExtrusionTranslate
941
+ */
942
+ fillExtrusionTranslateAnchor?: Value<"map" | "viewport", ["zoom"]>;
943
+ /**
944
+ * Name of image in sprite to use for drawing images on extruded fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
945
+ */
946
+ fillExtrusionPattern?: Value<ResolvedImageType, ["zoom", "feature"]>;
947
+
948
+ /**
949
+ * The transition affecting any changes to this layer’s fillExtrusionPattern property.
950
+ */
951
+ fillExtrusionPatternTransition?: Transition;
952
+ /**
953
+ * The height with which to extrude this layer.
954
+ */
955
+ fillExtrusionHeight?: Value<number, ["zoom", "feature", "feature-state"]>;
956
+
957
+ /**
958
+ * The transition affecting any changes to this layer’s fillExtrusionHeight property.
959
+ */
960
+ fillExtrusionHeightTransition?: Transition;
961
+ /**
962
+ * The height with which to extrude the base of this layer. Must be less than or equal to `fillExtrusionHeight`.
963
+ *
964
+ * @requires fillExtrusionHeight
965
+ */
966
+ fillExtrusionBase?: Value<number, ["zoom", "feature", "feature-state"]>;
967
+
968
+ /**
969
+ * The transition affecting any changes to this layer’s fillExtrusionBase property.
970
+ */
971
+ fillExtrusionBaseTransition?: Transition;
972
+ /**
973
+ * Whether to apply a vertical gradient to the sides of a fillExtrusion layer. If true, sides will be shaded slightly darker farther down.
974
+ */
975
+ fillExtrusionVerticalGradient?: Value<boolean, ["zoom"]>;
976
+ }
977
+ export interface RasterLayerStyle {
978
+ /**
979
+ * Whether this layer is displayed.
980
+ */
981
+ visibility?: "visible" | "none";
982
+ /**
983
+ * The opacity at which the image will be drawn.
984
+ */
985
+ rasterOpacity?: Value<number, ["zoom"]>;
986
+
987
+ /**
988
+ * The transition affecting any changes to this layer’s rasterOpacity property.
989
+ */
990
+ rasterOpacityTransition?: Transition;
991
+ /**
992
+ * Rotates hues around the color wheel.
993
+ */
994
+ rasterHueRotate?: Value<number, ["zoom"]>;
995
+
996
+ /**
997
+ * The transition affecting any changes to this layer’s rasterHueRotate property.
998
+ */
999
+ rasterHueRotateTransition?: Transition;
1000
+ /**
1001
+ * Increase or reduce the brightness of the image. The value is the minimum brightness.
1002
+ */
1003
+ rasterBrightnessMin?: Value<number, ["zoom"]>;
1004
+
1005
+ /**
1006
+ * The transition affecting any changes to this layer’s rasterBrightnessMin property.
1007
+ */
1008
+ rasterBrightnessMinTransition?: Transition;
1009
+ /**
1010
+ * Increase or reduce the brightness of the image. The value is the maximum brightness.
1011
+ */
1012
+ rasterBrightnessMax?: Value<number, ["zoom"]>;
1013
+
1014
+ /**
1015
+ * The transition affecting any changes to this layer’s rasterBrightnessMax property.
1016
+ */
1017
+ rasterBrightnessMaxTransition?: Transition;
1018
+ /**
1019
+ * Increase or reduce the saturation of the image.
1020
+ */
1021
+ rasterSaturation?: Value<number, ["zoom"]>;
1022
+
1023
+ /**
1024
+ * The transition affecting any changes to this layer’s rasterSaturation property.
1025
+ */
1026
+ rasterSaturationTransition?: Transition;
1027
+ /**
1028
+ * Increase or reduce the contrast of the image.
1029
+ */
1030
+ rasterContrast?: Value<number, ["zoom"]>;
1031
+
1032
+ /**
1033
+ * The transition affecting any changes to this layer’s rasterContrast property.
1034
+ */
1035
+ rasterContrastTransition?: Transition;
1036
+ /**
1037
+ * The resampling/interpolation method to use for overscaling, also known as texture magnification filter
1038
+ */
1039
+ rasterResampling?: Value<"linear" | "nearest", ["zoom"]>;
1040
+ /**
1041
+ * Fade duration when a new tile is added, or when a video is started or its coordinates are updated.
1042
+ */
1043
+ rasterFadeDuration?: Value<number, ["zoom"]>;
1044
+ }
1045
+ export interface HillshadeLayerStyle {
1046
+ /**
1047
+ * Whether this layer is displayed.
1048
+ */
1049
+ visibility?: "visible" | "none";
1050
+ /**
1051
+ * The direction of the light source used to generate the hillshading with 0 as the top of the viewport if `hillshadeIlluminationAnchor` is set to `viewport` and due north if `hillshadeIlluminationAnchor` is set to `map`.
1052
+ */
1053
+ hillshadeIlluminationDirection?: Value<number, ["zoom"]>;
1054
+ /**
1055
+ * Direction of light source when map is rotated.
1056
+ */
1057
+ hillshadeIlluminationAnchor?: Value<"map" | "viewport", ["zoom"]>;
1058
+ /**
1059
+ * Intensity of the hillshade
1060
+ */
1061
+ hillshadeExaggeration?: Value<number, ["zoom"]>;
1062
+
1063
+ /**
1064
+ * The transition affecting any changes to this layer’s hillshadeExaggeration property.
1065
+ */
1066
+ hillshadeExaggerationTransition?: Transition;
1067
+ /**
1068
+ * The shading color of areas that face away from the light source.
1069
+ */
1070
+ hillshadeShadowColor?: Value<string, ["zoom"]>;
1071
+
1072
+ /**
1073
+ * The transition affecting any changes to this layer’s hillshadeShadowColor property.
1074
+ */
1075
+ hillshadeShadowColorTransition?: Transition;
1076
+ /**
1077
+ * The shading color of areas that faces towards the light source.
1078
+ */
1079
+ hillshadeHighlightColor?: Value<string, ["zoom"]>;
1080
+
1081
+ /**
1082
+ * The transition affecting any changes to this layer’s hillshadeHighlightColor property.
1083
+ */
1084
+ hillshadeHighlightColorTransition?: Transition;
1085
+ /**
1086
+ * The shading color used to accentuate rugged terrain like sharp cliffs and gorges.
1087
+ */
1088
+ hillshadeAccentColor?: Value<string, ["zoom"]>;
1089
+
1090
+ /**
1091
+ * The transition affecting any changes to this layer’s hillshadeAccentColor property.
1092
+ */
1093
+ hillshadeAccentColorTransition?: Transition;
1094
+ }
1095
+ export interface BackgroundLayerStyle {
1096
+ /**
1097
+ * Whether this layer is displayed.
1098
+ */
1099
+ visibility?: "visible" | "none";
1100
+ /**
1101
+ * The color with which the background will be drawn.
1102
+ *
1103
+ * @disabledBy backgroundPattern
1104
+ */
1105
+ backgroundColor?: Value<string, ["zoom"]>;
1106
+
1107
+ /**
1108
+ * The transition affecting any changes to this layer’s backgroundColor property.
1109
+ */
1110
+ backgroundColorTransition?: Transition;
1111
+ /**
1112
+ * Name of image in sprite to use for drawing an image background. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
1113
+ */
1114
+ backgroundPattern?: Value<ResolvedImageType, ["zoom"]>;
1115
+
1116
+ /**
1117
+ * The transition affecting any changes to this layer’s backgroundPattern property.
1118
+ */
1119
+ backgroundPatternTransition?: Transition;
1120
+ /**
1121
+ * The opacity at which the background will be drawn.
1122
+ */
1123
+ backgroundOpacity?: Value<number, ["zoom"]>;
1124
+
1125
+ /**
1126
+ * The transition affecting any changes to this layer’s backgroundOpacity property.
1127
+ */
1128
+ backgroundOpacityTransition?: Transition;
1129
+ }
1130
+ export interface LightLayerStyle {
1131
+ /**
1132
+ * Whether extruded geometries are lit relative to the map or viewport.
1133
+ */
1134
+ anchor?: Value<"map" | "viewport", ["zoom"]>;
1135
+ /**
1136
+ * Position of the light source relative to lit (extruded) geometries, in [r radial coordinate, a azimuthal angle, p polar angle] where r indicates the distance from the center of the base of an object to its light, a indicates the position of the light relative to 0° (0° when `light.anchor` is set to `viewport` corresponds to the top of the viewport, or 0° when `light.anchor` is set to `map` corresponds to due north, and degrees proceed clockwise), and p indicates the height of the light (from 0°, directly above, to 180°, directly below).
1137
+ */
1138
+ position?: Value<number[], ["zoom"]>;
1139
+
1140
+ /**
1141
+ * The transition affecting any changes to this layer’s position property.
1142
+ */
1143
+ positionTransition?: Transition;
1144
+ /**
1145
+ * Color tint for lighting extruded geometries.
1146
+ */
1147
+ color?: Value<string, ["zoom"]>;
1148
+
1149
+ /**
1150
+ * The transition affecting any changes to this layer’s color property.
1151
+ */
1152
+ colorTransition?: Transition;
1153
+ /**
1154
+ * Intensity of lighting (on a scale from 0 to 1). Higher numbers will present as more extreme contrast.
1155
+ */
1156
+ intensity?: Value<number, ["zoom"]>;
1157
+
1158
+ /**
1159
+ * The transition affecting any changes to this layer’s intensity property.
1160
+ */
1161
+ intensityTransition?: Transition;
1162
+ }
1163
+
1164
+ export type AllLayerStyle =
1165
+ | FillLayerStyle
1166
+ | LineLayerStyle
1167
+ | SymbolLayerStyle
1168
+ | CircleLayerStyle
1169
+ | HeatmapLayerStyle
1170
+ | FillExtrusionLayerStyle
1171
+ | RasterLayerStyle
1172
+ | HillshadeLayerStyle
1173
+ | BackgroundLayerStyle
1174
+ | LightLayerStyle;