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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1181) hide show
  1. package/LICENSE.md +2 -2
  2. package/README.md +51 -54
  3. package/android/build.gradle +51 -16
  4. package/android/src/main/AndroidManifest.xml +4 -0
  5. package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java +95 -0
  6. package/android/src/main/java/org/maplibre/reactnative/components/AbstractEvent.java +35 -0
  7. package/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java +84 -0
  8. package/android/src/main/java/org/maplibre/reactnative/components/AbstractMapFeature.java +15 -0
  9. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java +11 -0
  10. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java +18 -0
  11. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerView.java +112 -0
  12. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNMarkerViewManager.java +45 -0
  13. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotation.java +361 -0
  14. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java +84 -0
  15. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerView.java +23 -0
  16. package/android/src/main/java/org/maplibre/reactnative/components/annotation/MarkerViewManager.java +69 -0
  17. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java +245 -0
  18. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java +121 -0
  19. package/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java +68 -0
  20. package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCamera.java +530 -0
  21. package/android/src/main/java/org/maplibre/reactnative/components/camera/MLRNCameraManager.java +101 -0
  22. package/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java +18 -0
  23. package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImages.java +234 -0
  24. package/android/src/main/java/org/maplibre/reactnative/components/images/MLRNImagesManager.java +103 -0
  25. package/android/src/main/java/org/maplibre/reactnative/components/location/LocationComponentManager.java +158 -0
  26. package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocation.java +76 -0
  27. package/android/src/main/java/org/maplibre/reactnative/components/location/MLRNNativeUserLocationManager.java +40 -0
  28. package/android/src/main/java/org/maplibre/reactnative/components/mapview/LayerSourceInfo.java +59 -0
  29. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java +13 -0
  30. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java +27 -0
  31. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java +1523 -0
  32. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java +349 -0
  33. package/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java +37 -0
  34. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java +79 -0
  35. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFactory.java +2286 -0
  36. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java +103 -0
  37. package/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java +208 -0
  38. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java +23 -0
  39. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java +60 -0
  40. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java +51 -0
  41. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java +73 -0
  42. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java +51 -0
  43. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java +76 -0
  44. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java +51 -0
  45. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java +76 -0
  46. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java +51 -0
  47. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java +73 -0
  48. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java +283 -0
  49. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java +51 -0
  50. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java +75 -0
  51. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java +23 -0
  52. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java +60 -0
  53. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java +51 -0
  54. package/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java +71 -0
  55. package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java +61 -0
  56. package/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java +25 -0
  57. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java +77 -0
  58. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java +68 -0
  59. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java +41 -0
  60. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java +39 -0
  61. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java +312 -0
  62. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java +249 -0
  63. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java +240 -0
  64. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSource.java +97 -0
  65. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNTileSourceManager.java +80 -0
  66. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java +60 -0
  67. package/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java +80 -0
  68. package/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java +62 -0
  69. package/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java +34 -0
  70. package/android/src/main/java/org/maplibre/reactnative/events/EventEmitter.java +45 -0
  71. package/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java +75 -0
  72. package/android/src/main/java/org/maplibre/reactnative/events/IEvent.java +14 -0
  73. package/android/src/main/java/org/maplibre/reactnative/events/ImageMissingEvent.java +42 -0
  74. package/android/src/main/java/org/maplibre/reactnative/events/LocationEvent.java +100 -0
  75. package/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java +43 -0
  76. package/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java +47 -0
  77. package/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java +32 -0
  78. package/android/src/main/java/org/maplibre/reactnative/events/OfflineEvent.java +25 -0
  79. package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java +42 -0
  80. package/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationDragEvent.java +51 -0
  81. package/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java +35 -0
  82. package/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java +47 -0
  83. package/android/src/main/java/org/maplibre/reactnative/http/CustomHeadersInterceptor.java +38 -0
  84. package/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java +164 -0
  85. package/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java +59 -0
  86. package/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java +7 -0
  87. package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java +59 -0
  88. package/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java +15 -0
  89. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLocationModule.java +158 -0
  90. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLogging.java +140 -0
  91. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java +344 -0
  92. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java +588 -0
  93. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.java +135 -0
  94. package/android/src/main/java/org/maplibre/reactnative/utils/BitmapUtils.java +125 -0
  95. package/android/src/main/java/org/maplibre/reactnative/utils/ClusterPropertyEntry.java +13 -0
  96. package/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java +253 -0
  97. package/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java +155 -0
  98. package/android/src/main/java/org/maplibre/reactnative/utils/ExpressionParser.java +74 -0
  99. package/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java +205 -0
  100. package/android/src/main/java/org/maplibre/reactnative/utils/GeoViewport.java +37 -0
  101. package/android/src/main/java/org/maplibre/reactnative/utils/ImageEntry.java +25 -0
  102. package/android/src/main/java/org/maplibre/reactnative/utils/ResourceUtils.java +26 -0
  103. package/android/src/main/java/org/maplibre/reactnative/utils/SimpleEventCallback.java +26 -0
  104. package/android/src/main/java/org/maplibre/reactnative/utils/SphericalMercator.java +68 -0
  105. package/android/src/main/res/values/strings.xml +3 -0
  106. package/app.plugin.js +1 -1
  107. package/ios/MLRN/CameraMode.h +10 -0
  108. package/ios/MLRN/CameraMode.m +10 -0
  109. package/ios/MLRN/CameraStop.h +18 -0
  110. package/ios/MLRN/CameraStop.m +75 -0
  111. package/ios/MLRN/CameraUpdateItem.h +10 -0
  112. package/ios/MLRN/CameraUpdateItem.m +169 -0
  113. package/ios/MLRN/CameraUpdateQueue.h +13 -0
  114. package/ios/MLRN/CameraUpdateQueue.m +66 -0
  115. package/ios/MLRN/FilterParser.h +7 -0
  116. package/ios/MLRN/FilterParser.m +14 -0
  117. package/ios/MLRN/MLRN.h +5 -0
  118. package/ios/MLRN/MLRN.m +5 -0
  119. package/ios/MLRN/MLRNBackgroundLayer.h +6 -0
  120. package/ios/MLRN/MLRNBackgroundLayer.m +19 -0
  121. package/ios/MLRN/MLRNBackgroundLayerManager.h +5 -0
  122. package/ios/MLRN/MLRNBackgroundLayerManager.m +27 -0
  123. package/ios/MLRN/MLRNCallout.h +7 -0
  124. package/ios/MLRN/MLRNCallout.m +66 -0
  125. package/ios/MLRN/MLRNCalloutManager.h +5 -0
  126. package/ios/MLRN/MLRNCalloutManager.m +13 -0
  127. package/ios/MLRN/MLRNCamera.h +29 -0
  128. package/ios/MLRN/MLRNCamera.m +250 -0
  129. package/ios/MLRN/MLRNCameraManager.h +5 -0
  130. package/ios/MLRN/MLRNCameraManager.m +41 -0
  131. package/ios/MLRN/MLRNCircleLayer.h +5 -0
  132. package/ios/MLRN/MLRNCircleLayer.m +26 -0
  133. package/ios/MLRN/MLRNCircleLayerManager.h +5 -0
  134. package/ios/MLRN/MLRNCircleLayerManager.m +31 -0
  135. package/ios/MLRN/MLRNCustomHeaders.h +20 -0
  136. package/ios/MLRN/MLRNCustomHeaders.m +98 -0
  137. package/ios/MLRN/MLRNEvent.h +13 -0
  138. package/ios/MLRN/MLRNEvent.m +39 -0
  139. package/ios/MLRN/MLRNEventProtocol.h +8 -0
  140. package/ios/MLRN/MLRNEventTypes.h +42 -0
  141. package/ios/MLRN/MLRNEventTypes.m +41 -0
  142. package/ios/MLRN/MLRNFillExtrusionLayer.h +6 -0
  143. package/ios/MLRN/MLRNFillExtrusionLayer.m +24 -0
  144. package/ios/MLRN/MLRNFillExtrusionLayerManager.h +5 -0
  145. package/ios/MLRN/MLRNFillExtrusionLayerManager.m +31 -0
  146. package/ios/MLRN/MLRNFillLayer.h +6 -0
  147. package/ios/MLRN/MLRNFillLayer.m +25 -0
  148. package/ios/MLRN/MLRNFillLayerManager.h +5 -0
  149. package/ios/MLRN/MLRNFillLayerManager.m +29 -0
  150. package/ios/MLRN/MLRNHeatmapLayer.h +5 -0
  151. package/ios/MLRN/MLRNHeatmapLayer.m +24 -0
  152. package/ios/MLRN/MLRNHeatmapLayerManager.h +5 -0
  153. package/ios/MLRN/MLRNHeatmapLayerManager.m +31 -0
  154. package/ios/MLRN/MLRNImageQueue.h +11 -0
  155. package/ios/MLRN/MLRNImageQueue.m +49 -0
  156. package/ios/MLRN/MLRNImageQueueOperation.h +10 -0
  157. package/ios/MLRN/MLRNImageQueueOperation.m +130 -0
  158. package/ios/MLRN/MLRNImageSource.h +8 -0
  159. package/ios/MLRN/MLRNImageSource.m +52 -0
  160. package/ios/MLRN/MLRNImageSourceManager.h +5 -0
  161. package/ios/MLRN/MLRNImageSourceManager.m +17 -0
  162. package/ios/MLRN/MLRNImageUtils.h +9 -0
  163. package/ios/MLRN/MLRNImageUtils.m +23 -0
  164. package/ios/MLRN/MLRNImages.h +25 -0
  165. package/ios/MLRN/MLRNImages.m +126 -0
  166. package/ios/MLRN/MLRNImagesManager.h +5 -0
  167. package/ios/MLRN/MLRNImagesManager.m +21 -0
  168. package/ios/MLRN/MLRNLayer.h +44 -0
  169. package/ios/MLRN/MLRNLayer.m +228 -0
  170. package/ios/MLRN/MLRNLight.h +9 -0
  171. package/ios/MLRN/MLRNLight.m +38 -0
  172. package/ios/MLRN/MLRNLightManager.h +5 -0
  173. package/ios/MLRN/MLRNLightManager.m +15 -0
  174. package/ios/MLRN/MLRNLineLayer.h +6 -0
  175. package/ios/MLRN/MLRNLineLayer.m +25 -0
  176. package/ios/MLRN/MLRNLineLayerManager.h +5 -0
  177. package/ios/MLRN/MLRNLineLayerManager.m +32 -0
  178. package/ios/MLRN/MLRNLocation.h +11 -0
  179. package/ios/MLRN/MLRNLocation.m +24 -0
  180. package/ios/MLRN/MLRNLocationManager.h +22 -0
  181. package/ios/MLRN/MLRNLocationManager.m +172 -0
  182. package/ios/MLRN/MLRNLocationManagerDelegate.h +12 -0
  183. package/ios/MLRN/MLRNLocationModule.h +7 -0
  184. package/ios/MLRN/MLRNLocationModule.m +91 -0
  185. package/ios/MLRN/MLRNLogging.h +18 -0
  186. package/ios/MLRN/MLRNLogging.m +132 -0
  187. package/ios/MLRN/MLRNMapTouchEvent.h +17 -0
  188. package/ios/MLRN/MLRNMapTouchEvent.m +69 -0
  189. package/ios/MLRN/MLRNMapView.h +83 -0
  190. package/ios/MLRN/MLRNMapView.m +528 -0
  191. package/ios/MLRN/MLRNMapViewManager.h +9 -0
  192. package/ios/MLRN/MLRNMapViewManager.m +617 -0
  193. package/ios/MLRN/MLRNModule.h +5 -0
  194. package/ios/MLRN/MLRNModule.m +261 -0
  195. package/ios/MLRN/MLRNNativeUserLocation.h +11 -0
  196. package/ios/MLRN/MLRNNativeUserLocation.m +41 -0
  197. package/ios/MLRN/MLRNNativeUserLocationManager.h +5 -0
  198. package/ios/MLRN/MLRNNativeUserLocationManager.m +25 -0
  199. package/ios/MLRN/MLRNOfflineModule.h +11 -0
  200. package/ios/MLRN/MLRNOfflineModule.m +529 -0
  201. package/ios/MLRN/MLRNPointAnnotation.h +33 -0
  202. package/ios/MLRN/MLRNPointAnnotation.m +243 -0
  203. package/ios/MLRN/MLRNPointAnnotationManager.h +5 -0
  204. package/ios/MLRN/MLRNPointAnnotationManager.m +28 -0
  205. package/ios/MLRN/MLRNRasterLayer.h +6 -0
  206. package/ios/MLRN/MLRNRasterLayer.m +22 -0
  207. package/ios/MLRN/MLRNRasterLayerManager.h +5 -0
  208. package/ios/MLRN/MLRNRasterLayerManager.m +27 -0
  209. package/ios/MLRN/MLRNRasterSource.h +8 -0
  210. package/ios/MLRN/MLRNRasterSource.m +27 -0
  211. package/ios/MLRN/MLRNRasterSourceManager.h +5 -0
  212. package/ios/MLRN/MLRNRasterSourceManager.m +24 -0
  213. package/ios/MLRN/MLRNShapeSource.h +45 -0
  214. package/ios/MLRN/MLRNShapeSource.m +186 -0
  215. package/ios/MLRN/MLRNShapeSourceManager.h +6 -0
  216. package/ios/MLRN/MLRNShapeSourceManager.m +199 -0
  217. package/ios/MLRN/MLRNSnapshotModule.h +5 -0
  218. package/ios/MLRN/MLRNSnapshotModule.m +72 -0
  219. package/ios/MLRN/MLRNSource.h +27 -0
  220. package/ios/MLRN/MLRNSource.m +135 -0
  221. package/ios/MLRN/MLRNStyle.h +223 -0
  222. package/ios/MLRN/MLRNStyle.m +1682 -0
  223. package/ios/MLRN/MLRNStyleValue.h +19 -0
  224. package/ios/MLRN/MLRNStyleValue.m +159 -0
  225. package/ios/MLRN/MLRNSymbolLayer.h +11 -0
  226. package/ios/MLRN/MLRNSymbolLayer.m +113 -0
  227. package/ios/MLRN/MLRNSymbolLayerManager.h +5 -0
  228. package/ios/MLRN/MLRNSymbolLayerManager.m +32 -0
  229. package/ios/MLRN/MLRNTileSource.h +22 -0
  230. package/ios/MLRN/MLRNTileSource.m +31 -0
  231. package/ios/MLRN/MLRNUserLocation.h +15 -0
  232. package/ios/MLRN/MLRNUserLocation.m +38 -0
  233. package/ios/MLRN/MLRNUtils.h +23 -0
  234. package/ios/MLRN/MLRNUtils.m +210 -0
  235. package/ios/MLRN/MLRNVectorLayer.h +7 -0
  236. package/ios/MLRN/MLRNVectorLayer.m +51 -0
  237. package/ios/MLRN/MLRNVectorSource.h +8 -0
  238. package/ios/MLRN/MLRNVectorSource.m +20 -0
  239. package/ios/MLRN/MLRNVectorSourceManager.h +6 -0
  240. package/ios/MLRN/MLRNVectorSourceManager.m +71 -0
  241. package/ios/MLRN/ViewManager.h +8 -0
  242. package/ios/MLRN/ViewManager.m +55 -0
  243. package/ios/MLRN.xcodeproj/project.pbxproj +1 -0
  244. package/lib/commonjs/MLRNModule.js +27 -0
  245. package/lib/commonjs/MLRNModule.js.map +1 -0
  246. package/lib/commonjs/MapLibreRN.js +281 -0
  247. package/lib/commonjs/MapLibreRN.js.map +1 -0
  248. package/lib/commonjs/assets/png.d.js +2 -0
  249. package/lib/commonjs/assets/png.d.js.map +1 -0
  250. package/lib/commonjs/components/Annotation.js +109 -0
  251. package/lib/commonjs/components/Annotation.js.map +1 -0
  252. package/lib/commonjs/components/BackgroundLayer.js +33 -0
  253. package/lib/commonjs/components/BackgroundLayer.js.map +1 -0
  254. package/lib/commonjs/components/Callout.js +101 -0
  255. package/lib/commonjs/components/Callout.js.map +1 -0
  256. package/lib/commonjs/components/Camera.js +285 -0
  257. package/lib/commonjs/components/Camera.js.map +1 -0
  258. package/lib/commonjs/components/CircleLayer.js +37 -0
  259. package/lib/commonjs/components/CircleLayer.js.map +1 -0
  260. package/lib/commonjs/components/FillExtrusionLayer.js +36 -0
  261. package/lib/commonjs/components/FillExtrusionLayer.js.map +1 -0
  262. package/lib/commonjs/components/FillLayer.js +36 -0
  263. package/lib/commonjs/components/FillLayer.js.map +1 -0
  264. package/lib/commonjs/components/HeadingIndicator.js +28 -0
  265. package/lib/commonjs/components/HeadingIndicator.js.map +1 -0
  266. package/lib/commonjs/components/HeatmapLayer.js +35 -0
  267. package/lib/commonjs/components/HeatmapLayer.js.map +1 -0
  268. package/lib/commonjs/components/ImageSource.js +42 -0
  269. package/lib/commonjs/components/ImageSource.js.map +1 -0
  270. package/lib/commonjs/components/Images.js +80 -0
  271. package/lib/commonjs/components/Images.js.map +1 -0
  272. package/lib/commonjs/components/Light.js +32 -0
  273. package/lib/commonjs/components/Light.js.map +1 -0
  274. package/lib/commonjs/components/LineLayer.js +36 -0
  275. package/lib/commonjs/components/LineLayer.js.map +1 -0
  276. package/lib/commonjs/components/MapView.js +463 -0
  277. package/lib/commonjs/components/MapView.js.map +1 -0
  278. package/lib/commonjs/components/MarkerView.js +61 -0
  279. package/lib/commonjs/components/MarkerView.js.map +1 -0
  280. package/lib/commonjs/components/NativeUserLocation.js +17 -0
  281. package/lib/commonjs/components/NativeUserLocation.js.map +1 -0
  282. package/lib/commonjs/components/PointAnnotation.js +121 -0
  283. package/lib/commonjs/components/PointAnnotation.js.map +1 -0
  284. package/lib/commonjs/components/RasterLayer.js +32 -0
  285. package/lib/commonjs/components/RasterLayer.js.map +1 -0
  286. package/lib/commonjs/components/RasterSource.js +67 -0
  287. package/lib/commonjs/components/RasterSource.js.map +1 -0
  288. package/lib/commonjs/components/ShapeSource.js +203 -0
  289. package/lib/commonjs/components/ShapeSource.js.map +1 -0
  290. package/lib/commonjs/components/Style.js +266 -0
  291. package/lib/commonjs/components/Style.js.map +1 -0
  292. package/lib/commonjs/components/SymbolLayer.js +53 -0
  293. package/lib/commonjs/components/SymbolLayer.js.map +1 -0
  294. package/lib/commonjs/components/UserLocation.js +188 -0
  295. package/lib/commonjs/components/UserLocation.js.map +1 -0
  296. package/lib/commonjs/components/VectorSource.js +129 -0
  297. package/lib/commonjs/components/VectorSource.js.map +1 -0
  298. package/lib/commonjs/hooks/useAbstractLayer.js +53 -0
  299. package/lib/commonjs/hooks/useAbstractLayer.js.map +1 -0
  300. package/lib/commonjs/hooks/useAbstractSource.js +24 -0
  301. package/lib/commonjs/hooks/useAbstractSource.js.map +1 -0
  302. package/lib/commonjs/hooks/useNativeBridge.js +84 -0
  303. package/lib/commonjs/hooks/useNativeBridge.js.map +1 -0
  304. package/lib/commonjs/hooks/useNativeRef.js +14 -0
  305. package/lib/commonjs/hooks/useNativeRef.js.map +1 -0
  306. package/lib/commonjs/hooks/useOnce.js +16 -0
  307. package/lib/commonjs/hooks/useOnce.js.map +1 -0
  308. package/lib/commonjs/index.js +23 -0
  309. package/lib/commonjs/index.js.map +1 -0
  310. package/lib/commonjs/modules/location/locationManager.js +91 -0
  311. package/lib/commonjs/modules/location/locationManager.js.map +1 -0
  312. package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js +37 -0
  313. package/lib/commonjs/modules/offline/OfflineCreatePackOptions.js.map +1 -0
  314. package/lib/commonjs/modules/offline/OfflinePack.js +40 -0
  315. package/lib/commonjs/modules/offline/OfflinePack.js.map +1 -0
  316. package/lib/commonjs/modules/offline/offlineManager.js +346 -0
  317. package/lib/commonjs/modules/offline/offlineManager.js.map +1 -0
  318. package/lib/commonjs/modules/snapshot/SnapshotOptions.js +58 -0
  319. package/lib/commonjs/modules/snapshot/SnapshotOptions.js.map +1 -0
  320. package/lib/commonjs/modules/snapshot/snapshotManager.js +66 -0
  321. package/lib/commonjs/modules/snapshot/snapshotManager.js.map +1 -0
  322. package/lib/commonjs/requestAndroidLocationPermissions.js +25 -0
  323. package/lib/commonjs/requestAndroidLocationPermissions.js.map +1 -0
  324. package/lib/commonjs/types/BaseProps.js +2 -0
  325. package/lib/commonjs/types/BaseProps.js.map +1 -0
  326. package/lib/commonjs/types/CameraMode.js +14 -0
  327. package/lib/commonjs/types/CameraMode.js.map +1 -0
  328. package/lib/commonjs/types/MapLibreRNEvent.js +6 -0
  329. package/lib/commonjs/types/MapLibreRNEvent.js.map +1 -0
  330. package/lib/commonjs/types/OnPressEvent.js +2 -0
  331. package/lib/commonjs/types/OnPressEvent.js.map +1 -0
  332. package/lib/commonjs/types/StyleURL.js +11 -0
  333. package/lib/commonjs/types/StyleURL.js.map +1 -0
  334. package/lib/commonjs/utils/BridgeValue.js +59 -0
  335. package/lib/commonjs/utils/BridgeValue.js.map +1 -0
  336. package/lib/commonjs/utils/Logger.js +116 -0
  337. package/lib/commonjs/utils/Logger.js.map +1 -0
  338. package/lib/commonjs/utils/MapLibreRNStyles.d.js +181 -0
  339. package/lib/commonjs/utils/MapLibreRNStyles.d.js.map +1 -0
  340. package/lib/commonjs/utils/StyleValue.js +39 -0
  341. package/lib/commonjs/utils/StyleValue.js.map +1 -0
  342. package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js +95 -0
  343. package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
  344. package/lib/commonjs/utils/animated/Animated.js +47 -0
  345. package/lib/commonjs/utils/animated/Animated.js.map +1 -0
  346. package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js +92 -0
  347. package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
  348. package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js +40 -0
  349. package/lib/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
  350. package/lib/commonjs/utils/animated/AnimatedPoint.js +111 -0
  351. package/lib/commonjs/utils/animated/AnimatedPoint.js.map +1 -0
  352. package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +137 -0
  353. package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
  354. package/lib/commonjs/utils/animated/AnimatedShape.js +75 -0
  355. package/lib/commonjs/utils/animated/AnimatedShape.js.map +1 -0
  356. package/lib/commonjs/utils/deprecation.js +31 -0
  357. package/lib/commonjs/utils/deprecation.js.map +1 -0
  358. package/lib/commonjs/utils/filterUtils.js +13 -0
  359. package/lib/commonjs/utils/filterUtils.js.map +1 -0
  360. package/lib/commonjs/utils/index.js +84 -0
  361. package/lib/commonjs/utils/index.js.map +1 -0
  362. package/lib/commonjs/utils/makeNativeBounds.js +11 -0
  363. package/lib/commonjs/utils/makeNativeBounds.js.map +1 -0
  364. package/lib/commonjs/utils/styleMap.js +255 -0
  365. package/lib/commonjs/utils/styleMap.js.map +1 -0
  366. package/lib/module/MLRNModule.js +15 -0
  367. package/lib/module/MLRNModule.js.map +1 -0
  368. package/lib/module/MapLibreRN.js +37 -0
  369. package/lib/module/MapLibreRN.js.map +1 -0
  370. package/lib/module/assets/heading.png +0 -0
  371. package/lib/module/assets/heading@2x.png +0 -0
  372. package/lib/module/assets/heading@3x.png +0 -0
  373. package/lib/module/assets/png.d.js +2 -0
  374. package/lib/module/assets/png.d.js.map +1 -0
  375. package/lib/module/components/Annotation.js +104 -0
  376. package/lib/module/components/Annotation.js.map +1 -0
  377. package/lib/module/components/BackgroundLayer.js +28 -0
  378. package/lib/module/components/BackgroundLayer.js.map +1 -0
  379. package/lib/module/components/Callout.js +97 -0
  380. package/lib/module/components/Callout.js.map +1 -0
  381. package/lib/module/components/Camera.js +280 -0
  382. package/lib/module/components/Camera.js.map +1 -0
  383. package/lib/module/components/CircleLayer.js +32 -0
  384. package/lib/module/components/CircleLayer.js.map +1 -0
  385. package/lib/module/components/FillExtrusionLayer.js +31 -0
  386. package/lib/module/components/FillExtrusionLayer.js.map +1 -0
  387. package/lib/module/components/FillLayer.js +31 -0
  388. package/lib/module/components/FillLayer.js.map +1 -0
  389. package/lib/module/components/HeadingIndicator.js +23 -0
  390. package/lib/module/components/HeadingIndicator.js.map +1 -0
  391. package/lib/module/components/HeatmapLayer.js +30 -0
  392. package/lib/module/components/HeatmapLayer.js.map +1 -0
  393. package/lib/module/components/ImageSource.js +37 -0
  394. package/lib/module/components/ImageSource.js.map +1 -0
  395. package/lib/module/components/Images.js +76 -0
  396. package/lib/module/components/Images.js.map +1 -0
  397. package/lib/module/components/Light.js +27 -0
  398. package/lib/module/components/Light.js.map +1 -0
  399. package/lib/module/components/LineLayer.js +31 -0
  400. package/lib/module/components/LineLayer.js.map +1 -0
  401. package/lib/module/components/MapView.js +458 -0
  402. package/lib/module/components/MapView.js.map +1 -0
  403. package/lib/module/components/MarkerView.js +56 -0
  404. package/lib/module/components/MarkerView.js.map +1 -0
  405. package/lib/module/components/NativeUserLocation.js +13 -0
  406. package/lib/module/components/NativeUserLocation.js.map +1 -0
  407. package/lib/module/components/PointAnnotation.js +116 -0
  408. package/lib/module/components/PointAnnotation.js.map +1 -0
  409. package/lib/module/components/RasterLayer.js +27 -0
  410. package/lib/module/components/RasterLayer.js.map +1 -0
  411. package/lib/module/components/RasterSource.js +62 -0
  412. package/lib/module/components/RasterSource.js.map +1 -0
  413. package/lib/module/components/ShapeSource.js +198 -0
  414. package/lib/module/components/ShapeSource.js.map +1 -0
  415. package/lib/module/components/Style.js +261 -0
  416. package/lib/module/components/Style.js.map +1 -0
  417. package/lib/module/components/SymbolLayer.js +48 -0
  418. package/lib/module/components/SymbolLayer.js.map +1 -0
  419. package/lib/module/components/UserLocation.js +182 -0
  420. package/lib/module/components/UserLocation.js.map +1 -0
  421. package/lib/module/components/VectorSource.js +124 -0
  422. package/lib/module/components/VectorSource.js.map +1 -0
  423. package/lib/module/hooks/useAbstractLayer.js +49 -0
  424. package/lib/module/hooks/useAbstractLayer.js.map +1 -0
  425. package/lib/module/hooks/useAbstractSource.js +20 -0
  426. package/lib/module/hooks/useAbstractSource.js.map +1 -0
  427. package/lib/module/hooks/useNativeBridge.js +80 -0
  428. package/lib/module/hooks/useNativeBridge.js.map +1 -0
  429. package/lib/module/hooks/useNativeRef.js +10 -0
  430. package/lib/module/hooks/useNativeRef.js.map +1 -0
  431. package/lib/module/hooks/useOnce.js +12 -0
  432. package/lib/module/hooks/useOnce.js.map +1 -0
  433. package/lib/module/index.js +6 -0
  434. package/lib/module/index.js.map +1 -0
  435. package/lib/module/modules/location/locationManager.js +87 -0
  436. package/lib/module/modules/location/locationManager.js.map +1 -0
  437. package/lib/module/modules/offline/OfflineCreatePackOptions.js +33 -0
  438. package/lib/module/modules/offline/OfflineCreatePackOptions.js.map +1 -0
  439. package/lib/module/modules/offline/OfflinePack.js +36 -0
  440. package/lib/module/modules/offline/OfflinePack.js.map +1 -0
  441. package/lib/module/modules/offline/offlineManager.js +341 -0
  442. package/lib/module/modules/offline/offlineManager.js.map +1 -0
  443. package/lib/module/modules/snapshot/SnapshotOptions.js +53 -0
  444. package/lib/module/modules/snapshot/SnapshotOptions.js.map +1 -0
  445. package/lib/module/modules/snapshot/snapshotManager.js +61 -0
  446. package/lib/module/modules/snapshot/snapshotManager.js.map +1 -0
  447. package/lib/module/requestAndroidLocationPermissions.js +21 -0
  448. package/lib/module/requestAndroidLocationPermissions.js.map +1 -0
  449. package/lib/module/types/BaseProps.js +2 -0
  450. package/lib/module/types/BaseProps.js.map +1 -0
  451. package/lib/module/types/CameraMode.js +10 -0
  452. package/lib/module/types/CameraMode.js.map +1 -0
  453. package/lib/module/types/MapLibreRNEvent.js +4 -0
  454. package/lib/module/types/MapLibreRNEvent.js.map +1 -0
  455. package/lib/module/types/OnPressEvent.js +2 -0
  456. package/lib/module/types/OnPressEvent.js.map +1 -0
  457. package/lib/module/types/StyleURL.js +7 -0
  458. package/lib/module/types/StyleURL.js.map +1 -0
  459. package/lib/module/utils/BridgeValue.js +54 -0
  460. package/lib/module/utils/BridgeValue.js.map +1 -0
  461. package/lib/module/utils/Logger.js +112 -0
  462. package/lib/module/utils/Logger.js.map +1 -0
  463. package/lib/module/utils/MapLibreRNStyles.d.js +180 -0
  464. package/lib/module/utils/MapLibreRNStyles.d.js.map +1 -0
  465. package/lib/module/utils/StyleValue.js +34 -0
  466. package/lib/module/utils/StyleValue.js.map +1 -0
  467. package/lib/module/utils/animated/AbstractAnimatedCoordinates.js +92 -0
  468. package/lib/module/utils/animated/AbstractAnimatedCoordinates.js.map +1 -0
  469. package/lib/module/utils/animated/Animated.js +42 -0
  470. package/lib/module/utils/animated/Animated.js.map +1 -0
  471. package/lib/module/utils/animated/AnimatedCoordinatesArray.js +87 -0
  472. package/lib/module/utils/animated/AnimatedCoordinatesArray.js.map +1 -0
  473. package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js +36 -0
  474. package/lib/module/utils/animated/AnimatedExtractCoordinateFromArray.js.map +1 -0
  475. package/lib/module/utils/animated/AnimatedPoint.js +107 -0
  476. package/lib/module/utils/animated/AnimatedPoint.js.map +1 -0
  477. package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +131 -0
  478. package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js.map +1 -0
  479. package/lib/module/utils/animated/AnimatedShape.js +71 -0
  480. package/lib/module/utils/animated/AnimatedShape.js.map +1 -0
  481. package/lib/module/utils/deprecation.js +27 -0
  482. package/lib/module/utils/deprecation.js.map +1 -0
  483. package/lib/module/utils/filterUtils.js +9 -0
  484. package/lib/module/utils/filterUtils.js.map +1 -0
  485. package/lib/module/utils/index.js +69 -0
  486. package/lib/module/utils/index.js.map +1 -0
  487. package/lib/module/utils/makeNativeBounds.js +7 -0
  488. package/lib/module/utils/makeNativeBounds.js.map +1 -0
  489. package/lib/module/utils/styleMap.js +249 -0
  490. package/lib/module/utils/styleMap.js.map +1 -0
  491. package/lib/typescript/commonjs/jest.config.d.ts +2 -0
  492. package/lib/typescript/commonjs/jest.config.d.ts.map +1 -0
  493. package/lib/typescript/commonjs/package.json +1 -0
  494. package/lib/typescript/commonjs/src/MLRNModule.d.ts +21 -0
  495. package/lib/typescript/commonjs/src/MLRNModule.d.ts.map +1 -0
  496. package/lib/typescript/commonjs/src/MapLibreRN.d.ts +42 -0
  497. package/lib/typescript/commonjs/src/MapLibreRN.d.ts.map +1 -0
  498. package/lib/typescript/commonjs/src/components/Annotation.d.ts +21 -0
  499. package/lib/typescript/commonjs/src/components/Annotation.d.ts.map +1 -0
  500. package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts +14 -0
  501. package/lib/typescript/commonjs/src/components/BackgroundLayer.d.ts.map +1 -0
  502. package/lib/typescript/commonjs/src/components/Callout.d.ts +35 -0
  503. package/lib/typescript/commonjs/src/components/Callout.d.ts.map +1 -0
  504. package/lib/typescript/commonjs/src/components/Camera.d.ts +134 -0
  505. package/lib/typescript/commonjs/src/components/Camera.d.ts.map +1 -0
  506. package/lib/typescript/commonjs/src/components/CircleLayer.d.ts +17 -0
  507. package/lib/typescript/commonjs/src/components/CircleLayer.d.ts.map +1 -0
  508. package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts +17 -0
  509. package/lib/typescript/commonjs/src/components/FillExtrusionLayer.d.ts.map +1 -0
  510. package/lib/typescript/commonjs/src/components/FillLayer.d.ts +17 -0
  511. package/lib/typescript/commonjs/src/components/FillLayer.d.ts.map +1 -0
  512. package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts +8 -0
  513. package/lib/typescript/commonjs/src/components/HeadingIndicator.d.ts.map +1 -0
  514. package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts +17 -0
  515. package/lib/typescript/commonjs/src/components/HeatmapLayer.d.ts.map +1 -0
  516. package/lib/typescript/commonjs/src/components/ImageSource.d.ts +31 -0
  517. package/lib/typescript/commonjs/src/components/ImageSource.d.ts.map +1 -0
  518. package/lib/typescript/commonjs/src/components/Images.d.ts +33 -0
  519. package/lib/typescript/commonjs/src/components/Images.d.ts.map +1 -0
  520. package/lib/typescript/commonjs/src/components/Light.d.ts +17 -0
  521. package/lib/typescript/commonjs/src/components/Light.d.ts.map +1 -0
  522. package/lib/typescript/commonjs/src/components/LineLayer.d.ts +17 -0
  523. package/lib/typescript/commonjs/src/components/LineLayer.d.ts.map +1 -0
  524. package/lib/typescript/commonjs/src/components/MapView.d.ts +235 -0
  525. package/lib/typescript/commonjs/src/components/MapView.d.ts.map +1 -0
  526. package/lib/typescript/commonjs/src/components/MarkerView.d.ts +44 -0
  527. package/lib/typescript/commonjs/src/components/MarkerView.d.ts.map +1 -0
  528. package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts +26 -0
  529. package/lib/typescript/commonjs/src/components/NativeUserLocation.d.ts.map +1 -0
  530. package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts +91 -0
  531. package/lib/typescript/commonjs/src/components/PointAnnotation.d.ts.map +1 -0
  532. package/lib/typescript/commonjs/src/components/RasterLayer.d.ts +14 -0
  533. package/lib/typescript/commonjs/src/components/RasterLayer.d.ts.map +1 -0
  534. package/lib/typescript/commonjs/src/components/RasterSource.d.ts +53 -0
  535. package/lib/typescript/commonjs/src/components/RasterSource.d.ts.map +1 -0
  536. package/lib/typescript/commonjs/src/components/ShapeSource.d.ts +124 -0
  537. package/lib/typescript/commonjs/src/components/ShapeSource.d.ts.map +1 -0
  538. package/lib/typescript/commonjs/src/components/Style.d.ts +81 -0
  539. package/lib/typescript/commonjs/src/components/Style.d.ts.map +1 -0
  540. package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts +22 -0
  541. package/lib/typescript/commonjs/src/components/SymbolLayer.d.ts.map +1 -0
  542. package/lib/typescript/commonjs/src/components/UserLocation.d.ts +70 -0
  543. package/lib/typescript/commonjs/src/components/UserLocation.d.ts.map +1 -0
  544. package/lib/typescript/commonjs/src/components/VectorSource.d.ts +70 -0
  545. package/lib/typescript/commonjs/src/components/VectorSource.d.ts.map +1 -0
  546. package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts +62 -0
  547. package/lib/typescript/commonjs/src/hooks/useAbstractLayer.d.ts.map +1 -0
  548. package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts +7 -0
  549. package/lib/typescript/commonjs/src/hooks/useAbstractSource.d.ts.map +1 -0
  550. package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts +21 -0
  551. package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts.map +1 -0
  552. package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts +8 -0
  553. package/lib/typescript/commonjs/src/hooks/useNativeRef.d.ts.map +1 -0
  554. package/lib/typescript/commonjs/src/hooks/useOnce.d.ts +3 -0
  555. package/lib/typescript/commonjs/src/hooks/useOnce.d.ts.map +1 -0
  556. package/lib/typescript/commonjs/src/index.d.ts +4 -0
  557. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  558. package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts +64 -0
  559. package/lib/typescript/commonjs/src/modules/location/locationManager.d.ts.map +1 -0
  560. package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts +21 -0
  561. package/lib/typescript/commonjs/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -0
  562. package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts +24 -0
  563. package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts.map +1 -0
  564. package/lib/typescript/commonjs/src/modules/offline/offlineManager.d.ts +210 -0
  565. package/lib/typescript/commonjs/src/modules/offline/offlineManager.d.ts.map +1 -0
  566. package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts +42 -0
  567. package/lib/typescript/commonjs/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -0
  568. package/lib/typescript/commonjs/src/modules/snapshot/snapshotManager.d.ts +52 -0
  569. package/lib/typescript/commonjs/src/modules/snapshot/snapshotManager.d.ts.map +1 -0
  570. package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts +2 -0
  571. package/lib/typescript/commonjs/src/requestAndroidLocationPermissions.d.ts.map +1 -0
  572. package/lib/typescript/commonjs/src/types/BaseProps.d.ts +4 -0
  573. package/lib/typescript/commonjs/src/types/BaseProps.d.ts.map +1 -0
  574. package/lib/typescript/commonjs/src/types/CameraMode.d.ts +7 -0
  575. package/lib/typescript/commonjs/src/types/CameraMode.d.ts.map +1 -0
  576. package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts +6 -0
  577. package/lib/typescript/commonjs/src/types/MapLibreRNEvent.d.ts.map +1 -0
  578. package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts +12 -0
  579. package/lib/typescript/commonjs/src/types/OnPressEvent.d.ts.map +1 -0
  580. package/lib/typescript/commonjs/src/types/StyleURL.d.ts +4 -0
  581. package/lib/typescript/commonjs/src/types/StyleURL.d.ts.map +1 -0
  582. package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts +29 -0
  583. package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts.map +1 -0
  584. package/lib/typescript/commonjs/src/utils/Logger.d.ts +52 -0
  585. package/lib/typescript/commonjs/src/utils/Logger.d.ts.map +1 -0
  586. package/lib/typescript/commonjs/src/utils/StyleValue.d.ts +10 -0
  587. package/lib/typescript/commonjs/src/utils/StyleValue.d.ts.map +1 -0
  588. package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts +37 -0
  589. package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  590. package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts +33 -0
  591. package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +1 -0
  592. package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
  593. package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  594. package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +12 -0
  595. package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  596. package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts +32 -0
  597. package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts.map +1 -0
  598. package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +54 -0
  599. package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  600. package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts +28 -0
  601. package/lib/typescript/commonjs/src/utils/animated/AnimatedShape.d.ts.map +1 -0
  602. package/lib/typescript/commonjs/src/utils/deprecation.d.ts +6 -0
  603. package/lib/typescript/commonjs/src/utils/deprecation.d.ts.map +1 -0
  604. package/lib/typescript/commonjs/src/utils/filterUtils.d.ts +3 -0
  605. package/lib/typescript/commonjs/src/utils/filterUtils.d.ts.map +1 -0
  606. package/lib/typescript/commonjs/src/utils/index.d.ts +20 -0
  607. package/lib/typescript/commonjs/src/utils/index.d.ts.map +1 -0
  608. package/lib/typescript/commonjs/src/utils/makeNativeBounds.d.ts +2 -0
  609. package/lib/typescript/commonjs/src/utils/makeNativeBounds.d.ts.map +1 -0
  610. package/lib/typescript/commonjs/src/utils/styleMap.d.ts +231 -0
  611. package/lib/typescript/commonjs/src/utils/styleMap.d.ts.map +1 -0
  612. package/lib/typescript/module/jest.config.d.ts +2 -0
  613. package/lib/typescript/module/jest.config.d.ts.map +1 -0
  614. package/lib/typescript/module/package.json +1 -0
  615. package/lib/typescript/module/src/MLRNModule.d.ts +21 -0
  616. package/lib/typescript/module/src/MLRNModule.d.ts.map +1 -0
  617. package/lib/typescript/module/src/MapLibreRN.d.ts +42 -0
  618. package/lib/typescript/module/src/MapLibreRN.d.ts.map +1 -0
  619. package/lib/typescript/module/src/components/Annotation.d.ts +21 -0
  620. package/lib/typescript/module/src/components/Annotation.d.ts.map +1 -0
  621. package/lib/typescript/module/src/components/BackgroundLayer.d.ts +14 -0
  622. package/lib/typescript/module/src/components/BackgroundLayer.d.ts.map +1 -0
  623. package/lib/typescript/module/src/components/Callout.d.ts +35 -0
  624. package/lib/typescript/module/src/components/Callout.d.ts.map +1 -0
  625. package/lib/typescript/module/src/components/Camera.d.ts +134 -0
  626. package/lib/typescript/module/src/components/Camera.d.ts.map +1 -0
  627. package/lib/typescript/module/src/components/CircleLayer.d.ts +17 -0
  628. package/lib/typescript/module/src/components/CircleLayer.d.ts.map +1 -0
  629. package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts +17 -0
  630. package/lib/typescript/module/src/components/FillExtrusionLayer.d.ts.map +1 -0
  631. package/lib/typescript/module/src/components/FillLayer.d.ts +17 -0
  632. package/lib/typescript/module/src/components/FillLayer.d.ts.map +1 -0
  633. package/lib/typescript/module/src/components/HeadingIndicator.d.ts +8 -0
  634. package/lib/typescript/module/src/components/HeadingIndicator.d.ts.map +1 -0
  635. package/lib/typescript/module/src/components/HeatmapLayer.d.ts +17 -0
  636. package/lib/typescript/module/src/components/HeatmapLayer.d.ts.map +1 -0
  637. package/lib/typescript/module/src/components/ImageSource.d.ts +31 -0
  638. package/lib/typescript/module/src/components/ImageSource.d.ts.map +1 -0
  639. package/lib/typescript/module/src/components/Images.d.ts +33 -0
  640. package/lib/typescript/module/src/components/Images.d.ts.map +1 -0
  641. package/lib/typescript/module/src/components/Light.d.ts +17 -0
  642. package/lib/typescript/module/src/components/Light.d.ts.map +1 -0
  643. package/lib/typescript/module/src/components/LineLayer.d.ts +17 -0
  644. package/lib/typescript/module/src/components/LineLayer.d.ts.map +1 -0
  645. package/lib/typescript/module/src/components/MapView.d.ts +235 -0
  646. package/lib/typescript/module/src/components/MapView.d.ts.map +1 -0
  647. package/lib/typescript/module/src/components/MarkerView.d.ts +44 -0
  648. package/lib/typescript/module/src/components/MarkerView.d.ts.map +1 -0
  649. package/lib/typescript/module/src/components/NativeUserLocation.d.ts +26 -0
  650. package/lib/typescript/module/src/components/NativeUserLocation.d.ts.map +1 -0
  651. package/lib/typescript/module/src/components/PointAnnotation.d.ts +91 -0
  652. package/lib/typescript/module/src/components/PointAnnotation.d.ts.map +1 -0
  653. package/lib/typescript/module/src/components/RasterLayer.d.ts +14 -0
  654. package/lib/typescript/module/src/components/RasterLayer.d.ts.map +1 -0
  655. package/lib/typescript/module/src/components/RasterSource.d.ts +53 -0
  656. package/lib/typescript/module/src/components/RasterSource.d.ts.map +1 -0
  657. package/lib/typescript/module/src/components/ShapeSource.d.ts +124 -0
  658. package/lib/typescript/module/src/components/ShapeSource.d.ts.map +1 -0
  659. package/lib/typescript/module/src/components/Style.d.ts +81 -0
  660. package/lib/typescript/module/src/components/Style.d.ts.map +1 -0
  661. package/lib/typescript/module/src/components/SymbolLayer.d.ts +22 -0
  662. package/lib/typescript/module/src/components/SymbolLayer.d.ts.map +1 -0
  663. package/lib/typescript/module/src/components/UserLocation.d.ts +70 -0
  664. package/lib/typescript/module/src/components/UserLocation.d.ts.map +1 -0
  665. package/lib/typescript/module/src/components/VectorSource.d.ts +70 -0
  666. package/lib/typescript/module/src/components/VectorSource.d.ts.map +1 -0
  667. package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts +62 -0
  668. package/lib/typescript/module/src/hooks/useAbstractLayer.d.ts.map +1 -0
  669. package/lib/typescript/module/src/hooks/useAbstractSource.d.ts +7 -0
  670. package/lib/typescript/module/src/hooks/useAbstractSource.d.ts.map +1 -0
  671. package/lib/typescript/module/src/hooks/useNativeBridge.d.ts +21 -0
  672. package/lib/typescript/module/src/hooks/useNativeBridge.d.ts.map +1 -0
  673. package/lib/typescript/module/src/hooks/useNativeRef.d.ts +8 -0
  674. package/lib/typescript/module/src/hooks/useNativeRef.d.ts.map +1 -0
  675. package/lib/typescript/module/src/hooks/useOnce.d.ts +3 -0
  676. package/lib/typescript/module/src/hooks/useOnce.d.ts.map +1 -0
  677. package/lib/typescript/module/src/index.d.ts +4 -0
  678. package/lib/typescript/module/src/index.d.ts.map +1 -0
  679. package/lib/typescript/module/src/modules/location/locationManager.d.ts +64 -0
  680. package/lib/typescript/module/src/modules/location/locationManager.d.ts.map +1 -0
  681. package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts +21 -0
  682. package/lib/typescript/module/src/modules/offline/OfflineCreatePackOptions.d.ts.map +1 -0
  683. package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts +24 -0
  684. package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts.map +1 -0
  685. package/lib/typescript/module/src/modules/offline/offlineManager.d.ts +210 -0
  686. package/lib/typescript/module/src/modules/offline/offlineManager.d.ts.map +1 -0
  687. package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts +42 -0
  688. package/lib/typescript/module/src/modules/snapshot/SnapshotOptions.d.ts.map +1 -0
  689. package/lib/typescript/module/src/modules/snapshot/snapshotManager.d.ts +52 -0
  690. package/lib/typescript/module/src/modules/snapshot/snapshotManager.d.ts.map +1 -0
  691. package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts +2 -0
  692. package/lib/typescript/module/src/requestAndroidLocationPermissions.d.ts.map +1 -0
  693. package/lib/typescript/module/src/types/BaseProps.d.ts +4 -0
  694. package/lib/typescript/module/src/types/BaseProps.d.ts.map +1 -0
  695. package/lib/typescript/module/src/types/CameraMode.d.ts +7 -0
  696. package/lib/typescript/module/src/types/CameraMode.d.ts.map +1 -0
  697. package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts +6 -0
  698. package/lib/typescript/module/src/types/MapLibreRNEvent.d.ts.map +1 -0
  699. package/lib/typescript/module/src/types/OnPressEvent.d.ts +12 -0
  700. package/lib/typescript/module/src/types/OnPressEvent.d.ts.map +1 -0
  701. package/lib/typescript/module/src/types/StyleURL.d.ts +4 -0
  702. package/lib/typescript/module/src/types/StyleURL.d.ts.map +1 -0
  703. package/lib/typescript/module/src/utils/BridgeValue.d.ts +29 -0
  704. package/lib/typescript/module/src/utils/BridgeValue.d.ts.map +1 -0
  705. package/lib/typescript/module/src/utils/Logger.d.ts +52 -0
  706. package/lib/typescript/module/src/utils/Logger.d.ts.map +1 -0
  707. package/lib/typescript/module/src/utils/StyleValue.d.ts +10 -0
  708. package/lib/typescript/module/src/utils/StyleValue.d.ts.map +1 -0
  709. package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts +37 -0
  710. package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  711. package/lib/typescript/module/src/utils/animated/Animated.d.ts +33 -0
  712. package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +1 -0
  713. package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts +40 -0
  714. package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  715. package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts +12 -0
  716. package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  717. package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts +32 -0
  718. package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts.map +1 -0
  719. package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts +54 -0
  720. package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  721. package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts +28 -0
  722. package/lib/typescript/module/src/utils/animated/AnimatedShape.d.ts.map +1 -0
  723. package/lib/typescript/module/src/utils/deprecation.d.ts +6 -0
  724. package/lib/typescript/module/src/utils/deprecation.d.ts.map +1 -0
  725. package/lib/typescript/module/src/utils/filterUtils.d.ts +3 -0
  726. package/lib/typescript/module/src/utils/filterUtils.d.ts.map +1 -0
  727. package/lib/typescript/module/src/utils/index.d.ts +20 -0
  728. package/lib/typescript/module/src/utils/index.d.ts.map +1 -0
  729. package/lib/typescript/module/src/utils/makeNativeBounds.d.ts +2 -0
  730. package/lib/typescript/module/src/utils/makeNativeBounds.d.ts.map +1 -0
  731. package/lib/typescript/module/src/utils/styleMap.d.ts +231 -0
  732. package/lib/typescript/module/src/utils/styleMap.d.ts.map +1 -0
  733. package/maplibre-react-native.podspec +14 -14
  734. package/package.json +141 -110
  735. package/plugin/build/withMapLibre.d.ts +1 -1
  736. package/plugin/build/withMapLibre.js +31 -17
  737. package/src/MLRNModule.ts +46 -0
  738. package/src/MapLibreRN.ts +70 -0
  739. package/src/assets/heading.png +0 -0
  740. package/src/assets/heading@2x.png +0 -0
  741. package/src/assets/heading@3x.png +0 -0
  742. package/src/components/Annotation.tsx +164 -0
  743. package/src/components/BackgroundLayer.tsx +50 -0
  744. package/src/components/Callout.tsx +141 -0
  745. package/src/components/Camera.tsx +492 -0
  746. package/src/components/CircleLayer.tsx +52 -0
  747. package/src/components/FillExtrusionLayer.tsx +47 -0
  748. package/src/components/FillLayer.tsx +44 -0
  749. package/src/components/HeadingIndicator.tsx +30 -0
  750. package/src/components/HeatmapLayer.tsx +46 -0
  751. package/src/components/ImageSource.tsx +70 -0
  752. package/src/components/Images.tsx +136 -0
  753. package/src/components/Light.tsx +40 -0
  754. package/src/components/LineLayer.tsx +45 -0
  755. package/src/components/MapView.tsx +879 -0
  756. package/src/components/MarkerView.tsx +88 -0
  757. package/src/components/NativeUserLocation.tsx +35 -0
  758. package/src/components/PointAnnotation.tsx +245 -0
  759. package/src/components/RasterLayer.tsx +43 -0
  760. package/src/components/RasterSource.tsx +114 -0
  761. package/src/components/ShapeSource.tsx +436 -0
  762. package/src/components/Style.tsx +371 -0
  763. package/src/components/SymbolLayer.tsx +77 -0
  764. package/src/components/UserLocation.tsx +307 -0
  765. package/src/components/VectorSource.tsx +218 -0
  766. package/src/hooks/useAbstractLayer.ts +127 -0
  767. package/src/hooks/useAbstractSource.ts +34 -0
  768. package/src/hooks/useNativeBridge.ts +125 -0
  769. package/src/hooks/useNativeRef.ts +14 -0
  770. package/src/index.ts +4 -0
  771. package/src/modules/location/locationManager.ts +161 -0
  772. package/src/modules/offline/OfflineCreatePackOptions.ts +55 -0
  773. package/src/modules/offline/OfflinePack.ts +56 -0
  774. package/src/modules/offline/offlineManager.ts +438 -0
  775. package/src/modules/snapshot/SnapshotOptions.ts +103 -0
  776. package/src/modules/snapshot/snapshotManager.ts +62 -0
  777. package/src/requestAndroidLocationPermissions.ts +29 -0
  778. package/src/types/BaseProps.ts +3 -0
  779. package/src/types/CameraMode.ts +6 -0
  780. package/src/types/MapLibreRNEvent.ts +7 -0
  781. package/src/types/OnPressEvent.ts +11 -0
  782. package/src/types/StyleURL.ts +3 -0
  783. package/src/utils/BridgeValue.ts +90 -0
  784. package/src/utils/Logger.ts +133 -0
  785. package/src/utils/MapLibreRNStyles.d.ts +1494 -0
  786. package/src/utils/StyleValue.ts +51 -0
  787. package/src/utils/animated/Animated.ts +61 -0
  788. package/src/utils/animated/AnimatedCoordinatesArray.ts +113 -0
  789. package/src/utils/animated/AnimatedPoint.ts +134 -0
  790. package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +150 -0
  791. package/src/utils/filterUtils.ts +9 -0
  792. package/src/utils/index.ts +118 -0
  793. package/src/utils/makeNativeBounds.ts +5 -0
  794. package/src/utils/styleMap.ts +265 -0
  795. package/.gitattributes +0 -1
  796. package/.husky/pre-commit +0 -5
  797. package/.nvmrc +0 -1
  798. package/.sonarcloud.properties +0 -15
  799. package/CHANGELOG.md +0 -432
  800. package/CODE_OF_CONDUCT.md +0 -2
  801. package/CONTRIBUTING.md +0 -55
  802. package/RELEASE.md +0 -30
  803. package/android/install.md +0 -31
  804. package/android/rctmln/.settings/org.eclipse.buildship.core.prefs +0 -2
  805. package/android/rctmln/build.gradle +0 -59
  806. package/android/rctmln/proguard-rules.pro +0 -25
  807. package/android/rctmln/src/main/AndroidManifest.xml +0 -4
  808. package/android/rctmln/src/main/java/com/maplibre/rctmln/RCTMLNPackage.java +0 -99
  809. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractEvent.java +0 -35
  810. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractEventEmitter.java +0 -80
  811. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/AbstractMapFeature.java +0 -19
  812. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/MarkerView.java +0 -23
  813. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/MarkerViewManager.java +0 -69
  814. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCallout.java +0 -15
  815. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNCalloutManager.java +0 -22
  816. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerView.java +0 -112
  817. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNMarkerViewManager.java +0 -45
  818. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotation.java +0 -361
  819. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/annotation/RCTMLNPointAnnotationManager.java +0 -88
  820. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraStop.java +0 -251
  821. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraUpdateItem.java +0 -125
  822. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/CameraUpdateQueue.java +0 -73
  823. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCamera.java +0 -530
  824. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/RCTMLNCameraManager.java +0 -101
  825. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/camera/constants/CameraMode.java +0 -22
  826. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImages.java +0 -234
  827. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/images/RCTMLNImagesManager.java +0 -103
  828. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/LocationComponentManager.java +0 -149
  829. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocation.java +0 -66
  830. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/location/RCTMLNNativeUserLocationManager.java +0 -35
  831. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/LayerSourceInfo.java +0 -59
  832. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapView.java +0 -16
  833. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNAndroidTextureMapViewManager.java +0 -31
  834. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapView.java +0 -1527
  835. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/RCTMLNMapViewManager.java +0 -353
  836. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/mapview/helpers/CameraChangeTracker.java +0 -41
  837. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyle.java +0 -83
  838. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFactory.java +0 -2275
  839. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleFunctionParser.java +0 -107
  840. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/RCTMLNStyleValue.java +0 -212
  841. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTLayer.java +0 -287
  842. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayer.java +0 -27
  843. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNBackgroundLayerManager.java +0 -64
  844. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayer.java +0 -55
  845. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNCircleLayerManager.java +0 -77
  846. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayer.java +0 -55
  847. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillExtrusionLayerManager.java +0 -80
  848. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayer.java +0 -55
  849. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNFillLayerManager.java +0 -80
  850. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayer.java +0 -55
  851. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNHeatmapLayerManager.java +0 -77
  852. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayer.java +0 -55
  853. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNLineLayerManager.java +0 -79
  854. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayer.java +0 -27
  855. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNRasterLayerManager.java +0 -64
  856. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayer.java +0 -55
  857. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/layers/RCTMLNSymbolLayerManager.java +0 -75
  858. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLight.java +0 -65
  859. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/light/RCTMLNLightManager.java +0 -29
  860. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSource.java +0 -81
  861. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNImageSourceManager.java +0 -72
  862. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSource.java +0 -45
  863. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNRasterSourceManager.java +0 -44
  864. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSource.java +0 -316
  865. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNShapeSourceManager.java +0 -253
  866. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSource.java +0 -97
  867. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNTileSourceManager.java +0 -80
  868. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSource.java +0 -64
  869. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTMLNVectorSourceManager.java +0 -84
  870. package/android/rctmln/src/main/java/com/maplibre/rctmln/components/styles/sources/RCTSource.java +0 -244
  871. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/AbstractEvent.java +0 -66
  872. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/AndroidCallbackEvent.java +0 -38
  873. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/EventEmitter.java +0 -45
  874. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/FeatureClickEvent.java +0 -79
  875. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/IEvent.java +0 -18
  876. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/ImageMissingEvent.java +0 -42
  877. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/LocationEvent.java +0 -100
  878. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapChangeEvent.java +0 -47
  879. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapClickEvent.java +0 -51
  880. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/MapUserTrackingModeEvent.java +0 -36
  881. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/OfflineEvent.java +0 -29
  882. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/PointAnnotationClickEvent.java +0 -46
  883. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/PointAnnotationDragEvent.java +0 -51
  884. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/constants/EventKeys.java +0 -39
  885. package/android/rctmln/src/main/java/com/maplibre/rctmln/events/constants/EventTypes.java +0 -51
  886. package/android/rctmln/src/main/java/com/maplibre/rctmln/http/CustomHeadersInterceptor.java +0 -38
  887. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/LocationManager.java +0 -168
  888. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserLocation.java +0 -63
  889. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserLocationVerticalAlignment.java +0 -11
  890. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserTrackingMode.java +0 -63
  891. package/android/rctmln/src/main/java/com/maplibre/rctmln/location/UserTrackingState.java +0 -19
  892. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLocationModule.java +0 -158
  893. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNLogging.java +0 -140
  894. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNModule.java +0 -348
  895. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNOfflineModule.java +0 -592
  896. package/android/rctmln/src/main/java/com/maplibre/rctmln/modules/RCTMLNSnapshotModule.java +0 -139
  897. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/BitmapUtils.java +0 -129
  898. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ClusterPropertyEntry.java +0 -13
  899. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ConvertUtils.java +0 -257
  900. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/DownloadMapImageTask.java +0 -159
  901. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ExpressionParser.java +0 -74
  902. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/GeoJSONUtils.java +0 -209
  903. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/GeoViewport.java +0 -38
  904. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ImageEntry.java +0 -25
  905. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/ResourceUtils.java +0 -30
  906. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/SimpleEventCallback.java +0 -30
  907. package/android/rctmln/src/main/java/com/maplibre/rctmln/utils/SphericalMercator.java +0 -69
  908. package/android/rctmln/src/main/res/values/strings.xml +0 -3
  909. package/android/settings.gradle +0 -1
  910. package/assets/indoor_building_map_android.png +0 -0
  911. package/assets/indoor_building_map_ios.png +0 -0
  912. package/assets/mapbox_logo.png +0 -0
  913. package/babel.config.js +0 -9
  914. package/docs/Annotation.md +0 -38
  915. package/docs/Annotations.md +0 -12
  916. package/docs/BackgroundLayer.md +0 -158
  917. package/docs/Callout.md +0 -15
  918. package/docs/Camera.md +0 -133
  919. package/docs/CircleLayer.md +0 -462
  920. package/docs/CustomHttpHeaders.md +0 -87
  921. package/docs/FillExtrusionLayer.md +0 -319
  922. package/docs/FillLayer.md +0 -302
  923. package/docs/GettingStarted.md +0 -114
  924. package/docs/HeadingIndicator.md +0 -10
  925. package/docs/HeatmapLayer.md +0 -207
  926. package/docs/ImageSource.md +0 -13
  927. package/docs/Images.md +0 -14
  928. package/docs/Light.md +0 -159
  929. package/docs/LineLayer.md +0 -576
  930. package/docs/Logger.md +0 -23
  931. package/docs/MapLibreGL.md +0 -65
  932. package/docs/MapView.md +0 -203
  933. package/docs/MarkerView.md +0 -16
  934. package/docs/NativeUserLocation.md +0 -11
  935. package/docs/OfflineManager.md +0 -246
  936. package/docs/PointAnnotation.md +0 -31
  937. package/docs/RasterLayer.md +0 -349
  938. package/docs/RasterSource.md +0 -18
  939. package/docs/ShapeSource.md +0 -106
  940. package/docs/Style.md +0 -10
  941. package/docs/StyleSheet.md +0 -451
  942. package/docs/SymbolLayer.md +0 -1655
  943. package/docs/UserLocation.md +0 -45
  944. package/docs/VectorSource.md +0 -49
  945. package/docs/coordinates.md +0 -6
  946. package/docs/docs.json +0 -5396
  947. package/docs/location.md +0 -6
  948. package/docs/offlineManager.md +0 -246
  949. package/docs/snapshotManager.md +0 -53
  950. package/ios/RCTMLN/CameraMode.h +0 -18
  951. package/ios/RCTMLN/CameraMode.m +0 -18
  952. package/ios/RCTMLN/CameraStop.h +0 -26
  953. package/ios/RCTMLN/CameraStop.m +0 -83
  954. package/ios/RCTMLN/CameraUpdateItem.h +0 -18
  955. package/ios/RCTMLN/CameraUpdateItem.m +0 -178
  956. package/ios/RCTMLN/CameraUpdateQueue.h +0 -21
  957. package/ios/RCTMLN/CameraUpdateQueue.m +0 -74
  958. package/ios/RCTMLN/FilterParser.h +0 -14
  959. package/ios/RCTMLN/FilterParser.m +0 -22
  960. package/ios/RCTMLN/MLNCustomHeaders.h +0 -20
  961. package/ios/RCTMLN/MLNCustomHeaders.m +0 -98
  962. package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.h +0 -23
  963. package/ios/RCTMLN/MLNFaux3DUserLocationAnnotationView.m +0 -474
  964. package/ios/RCTMLN/MLNModule.h +0 -13
  965. package/ios/RCTMLN/MLNModule.m +0 -269
  966. package/ios/RCTMLN/MLNOfflineModule.h +0 -19
  967. package/ios/RCTMLN/MLNOfflineModule.m +0 -516
  968. package/ios/RCTMLN/MLNSnapshotModule.h +0 -13
  969. package/ios/RCTMLN/MLNSnapshotModule.m +0 -80
  970. package/ios/RCTMLN/MLNUserLocationHeadingArrowLayer.h +0 -11
  971. package/ios/RCTMLN/MLNUserLocationHeadingArrowLayer.m +0 -57
  972. package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.h +0 -11
  973. package/ios/RCTMLN/MLNUserLocationHeadingBeamLayer.m +0 -102
  974. package/ios/RCTMLN/MLNUserLocationHeadingIndicator.h +0 -10
  975. package/ios/RCTMLN/RCTConvert+Mapbox.h +0 -16
  976. package/ios/RCTMLN/RCTConvert+Mapbox.m +0 -32
  977. package/ios/RCTMLN/RCTMLN.h +0 -13
  978. package/ios/RCTMLN/RCTMLN.m +0 -13
  979. package/ios/RCTMLN/RCTMLNBackgroundLayer.h +0 -14
  980. package/ios/RCTMLN/RCTMLNBackgroundLayer.m +0 -27
  981. package/ios/RCTMLN/RCTMLNBackgroundLayerManager.h +0 -13
  982. package/ios/RCTMLN/RCTMLNBackgroundLayerManager.m +0 -35
  983. package/ios/RCTMLN/RCTMLNCallout.h +0 -15
  984. package/ios/RCTMLN/RCTMLNCallout.m +0 -74
  985. package/ios/RCTMLN/RCTMLNCalloutManager.h +0 -13
  986. package/ios/RCTMLN/RCTMLNCalloutManager.m +0 -21
  987. package/ios/RCTMLN/RCTMLNCamera.h +0 -39
  988. package/ios/RCTMLN/RCTMLNCamera.m +0 -258
  989. package/ios/RCTMLN/RCTMLNCameraManager.h +0 -13
  990. package/ios/RCTMLN/RCTMLNCameraManager.m +0 -52
  991. package/ios/RCTMLN/RCTMLNCircleLayer.h +0 -13
  992. package/ios/RCTMLN/RCTMLNCircleLayer.m +0 -34
  993. package/ios/RCTMLN/RCTMLNCircleLayerManager.h +0 -13
  994. package/ios/RCTMLN/RCTMLNCircleLayerManager.m +0 -39
  995. package/ios/RCTMLN/RCTMLNEvent.h +0 -21
  996. package/ios/RCTMLN/RCTMLNEvent.m +0 -47
  997. package/ios/RCTMLN/RCTMLNEventProtocol.h +0 -16
  998. package/ios/RCTMLN/RCTMLNEventTypes.h +0 -50
  999. package/ios/RCTMLN/RCTMLNEventTypes.m +0 -49
  1000. package/ios/RCTMLN/RCTMLNFillExtrusionLayer.h +0 -14
  1001. package/ios/RCTMLN/RCTMLNFillExtrusionLayer.m +0 -32
  1002. package/ios/RCTMLN/RCTMLNFillExtrusionLayerManager.h +0 -13
  1003. package/ios/RCTMLN/RCTMLNFillExtrusionLayerManager.m +0 -39
  1004. package/ios/RCTMLN/RCTMLNFillLayer.h +0 -14
  1005. package/ios/RCTMLN/RCTMLNFillLayer.m +0 -33
  1006. package/ios/RCTMLN/RCTMLNFillLayerManager.h +0 -13
  1007. package/ios/RCTMLN/RCTMLNFillLayerManager.m +0 -37
  1008. package/ios/RCTMLN/RCTMLNHeatmapLayer.h +0 -12
  1009. package/ios/RCTMLN/RCTMLNHeatmapLayer.m +0 -30
  1010. package/ios/RCTMLN/RCTMLNHeatmapLayerManager.h +0 -12
  1011. package/ios/RCTMLN/RCTMLNHeatmapLayerManager.m +0 -38
  1012. package/ios/RCTMLN/RCTMLNImageQueue.h +0 -19
  1013. package/ios/RCTMLN/RCTMLNImageQueue.m +0 -57
  1014. package/ios/RCTMLN/RCTMLNImageQueueOperation.h +0 -17
  1015. package/ios/RCTMLN/RCTMLNImageQueueOperation.m +0 -138
  1016. package/ios/RCTMLN/RCTMLNImageSource.h +0 -16
  1017. package/ios/RCTMLN/RCTMLNImageSource.m +0 -60
  1018. package/ios/RCTMLN/RCTMLNImageSourceManager.h +0 -13
  1019. package/ios/RCTMLN/RCTMLNImageSourceManager.m +0 -25
  1020. package/ios/RCTMLN/RCTMLNImages.h +0 -25
  1021. package/ios/RCTMLN/RCTMLNImages.m +0 -126
  1022. package/ios/RCTMLN/RCTMLNImagesManager.h +0 -5
  1023. package/ios/RCTMLN/RCTMLNImagesManager.m +0 -21
  1024. package/ios/RCTMLN/RCTMLNLayer.h +0 -52
  1025. package/ios/RCTMLN/RCTMLNLayer.m +0 -236
  1026. package/ios/RCTMLN/RCTMLNLight.h +0 -17
  1027. package/ios/RCTMLN/RCTMLNLight.m +0 -46
  1028. package/ios/RCTMLN/RCTMLNLightManager.h +0 -13
  1029. package/ios/RCTMLN/RCTMLNLightManager.m +0 -23
  1030. package/ios/RCTMLN/RCTMLNLineLayer.h +0 -14
  1031. package/ios/RCTMLN/RCTMLNLineLayer.m +0 -33
  1032. package/ios/RCTMLN/RCTMLNLineLayerManager.h +0 -13
  1033. package/ios/RCTMLN/RCTMLNLineLayerManager.m +0 -40
  1034. package/ios/RCTMLN/RCTMLNLocation.h +0 -19
  1035. package/ios/RCTMLN/RCTMLNLocation.m +0 -32
  1036. package/ios/RCTMLN/RCTMLNLocationManager.h +0 -30
  1037. package/ios/RCTMLN/RCTMLNLocationManager.m +0 -180
  1038. package/ios/RCTMLN/RCTMLNLocationManagerDelegate.h +0 -20
  1039. package/ios/RCTMLN/RCTMLNLocationModule.h +0 -15
  1040. package/ios/RCTMLN/RCTMLNLocationModule.m +0 -99
  1041. package/ios/RCTMLN/RCTMLNLogging.h +0 -18
  1042. package/ios/RCTMLN/RCTMLNLogging.m +0 -132
  1043. package/ios/RCTMLN/RCTMLNMapTouchEvent.h +0 -25
  1044. package/ios/RCTMLN/RCTMLNMapTouchEvent.m +0 -77
  1045. package/ios/RCTMLN/RCTMLNMapView.h +0 -91
  1046. package/ios/RCTMLN/RCTMLNMapView.m +0 -536
  1047. package/ios/RCTMLN/RCTMLNMapViewManager.h +0 -17
  1048. package/ios/RCTMLN/RCTMLNMapViewManager.m +0 -625
  1049. package/ios/RCTMLN/RCTMLNNativeUserLocation.h +0 -18
  1050. package/ios/RCTMLN/RCTMLNNativeUserLocation.m +0 -49
  1051. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.h +0 -5
  1052. package/ios/RCTMLN/RCTMLNNativeUserLocationManager.m +0 -25
  1053. package/ios/RCTMLN/RCTMLNPointAnnotation.h +0 -41
  1054. package/ios/RCTMLN/RCTMLNPointAnnotation.m +0 -251
  1055. package/ios/RCTMLN/RCTMLNPointAnnotationManager.h +0 -13
  1056. package/ios/RCTMLN/RCTMLNPointAnnotationManager.m +0 -36
  1057. package/ios/RCTMLN/RCTMLNRasterLayer.h +0 -14
  1058. package/ios/RCTMLN/RCTMLNRasterLayer.m +0 -30
  1059. package/ios/RCTMLN/RCTMLNRasterLayerManager.h +0 -13
  1060. package/ios/RCTMLN/RCTMLNRasterLayerManager.m +0 -35
  1061. package/ios/RCTMLN/RCTMLNRasterSource.h +0 -16
  1062. package/ios/RCTMLN/RCTMLNRasterSource.m +0 -35
  1063. package/ios/RCTMLN/RCTMLNRasterSourceManager.h +0 -13
  1064. package/ios/RCTMLN/RCTMLNRasterSourceManager.m +0 -32
  1065. package/ios/RCTMLN/RCTMLNShapeSource.h +0 -53
  1066. package/ios/RCTMLN/RCTMLNShapeSource.m +0 -194
  1067. package/ios/RCTMLN/RCTMLNShapeSourceManager.h +0 -14
  1068. package/ios/RCTMLN/RCTMLNShapeSourceManager.m +0 -206
  1069. package/ios/RCTMLN/RCTMLNSource.h +0 -35
  1070. package/ios/RCTMLN/RCTMLNSource.m +0 -143
  1071. package/ios/RCTMLN/RCTMLNStyle.h +0 -222
  1072. package/ios/RCTMLN/RCTMLNStyle.m +0 -1675
  1073. package/ios/RCTMLN/RCTMLNStyleValue.h +0 -27
  1074. package/ios/RCTMLN/RCTMLNStyleValue.m +0 -167
  1075. package/ios/RCTMLN/RCTMLNSymbolLayer.h +0 -19
  1076. package/ios/RCTMLN/RCTMLNSymbolLayer.m +0 -121
  1077. package/ios/RCTMLN/RCTMLNSymbolLayerManager.h +0 -13
  1078. package/ios/RCTMLN/RCTMLNSymbolLayerManager.m +0 -40
  1079. package/ios/RCTMLN/RCTMLNTileSource.h +0 -22
  1080. package/ios/RCTMLN/RCTMLNTileSource.m +0 -31
  1081. package/ios/RCTMLN/RCTMLNUserLocation.h +0 -15
  1082. package/ios/RCTMLN/RCTMLNUserLocation.m +0 -38
  1083. package/ios/RCTMLN/RCTMLNUtils.h +0 -31
  1084. package/ios/RCTMLN/RCTMLNUtils.m +0 -218
  1085. package/ios/RCTMLN/RCTMLNVectorLayer.h +0 -15
  1086. package/ios/RCTMLN/RCTMLNVectorLayer.m +0 -59
  1087. package/ios/RCTMLN/RCTMLNVectorSource.h +0 -16
  1088. package/ios/RCTMLN/RCTMLNVectorSource.m +0 -28
  1089. package/ios/RCTMLN/RCTMLNVectorSourceManager.h +0 -14
  1090. package/ios/RCTMLN/RCTMLNVectorSourceManager.m +0 -79
  1091. package/ios/RCTMLN/RNMBImageUtils.h +0 -17
  1092. package/ios/RCTMLN/RNMBImageUtils.m +0 -31
  1093. package/ios/RCTMLN/ViewManager.h +0 -16
  1094. package/ios/RCTMLN/ViewManager.m +0 -63
  1095. package/ios/RCTMLN/index.d.ts +0 -1183
  1096. package/ios/RCTMLN.xcodeproj/project.pbxproj +0 -775
  1097. package/ios/install.md +0 -49
  1098. package/javascript/MLNModule.ts +0 -37
  1099. package/javascript/Maplibre.ts +0 -64
  1100. package/javascript/components/BackgroundLayer.tsx +0 -50
  1101. package/javascript/components/Callout.tsx +0 -141
  1102. package/javascript/components/Camera.tsx +0 -623
  1103. package/javascript/components/CircleLayer.tsx +0 -53
  1104. package/javascript/components/FillExtrusionLayer.tsx +0 -47
  1105. package/javascript/components/FillLayer.tsx +0 -44
  1106. package/javascript/components/HeadingIndicator.tsx +0 -30
  1107. package/javascript/components/HeatmapLayer.tsx +0 -46
  1108. package/javascript/components/ImageSource.tsx +0 -71
  1109. package/javascript/components/Images.tsx +0 -134
  1110. package/javascript/components/Light.tsx +0 -40
  1111. package/javascript/components/LineLayer.tsx +0 -45
  1112. package/javascript/components/MapView.tsx +0 -880
  1113. package/javascript/components/MarkerView.tsx +0 -88
  1114. package/javascript/components/NativeUserLocation.tsx +0 -31
  1115. package/javascript/components/PointAnnotation.tsx +0 -245
  1116. package/javascript/components/RasterLayer.tsx +0 -44
  1117. package/javascript/components/RasterSource.tsx +0 -114
  1118. package/javascript/components/ShapeSource.tsx +0 -433
  1119. package/javascript/components/Style.tsx +0 -368
  1120. package/javascript/components/SymbolLayer.tsx +0 -78
  1121. package/javascript/components/UserLocation.tsx +0 -289
  1122. package/javascript/components/VectorSource.tsx +0 -218
  1123. package/javascript/components/annotations/Annotation.tsx +0 -161
  1124. package/javascript/hooks/useAbstractLayer.ts +0 -127
  1125. package/javascript/hooks/useAbstractSource.ts +0 -34
  1126. package/javascript/hooks/useNativeBridge.ts +0 -125
  1127. package/javascript/hooks/useNativeRef.ts +0 -13
  1128. package/javascript/index.ts +0 -4
  1129. package/javascript/modules/location/locationManager.ts +0 -162
  1130. package/javascript/modules/offline/OfflineCreatePackOptions.ts +0 -62
  1131. package/javascript/modules/offline/OfflinePack.ts +0 -56
  1132. package/javascript/modules/offline/offlineManager.ts +0 -434
  1133. package/javascript/modules/snapshot/SnapshotOptions.ts +0 -104
  1134. package/javascript/modules/snapshot/snapshotManager.ts +0 -62
  1135. package/javascript/requestAndroidLocationPermissions.ts +0 -29
  1136. package/javascript/types/BaseProps.ts +0 -5
  1137. package/javascript/types/OnPressEvent.ts +0 -13
  1138. package/javascript/types/index.ts +0 -11
  1139. package/javascript/utils/BridgeValue.ts +0 -90
  1140. package/javascript/utils/Logger.ts +0 -133
  1141. package/javascript/utils/MaplibreStyles.d.ts +0 -1486
  1142. package/javascript/utils/StyleValue.ts +0 -49
  1143. package/javascript/utils/animated/Animated.ts +0 -61
  1144. package/javascript/utils/animated/AnimatedCoordinatesArray.ts +0 -108
  1145. package/javascript/utils/animated/AnimatedPoint.ts +0 -134
  1146. package/javascript/utils/animated/AnimatedRouteCoordinatesArray.ts +0 -145
  1147. package/javascript/utils/filterUtils.ts +0 -9
  1148. package/javascript/utils/geoUtils.ts +0 -79
  1149. package/javascript/utils/index.ts +0 -133
  1150. package/javascript/utils/styleMap.ts +0 -264
  1151. package/plugin/install.md +0 -32
  1152. package/react-native.config.js +0 -10
  1153. package/scripts/autogenHelpers/DocJSONBuilder.js +0 -458
  1154. package/scripts/autogenHelpers/JSDocNodeTree.js +0 -131
  1155. package/scripts/autogenHelpers/MarkdownBuilder.js +0 -29
  1156. package/scripts/autogenHelpers/globals.js +0 -507
  1157. package/scripts/autogenerate.js +0 -382
  1158. package/scripts/download-style-spec.sh +0 -15
  1159. package/scripts/templates/MaplibreStyles.ts.ejs +0 -99
  1160. package/scripts/templates/RCTMLNStyle.h.ejs +0 -33
  1161. package/scripts/templates/RCTMLNStyle.m.ejs +0 -97
  1162. package/scripts/templates/RCTMLNStyleFactory.java.ejs +0 -107
  1163. package/scripts/templates/component.md.ejs +0 -122
  1164. package/scripts/templates/index.d.ts.ejs +0 -85
  1165. package/scripts/templates/styleMap.ts.ejs +0 -85
  1166. package/setup-jest.js +0 -108
  1167. package/style-spec/v8.json +0 -6021
  1168. package/tsconfig.json +0 -24
  1169. /package/android/{rctmln/src → src}/main/res/drawable/empty.xml +0 -0
  1170. /package/android/{rctmln/src → src}/main/res/drawable/empty_drawable.png +0 -0
  1171. /package/android/{rctmln/src → src}/main/res/drawable-xxhdpi/red_marker.png +0 -0
  1172. /package/android/{rctmln/src → src}/main/res/layout/annotation.xml +0 -0
  1173. /package/{assets → lib/commonjs/assets}/heading.png +0 -0
  1174. /package/{assets → lib/commonjs/assets}/heading@2x.png +0 -0
  1175. /package/{assets → lib/commonjs/assets}/heading@3x.png +0 -0
  1176. /package/{javascript/@types/assets.d.ts → src/assets/png.d.ts} +0 -0
  1177. /package/{javascript → src}/hooks/useOnce.ts +0 -0
  1178. /package/{javascript → src}/utils/animated/AbstractAnimatedCoordinates.ts +0 -0
  1179. /package/{javascript → src}/utils/animated/AnimatedExtractCoordinateFromArray.ts +0 -0
  1180. /package/{javascript → src}/utils/animated/AnimatedShape.ts +0 -0
  1181. /package/{javascript → src}/utils/deprecation.ts +0 -0
@@ -0,0 +1,2286 @@
1
+ // DO NOT MODIFY
2
+ // This file is auto-generated from scripts/templates/MLRNStyleFactory.java.ejs
3
+
4
+ package org.maplibre.reactnative.components.styles;
5
+
6
+ import org.maplibre.android.style.layers.BackgroundLayer;
7
+ import org.maplibre.android.style.layers.CircleLayer;
8
+ import org.maplibre.android.style.layers.FillExtrusionLayer;
9
+ import org.maplibre.android.style.layers.FillLayer;
10
+ import org.maplibre.android.style.layers.LineLayer;
11
+ import org.maplibre.android.style.layers.PropertyFactory;
12
+ import org.maplibre.android.style.layers.PropertyValue;
13
+ import org.maplibre.android.style.layers.RasterLayer;
14
+ import org.maplibre.android.style.layers.SymbolLayer;
15
+ import org.maplibre.android.style.layers.HeatmapLayer;
16
+ import org.maplibre.android.style.layers.HillshadeLayer;
17
+ import org.maplibre.android.style.layers.TransitionOptions;
18
+ import org.maplibre.android.style.light.Light;
19
+ import org.maplibre.android.style.light.Position;
20
+ import org.maplibre.reactnative.utils.DownloadMapImageTask;
21
+
22
+ import java.util.List;
23
+
24
+ public class MLRNStyleFactory {
25
+ public static final String VALUE_KEY = "value";
26
+ public static final String SHOULD_ADD_IMAGE_KEY = "shouldAddImage";
27
+
28
+ public static void setFillLayerStyle(final FillLayer layer, MLRNStyle style) {
29
+ List<String> styleKeys = style.getAllStyleKeys();
30
+
31
+ if (styleKeys.size() == 0) {
32
+ return;
33
+ }
34
+
35
+ for (String styleKey : styleKeys) {
36
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
37
+
38
+ switch (styleKey) {
39
+ case "fillSortKey":
40
+ MLRNStyleFactory.setFillSortKey(layer, styleValue);
41
+ break;
42
+ case "visibility":
43
+ MLRNStyleFactory.setVisibility(layer, styleValue);
44
+ break;
45
+ case "fillAntialias":
46
+ MLRNStyleFactory.setFillAntialias(layer, styleValue);
47
+ break;
48
+ case "fillOpacity":
49
+ MLRNStyleFactory.setFillOpacity(layer, styleValue);
50
+ break;
51
+ case "fillOpacityTransition":
52
+ MLRNStyleFactory.setFillOpacityTransition(layer, styleValue);
53
+ break;
54
+ case "fillColor":
55
+ MLRNStyleFactory.setFillColor(layer, styleValue);
56
+ break;
57
+ case "fillColorTransition":
58
+ MLRNStyleFactory.setFillColorTransition(layer, styleValue);
59
+ break;
60
+ case "fillOutlineColor":
61
+ MLRNStyleFactory.setFillOutlineColor(layer, styleValue);
62
+ break;
63
+ case "fillOutlineColorTransition":
64
+ MLRNStyleFactory.setFillOutlineColorTransition(layer, styleValue);
65
+ break;
66
+ case "fillTranslate":
67
+ MLRNStyleFactory.setFillTranslate(layer, styleValue);
68
+ break;
69
+ case "fillTranslateTransition":
70
+ MLRNStyleFactory.setFillTranslateTransition(layer, styleValue);
71
+ break;
72
+ case "fillTranslateAnchor":
73
+ MLRNStyleFactory.setFillTranslateAnchor(layer, styleValue);
74
+ break;
75
+ case "fillPattern":
76
+ style.addImage(styleValue, new DownloadMapImageTask.OnAllImagesLoaded() {
77
+ @Override
78
+ public void onAllImagesLoaded() {
79
+ MLRNStyleFactory.setFillPattern(layer, styleValue);
80
+ }
81
+ });
82
+ break;
83
+ case "fillPatternTransition":
84
+ MLRNStyleFactory.setFillPatternTransition(layer, styleValue);
85
+ break;
86
+ }
87
+ }
88
+ }
89
+ public static void setLineLayerStyle(final LineLayer layer, MLRNStyle style) {
90
+ List<String> styleKeys = style.getAllStyleKeys();
91
+
92
+ if (styleKeys.size() == 0) {
93
+ return;
94
+ }
95
+
96
+ for (String styleKey : styleKeys) {
97
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
98
+
99
+ switch (styleKey) {
100
+ case "lineCap":
101
+ MLRNStyleFactory.setLineCap(layer, styleValue);
102
+ break;
103
+ case "lineJoin":
104
+ MLRNStyleFactory.setLineJoin(layer, styleValue);
105
+ break;
106
+ case "lineMiterLimit":
107
+ MLRNStyleFactory.setLineMiterLimit(layer, styleValue);
108
+ break;
109
+ case "lineRoundLimit":
110
+ MLRNStyleFactory.setLineRoundLimit(layer, styleValue);
111
+ break;
112
+ case "lineSortKey":
113
+ MLRNStyleFactory.setLineSortKey(layer, styleValue);
114
+ break;
115
+ case "visibility":
116
+ MLRNStyleFactory.setVisibility(layer, styleValue);
117
+ break;
118
+ case "lineOpacity":
119
+ MLRNStyleFactory.setLineOpacity(layer, styleValue);
120
+ break;
121
+ case "lineOpacityTransition":
122
+ MLRNStyleFactory.setLineOpacityTransition(layer, styleValue);
123
+ break;
124
+ case "lineColor":
125
+ MLRNStyleFactory.setLineColor(layer, styleValue);
126
+ break;
127
+ case "lineColorTransition":
128
+ MLRNStyleFactory.setLineColorTransition(layer, styleValue);
129
+ break;
130
+ case "lineTranslate":
131
+ MLRNStyleFactory.setLineTranslate(layer, styleValue);
132
+ break;
133
+ case "lineTranslateTransition":
134
+ MLRNStyleFactory.setLineTranslateTransition(layer, styleValue);
135
+ break;
136
+ case "lineTranslateAnchor":
137
+ MLRNStyleFactory.setLineTranslateAnchor(layer, styleValue);
138
+ break;
139
+ case "lineWidth":
140
+ MLRNStyleFactory.setLineWidth(layer, styleValue);
141
+ break;
142
+ case "lineWidthTransition":
143
+ MLRNStyleFactory.setLineWidthTransition(layer, styleValue);
144
+ break;
145
+ case "lineGapWidth":
146
+ MLRNStyleFactory.setLineGapWidth(layer, styleValue);
147
+ break;
148
+ case "lineGapWidthTransition":
149
+ MLRNStyleFactory.setLineGapWidthTransition(layer, styleValue);
150
+ break;
151
+ case "lineOffset":
152
+ MLRNStyleFactory.setLineOffset(layer, styleValue);
153
+ break;
154
+ case "lineOffsetTransition":
155
+ MLRNStyleFactory.setLineOffsetTransition(layer, styleValue);
156
+ break;
157
+ case "lineBlur":
158
+ MLRNStyleFactory.setLineBlur(layer, styleValue);
159
+ break;
160
+ case "lineBlurTransition":
161
+ MLRNStyleFactory.setLineBlurTransition(layer, styleValue);
162
+ break;
163
+ case "lineDasharray":
164
+ MLRNStyleFactory.setLineDasharray(layer, styleValue);
165
+ break;
166
+ case "lineDasharrayTransition":
167
+ MLRNStyleFactory.setLineDasharrayTransition(layer, styleValue);
168
+ break;
169
+ case "linePattern":
170
+ style.addImage(styleValue, new DownloadMapImageTask.OnAllImagesLoaded() {
171
+ @Override
172
+ public void onAllImagesLoaded() {
173
+ MLRNStyleFactory.setLinePattern(layer, styleValue);
174
+ }
175
+ });
176
+ break;
177
+ case "linePatternTransition":
178
+ MLRNStyleFactory.setLinePatternTransition(layer, styleValue);
179
+ break;
180
+ case "lineGradient":
181
+ MLRNStyleFactory.setLineGradient(layer, styleValue);
182
+ break;
183
+ }
184
+ }
185
+ }
186
+ public static void setSymbolLayerStyle(final SymbolLayer layer, MLRNStyle style) {
187
+ List<String> styleKeys = style.getAllStyleKeys();
188
+
189
+ if (styleKeys.size() == 0) {
190
+ return;
191
+ }
192
+
193
+ for (String styleKey : styleKeys) {
194
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
195
+
196
+ switch (styleKey) {
197
+ case "symbolPlacement":
198
+ MLRNStyleFactory.setSymbolPlacement(layer, styleValue);
199
+ break;
200
+ case "symbolSpacing":
201
+ MLRNStyleFactory.setSymbolSpacing(layer, styleValue);
202
+ break;
203
+ case "symbolAvoidEdges":
204
+ MLRNStyleFactory.setSymbolAvoidEdges(layer, styleValue);
205
+ break;
206
+ case "symbolSortKey":
207
+ MLRNStyleFactory.setSymbolSortKey(layer, styleValue);
208
+ break;
209
+ case "symbolZOrder":
210
+ MLRNStyleFactory.setSymbolZOrder(layer, styleValue);
211
+ break;
212
+ case "iconAllowOverlap":
213
+ MLRNStyleFactory.setIconAllowOverlap(layer, styleValue);
214
+ break;
215
+ case "iconIgnorePlacement":
216
+ MLRNStyleFactory.setIconIgnorePlacement(layer, styleValue);
217
+ break;
218
+ case "iconOptional":
219
+ MLRNStyleFactory.setIconOptional(layer, styleValue);
220
+ break;
221
+ case "iconRotationAlignment":
222
+ MLRNStyleFactory.setIconRotationAlignment(layer, styleValue);
223
+ break;
224
+ case "iconSize":
225
+ MLRNStyleFactory.setIconSize(layer, styleValue);
226
+ break;
227
+ case "iconTextFit":
228
+ MLRNStyleFactory.setIconTextFit(layer, styleValue);
229
+ break;
230
+ case "iconTextFitPadding":
231
+ MLRNStyleFactory.setIconTextFitPadding(layer, styleValue);
232
+ break;
233
+ case "iconImage":
234
+ style.addImage(styleValue, new DownloadMapImageTask.OnAllImagesLoaded() {
235
+ @Override
236
+ public void onAllImagesLoaded() {
237
+ MLRNStyleFactory.setIconImage(layer, styleValue);
238
+ }
239
+ });
240
+ break;
241
+ case "iconRotate":
242
+ MLRNStyleFactory.setIconRotate(layer, styleValue);
243
+ break;
244
+ case "iconPadding":
245
+ MLRNStyleFactory.setIconPadding(layer, styleValue);
246
+ break;
247
+ case "iconKeepUpright":
248
+ MLRNStyleFactory.setIconKeepUpright(layer, styleValue);
249
+ break;
250
+ case "iconOffset":
251
+ MLRNStyleFactory.setIconOffset(layer, styleValue);
252
+ break;
253
+ case "iconAnchor":
254
+ MLRNStyleFactory.setIconAnchor(layer, styleValue);
255
+ break;
256
+ case "iconPitchAlignment":
257
+ MLRNStyleFactory.setIconPitchAlignment(layer, styleValue);
258
+ break;
259
+ case "textPitchAlignment":
260
+ MLRNStyleFactory.setTextPitchAlignment(layer, styleValue);
261
+ break;
262
+ case "textRotationAlignment":
263
+ MLRNStyleFactory.setTextRotationAlignment(layer, styleValue);
264
+ break;
265
+ case "textField":
266
+ MLRNStyleFactory.setTextField(layer, styleValue);
267
+ break;
268
+ case "textFont":
269
+ MLRNStyleFactory.setTextFont(layer, styleValue);
270
+ break;
271
+ case "textSize":
272
+ MLRNStyleFactory.setTextSize(layer, styleValue);
273
+ break;
274
+ case "textMaxWidth":
275
+ MLRNStyleFactory.setTextMaxWidth(layer, styleValue);
276
+ break;
277
+ case "textLineHeight":
278
+ MLRNStyleFactory.setTextLineHeight(layer, styleValue);
279
+ break;
280
+ case "textLetterSpacing":
281
+ MLRNStyleFactory.setTextLetterSpacing(layer, styleValue);
282
+ break;
283
+ case "textJustify":
284
+ MLRNStyleFactory.setTextJustify(layer, styleValue);
285
+ break;
286
+ case "textRadialOffset":
287
+ MLRNStyleFactory.setTextRadialOffset(layer, styleValue);
288
+ break;
289
+ case "textVariableAnchor":
290
+ MLRNStyleFactory.setTextVariableAnchor(layer, styleValue);
291
+ break;
292
+ case "textAnchor":
293
+ MLRNStyleFactory.setTextAnchor(layer, styleValue);
294
+ break;
295
+ case "textMaxAngle":
296
+ MLRNStyleFactory.setTextMaxAngle(layer, styleValue);
297
+ break;
298
+ case "textWritingMode":
299
+ MLRNStyleFactory.setTextWritingMode(layer, styleValue);
300
+ break;
301
+ case "textRotate":
302
+ MLRNStyleFactory.setTextRotate(layer, styleValue);
303
+ break;
304
+ case "textPadding":
305
+ MLRNStyleFactory.setTextPadding(layer, styleValue);
306
+ break;
307
+ case "textKeepUpright":
308
+ MLRNStyleFactory.setTextKeepUpright(layer, styleValue);
309
+ break;
310
+ case "textTransform":
311
+ MLRNStyleFactory.setTextTransform(layer, styleValue);
312
+ break;
313
+ case "textOffset":
314
+ MLRNStyleFactory.setTextOffset(layer, styleValue);
315
+ break;
316
+ case "textAllowOverlap":
317
+ MLRNStyleFactory.setTextAllowOverlap(layer, styleValue);
318
+ break;
319
+ case "textIgnorePlacement":
320
+ MLRNStyleFactory.setTextIgnorePlacement(layer, styleValue);
321
+ break;
322
+ case "textOptional":
323
+ MLRNStyleFactory.setTextOptional(layer, styleValue);
324
+ break;
325
+ case "visibility":
326
+ MLRNStyleFactory.setVisibility(layer, styleValue);
327
+ break;
328
+ case "iconOpacity":
329
+ MLRNStyleFactory.setIconOpacity(layer, styleValue);
330
+ break;
331
+ case "iconOpacityTransition":
332
+ MLRNStyleFactory.setIconOpacityTransition(layer, styleValue);
333
+ break;
334
+ case "iconColor":
335
+ MLRNStyleFactory.setIconColor(layer, styleValue);
336
+ break;
337
+ case "iconColorTransition":
338
+ MLRNStyleFactory.setIconColorTransition(layer, styleValue);
339
+ break;
340
+ case "iconHaloColor":
341
+ MLRNStyleFactory.setIconHaloColor(layer, styleValue);
342
+ break;
343
+ case "iconHaloColorTransition":
344
+ MLRNStyleFactory.setIconHaloColorTransition(layer, styleValue);
345
+ break;
346
+ case "iconHaloWidth":
347
+ MLRNStyleFactory.setIconHaloWidth(layer, styleValue);
348
+ break;
349
+ case "iconHaloWidthTransition":
350
+ MLRNStyleFactory.setIconHaloWidthTransition(layer, styleValue);
351
+ break;
352
+ case "iconHaloBlur":
353
+ MLRNStyleFactory.setIconHaloBlur(layer, styleValue);
354
+ break;
355
+ case "iconHaloBlurTransition":
356
+ MLRNStyleFactory.setIconHaloBlurTransition(layer, styleValue);
357
+ break;
358
+ case "iconTranslate":
359
+ MLRNStyleFactory.setIconTranslate(layer, styleValue);
360
+ break;
361
+ case "iconTranslateTransition":
362
+ MLRNStyleFactory.setIconTranslateTransition(layer, styleValue);
363
+ break;
364
+ case "iconTranslateAnchor":
365
+ MLRNStyleFactory.setIconTranslateAnchor(layer, styleValue);
366
+ break;
367
+ case "textOpacity":
368
+ MLRNStyleFactory.setTextOpacity(layer, styleValue);
369
+ break;
370
+ case "textOpacityTransition":
371
+ MLRNStyleFactory.setTextOpacityTransition(layer, styleValue);
372
+ break;
373
+ case "textColor":
374
+ MLRNStyleFactory.setTextColor(layer, styleValue);
375
+ break;
376
+ case "textColorTransition":
377
+ MLRNStyleFactory.setTextColorTransition(layer, styleValue);
378
+ break;
379
+ case "textHaloColor":
380
+ MLRNStyleFactory.setTextHaloColor(layer, styleValue);
381
+ break;
382
+ case "textHaloColorTransition":
383
+ MLRNStyleFactory.setTextHaloColorTransition(layer, styleValue);
384
+ break;
385
+ case "textHaloWidth":
386
+ MLRNStyleFactory.setTextHaloWidth(layer, styleValue);
387
+ break;
388
+ case "textHaloWidthTransition":
389
+ MLRNStyleFactory.setTextHaloWidthTransition(layer, styleValue);
390
+ break;
391
+ case "textHaloBlur":
392
+ MLRNStyleFactory.setTextHaloBlur(layer, styleValue);
393
+ break;
394
+ case "textHaloBlurTransition":
395
+ MLRNStyleFactory.setTextHaloBlurTransition(layer, styleValue);
396
+ break;
397
+ case "textTranslate":
398
+ MLRNStyleFactory.setTextTranslate(layer, styleValue);
399
+ break;
400
+ case "textTranslateTransition":
401
+ MLRNStyleFactory.setTextTranslateTransition(layer, styleValue);
402
+ break;
403
+ case "textTranslateAnchor":
404
+ MLRNStyleFactory.setTextTranslateAnchor(layer, styleValue);
405
+ break;
406
+ }
407
+ }
408
+ }
409
+ public static void setCircleLayerStyle(final CircleLayer layer, MLRNStyle style) {
410
+ List<String> styleKeys = style.getAllStyleKeys();
411
+
412
+ if (styleKeys.size() == 0) {
413
+ return;
414
+ }
415
+
416
+ for (String styleKey : styleKeys) {
417
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
418
+
419
+ switch (styleKey) {
420
+ case "circleSortKey":
421
+ MLRNStyleFactory.setCircleSortKey(layer, styleValue);
422
+ break;
423
+ case "visibility":
424
+ MLRNStyleFactory.setVisibility(layer, styleValue);
425
+ break;
426
+ case "circleRadius":
427
+ MLRNStyleFactory.setCircleRadius(layer, styleValue);
428
+ break;
429
+ case "circleRadiusTransition":
430
+ MLRNStyleFactory.setCircleRadiusTransition(layer, styleValue);
431
+ break;
432
+ case "circleColor":
433
+ MLRNStyleFactory.setCircleColor(layer, styleValue);
434
+ break;
435
+ case "circleColorTransition":
436
+ MLRNStyleFactory.setCircleColorTransition(layer, styleValue);
437
+ break;
438
+ case "circleBlur":
439
+ MLRNStyleFactory.setCircleBlur(layer, styleValue);
440
+ break;
441
+ case "circleBlurTransition":
442
+ MLRNStyleFactory.setCircleBlurTransition(layer, styleValue);
443
+ break;
444
+ case "circleOpacity":
445
+ MLRNStyleFactory.setCircleOpacity(layer, styleValue);
446
+ break;
447
+ case "circleOpacityTransition":
448
+ MLRNStyleFactory.setCircleOpacityTransition(layer, styleValue);
449
+ break;
450
+ case "circleTranslate":
451
+ MLRNStyleFactory.setCircleTranslate(layer, styleValue);
452
+ break;
453
+ case "circleTranslateTransition":
454
+ MLRNStyleFactory.setCircleTranslateTransition(layer, styleValue);
455
+ break;
456
+ case "circleTranslateAnchor":
457
+ MLRNStyleFactory.setCircleTranslateAnchor(layer, styleValue);
458
+ break;
459
+ case "circlePitchScale":
460
+ MLRNStyleFactory.setCirclePitchScale(layer, styleValue);
461
+ break;
462
+ case "circlePitchAlignment":
463
+ MLRNStyleFactory.setCirclePitchAlignment(layer, styleValue);
464
+ break;
465
+ case "circleStrokeWidth":
466
+ MLRNStyleFactory.setCircleStrokeWidth(layer, styleValue);
467
+ break;
468
+ case "circleStrokeWidthTransition":
469
+ MLRNStyleFactory.setCircleStrokeWidthTransition(layer, styleValue);
470
+ break;
471
+ case "circleStrokeColor":
472
+ MLRNStyleFactory.setCircleStrokeColor(layer, styleValue);
473
+ break;
474
+ case "circleStrokeColorTransition":
475
+ MLRNStyleFactory.setCircleStrokeColorTransition(layer, styleValue);
476
+ break;
477
+ case "circleStrokeOpacity":
478
+ MLRNStyleFactory.setCircleStrokeOpacity(layer, styleValue);
479
+ break;
480
+ case "circleStrokeOpacityTransition":
481
+ MLRNStyleFactory.setCircleStrokeOpacityTransition(layer, styleValue);
482
+ break;
483
+ }
484
+ }
485
+ }
486
+ public static void setHeatmapLayerStyle(final HeatmapLayer layer, MLRNStyle style) {
487
+ List<String> styleKeys = style.getAllStyleKeys();
488
+
489
+ if (styleKeys.size() == 0) {
490
+ return;
491
+ }
492
+
493
+ for (String styleKey : styleKeys) {
494
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
495
+
496
+ switch (styleKey) {
497
+ case "visibility":
498
+ MLRNStyleFactory.setVisibility(layer, styleValue);
499
+ break;
500
+ case "heatmapRadius":
501
+ MLRNStyleFactory.setHeatmapRadius(layer, styleValue);
502
+ break;
503
+ case "heatmapRadiusTransition":
504
+ MLRNStyleFactory.setHeatmapRadiusTransition(layer, styleValue);
505
+ break;
506
+ case "heatmapWeight":
507
+ MLRNStyleFactory.setHeatmapWeight(layer, styleValue);
508
+ break;
509
+ case "heatmapIntensity":
510
+ MLRNStyleFactory.setHeatmapIntensity(layer, styleValue);
511
+ break;
512
+ case "heatmapIntensityTransition":
513
+ MLRNStyleFactory.setHeatmapIntensityTransition(layer, styleValue);
514
+ break;
515
+ case "heatmapColor":
516
+ MLRNStyleFactory.setHeatmapColor(layer, styleValue);
517
+ break;
518
+ case "heatmapOpacity":
519
+ MLRNStyleFactory.setHeatmapOpacity(layer, styleValue);
520
+ break;
521
+ case "heatmapOpacityTransition":
522
+ MLRNStyleFactory.setHeatmapOpacityTransition(layer, styleValue);
523
+ break;
524
+ }
525
+ }
526
+ }
527
+ public static void setFillExtrusionLayerStyle(final FillExtrusionLayer layer, MLRNStyle style) {
528
+ List<String> styleKeys = style.getAllStyleKeys();
529
+
530
+ if (styleKeys.size() == 0) {
531
+ return;
532
+ }
533
+
534
+ for (String styleKey : styleKeys) {
535
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
536
+
537
+ switch (styleKey) {
538
+ case "visibility":
539
+ MLRNStyleFactory.setVisibility(layer, styleValue);
540
+ break;
541
+ case "fillExtrusionOpacity":
542
+ MLRNStyleFactory.setFillExtrusionOpacity(layer, styleValue);
543
+ break;
544
+ case "fillExtrusionOpacityTransition":
545
+ MLRNStyleFactory.setFillExtrusionOpacityTransition(layer, styleValue);
546
+ break;
547
+ case "fillExtrusionColor":
548
+ MLRNStyleFactory.setFillExtrusionColor(layer, styleValue);
549
+ break;
550
+ case "fillExtrusionColorTransition":
551
+ MLRNStyleFactory.setFillExtrusionColorTransition(layer, styleValue);
552
+ break;
553
+ case "fillExtrusionTranslate":
554
+ MLRNStyleFactory.setFillExtrusionTranslate(layer, styleValue);
555
+ break;
556
+ case "fillExtrusionTranslateTransition":
557
+ MLRNStyleFactory.setFillExtrusionTranslateTransition(layer, styleValue);
558
+ break;
559
+ case "fillExtrusionTranslateAnchor":
560
+ MLRNStyleFactory.setFillExtrusionTranslateAnchor(layer, styleValue);
561
+ break;
562
+ case "fillExtrusionPattern":
563
+ style.addImage(styleValue, new DownloadMapImageTask.OnAllImagesLoaded() {
564
+ @Override
565
+ public void onAllImagesLoaded() {
566
+ MLRNStyleFactory.setFillExtrusionPattern(layer, styleValue);
567
+ }
568
+ });
569
+ break;
570
+ case "fillExtrusionPatternTransition":
571
+ MLRNStyleFactory.setFillExtrusionPatternTransition(layer, styleValue);
572
+ break;
573
+ case "fillExtrusionHeight":
574
+ MLRNStyleFactory.setFillExtrusionHeight(layer, styleValue);
575
+ break;
576
+ case "fillExtrusionHeightTransition":
577
+ MLRNStyleFactory.setFillExtrusionHeightTransition(layer, styleValue);
578
+ break;
579
+ case "fillExtrusionBase":
580
+ MLRNStyleFactory.setFillExtrusionBase(layer, styleValue);
581
+ break;
582
+ case "fillExtrusionBaseTransition":
583
+ MLRNStyleFactory.setFillExtrusionBaseTransition(layer, styleValue);
584
+ break;
585
+ case "fillExtrusionVerticalGradient":
586
+ MLRNStyleFactory.setFillExtrusionVerticalGradient(layer, styleValue);
587
+ break;
588
+ }
589
+ }
590
+ }
591
+ public static void setRasterLayerStyle(final RasterLayer layer, MLRNStyle style) {
592
+ List<String> styleKeys = style.getAllStyleKeys();
593
+
594
+ if (styleKeys.size() == 0) {
595
+ return;
596
+ }
597
+
598
+ for (String styleKey : styleKeys) {
599
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
600
+
601
+ switch (styleKey) {
602
+ case "visibility":
603
+ MLRNStyleFactory.setVisibility(layer, styleValue);
604
+ break;
605
+ case "rasterOpacity":
606
+ MLRNStyleFactory.setRasterOpacity(layer, styleValue);
607
+ break;
608
+ case "rasterOpacityTransition":
609
+ MLRNStyleFactory.setRasterOpacityTransition(layer, styleValue);
610
+ break;
611
+ case "rasterHueRotate":
612
+ MLRNStyleFactory.setRasterHueRotate(layer, styleValue);
613
+ break;
614
+ case "rasterHueRotateTransition":
615
+ MLRNStyleFactory.setRasterHueRotateTransition(layer, styleValue);
616
+ break;
617
+ case "rasterBrightnessMin":
618
+ MLRNStyleFactory.setRasterBrightnessMin(layer, styleValue);
619
+ break;
620
+ case "rasterBrightnessMinTransition":
621
+ MLRNStyleFactory.setRasterBrightnessMinTransition(layer, styleValue);
622
+ break;
623
+ case "rasterBrightnessMax":
624
+ MLRNStyleFactory.setRasterBrightnessMax(layer, styleValue);
625
+ break;
626
+ case "rasterBrightnessMaxTransition":
627
+ MLRNStyleFactory.setRasterBrightnessMaxTransition(layer, styleValue);
628
+ break;
629
+ case "rasterSaturation":
630
+ MLRNStyleFactory.setRasterSaturation(layer, styleValue);
631
+ break;
632
+ case "rasterSaturationTransition":
633
+ MLRNStyleFactory.setRasterSaturationTransition(layer, styleValue);
634
+ break;
635
+ case "rasterContrast":
636
+ MLRNStyleFactory.setRasterContrast(layer, styleValue);
637
+ break;
638
+ case "rasterContrastTransition":
639
+ MLRNStyleFactory.setRasterContrastTransition(layer, styleValue);
640
+ break;
641
+ case "rasterResampling":
642
+ MLRNStyleFactory.setRasterResampling(layer, styleValue);
643
+ break;
644
+ case "rasterFadeDuration":
645
+ MLRNStyleFactory.setRasterFadeDuration(layer, styleValue);
646
+ break;
647
+ }
648
+ }
649
+ }
650
+ public static void setHillshadeLayerStyle(final HillshadeLayer layer, MLRNStyle style) {
651
+ List<String> styleKeys = style.getAllStyleKeys();
652
+
653
+ if (styleKeys.size() == 0) {
654
+ return;
655
+ }
656
+
657
+ for (String styleKey : styleKeys) {
658
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
659
+
660
+ switch (styleKey) {
661
+ case "visibility":
662
+ MLRNStyleFactory.setVisibility(layer, styleValue);
663
+ break;
664
+ case "hillshadeIlluminationDirection":
665
+ MLRNStyleFactory.setHillshadeIlluminationDirection(layer, styleValue);
666
+ break;
667
+ case "hillshadeIlluminationAnchor":
668
+ MLRNStyleFactory.setHillshadeIlluminationAnchor(layer, styleValue);
669
+ break;
670
+ case "hillshadeExaggeration":
671
+ MLRNStyleFactory.setHillshadeExaggeration(layer, styleValue);
672
+ break;
673
+ case "hillshadeExaggerationTransition":
674
+ MLRNStyleFactory.setHillshadeExaggerationTransition(layer, styleValue);
675
+ break;
676
+ case "hillshadeShadowColor":
677
+ MLRNStyleFactory.setHillshadeShadowColor(layer, styleValue);
678
+ break;
679
+ case "hillshadeShadowColorTransition":
680
+ MLRNStyleFactory.setHillshadeShadowColorTransition(layer, styleValue);
681
+ break;
682
+ case "hillshadeHighlightColor":
683
+ MLRNStyleFactory.setHillshadeHighlightColor(layer, styleValue);
684
+ break;
685
+ case "hillshadeHighlightColorTransition":
686
+ MLRNStyleFactory.setHillshadeHighlightColorTransition(layer, styleValue);
687
+ break;
688
+ case "hillshadeAccentColor":
689
+ MLRNStyleFactory.setHillshadeAccentColor(layer, styleValue);
690
+ break;
691
+ case "hillshadeAccentColorTransition":
692
+ MLRNStyleFactory.setHillshadeAccentColorTransition(layer, styleValue);
693
+ break;
694
+ }
695
+ }
696
+ }
697
+ public static void setBackgroundLayerStyle(final BackgroundLayer layer, MLRNStyle style) {
698
+ List<String> styleKeys = style.getAllStyleKeys();
699
+
700
+ if (styleKeys.size() == 0) {
701
+ return;
702
+ }
703
+
704
+ for (String styleKey : styleKeys) {
705
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
706
+
707
+ switch (styleKey) {
708
+ case "visibility":
709
+ MLRNStyleFactory.setVisibility(layer, styleValue);
710
+ break;
711
+ case "backgroundColor":
712
+ MLRNStyleFactory.setBackgroundColor(layer, styleValue);
713
+ break;
714
+ case "backgroundColorTransition":
715
+ MLRNStyleFactory.setBackgroundColorTransition(layer, styleValue);
716
+ break;
717
+ case "backgroundPattern":
718
+ style.addImage(styleValue, new DownloadMapImageTask.OnAllImagesLoaded() {
719
+ @Override
720
+ public void onAllImagesLoaded() {
721
+ MLRNStyleFactory.setBackgroundPattern(layer, styleValue);
722
+ }
723
+ });
724
+ break;
725
+ case "backgroundPatternTransition":
726
+ MLRNStyleFactory.setBackgroundPatternTransition(layer, styleValue);
727
+ break;
728
+ case "backgroundOpacity":
729
+ MLRNStyleFactory.setBackgroundOpacity(layer, styleValue);
730
+ break;
731
+ case "backgroundOpacityTransition":
732
+ MLRNStyleFactory.setBackgroundOpacityTransition(layer, styleValue);
733
+ break;
734
+ }
735
+ }
736
+ }
737
+ public static void setLightLayerStyle(final Light layer, MLRNStyle style) {
738
+ List<String> styleKeys = style.getAllStyleKeys();
739
+
740
+ if (styleKeys.size() == 0) {
741
+ return;
742
+ }
743
+
744
+ for (String styleKey : styleKeys) {
745
+ final MLRNStyleValue styleValue = style.getStyleValueForKey(styleKey);
746
+
747
+ switch (styleKey) {
748
+ case "anchor":
749
+ MLRNStyleFactory.setAnchor(layer, styleValue);
750
+ break;
751
+ case "position":
752
+ MLRNStyleFactory.setPosition(layer, styleValue);
753
+ break;
754
+ case "positionTransition":
755
+ MLRNStyleFactory.setPositionTransition(layer, styleValue);
756
+ break;
757
+ case "color":
758
+ MLRNStyleFactory.setColor(layer, styleValue);
759
+ break;
760
+ case "colorTransition":
761
+ MLRNStyleFactory.setColorTransition(layer, styleValue);
762
+ break;
763
+ case "intensity":
764
+ MLRNStyleFactory.setIntensity(layer, styleValue);
765
+ break;
766
+ case "intensityTransition":
767
+ MLRNStyleFactory.setIntensityTransition(layer, styleValue);
768
+ break;
769
+ }
770
+ }
771
+ }
772
+
773
+ public static void setFillSortKey(FillLayer layer, MLRNStyleValue styleValue) {
774
+ if (styleValue.isExpression()) {
775
+ layer.setProperties(PropertyFactory.fillSortKey(styleValue.getExpression()));
776
+ } else {
777
+ layer.setProperties(PropertyFactory.fillSortKey(styleValue.getFloat(VALUE_KEY)));
778
+ }
779
+ }
780
+
781
+ public static void setVisibility(FillLayer layer, MLRNStyleValue styleValue) {
782
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
783
+ }
784
+
785
+ public static void setFillAntialias(FillLayer layer, MLRNStyleValue styleValue) {
786
+ if (styleValue.isExpression()) {
787
+ layer.setProperties(PropertyFactory.fillAntialias(styleValue.getExpression()));
788
+ } else {
789
+ layer.setProperties(PropertyFactory.fillAntialias(styleValue.getBoolean(VALUE_KEY)));
790
+ }
791
+ }
792
+
793
+ public static void setFillOpacity(FillLayer layer, MLRNStyleValue styleValue) {
794
+ if (styleValue.isExpression()) {
795
+ layer.setProperties(PropertyFactory.fillOpacity(styleValue.getExpression()));
796
+ } else {
797
+ layer.setProperties(PropertyFactory.fillOpacity(styleValue.getFloat(VALUE_KEY)));
798
+ }
799
+ }
800
+
801
+
802
+ public static void setFillOpacityTransition(FillLayer layer, MLRNStyleValue styleValue) {
803
+ TransitionOptions transition = styleValue.getTransition();
804
+ if (transition != null) {
805
+ layer.setFillOpacityTransition(transition);
806
+ }
807
+ }
808
+
809
+ public static void setFillColor(FillLayer layer, MLRNStyleValue styleValue) {
810
+ if (styleValue.isExpression()) {
811
+ layer.setProperties(PropertyFactory.fillColor(styleValue.getExpression()));
812
+ } else {
813
+ layer.setProperties(PropertyFactory.fillColor(styleValue.getInt(VALUE_KEY)));
814
+ }
815
+ }
816
+
817
+
818
+ public static void setFillColorTransition(FillLayer layer, MLRNStyleValue styleValue) {
819
+ TransitionOptions transition = styleValue.getTransition();
820
+ if (transition != null) {
821
+ layer.setFillColorTransition(transition);
822
+ }
823
+ }
824
+
825
+ public static void setFillOutlineColor(FillLayer layer, MLRNStyleValue styleValue) {
826
+ if (styleValue.isExpression()) {
827
+ layer.setProperties(PropertyFactory.fillOutlineColor(styleValue.getExpression()));
828
+ } else {
829
+ layer.setProperties(PropertyFactory.fillOutlineColor(styleValue.getInt(VALUE_KEY)));
830
+ }
831
+ }
832
+
833
+
834
+ public static void setFillOutlineColorTransition(FillLayer layer, MLRNStyleValue styleValue) {
835
+ TransitionOptions transition = styleValue.getTransition();
836
+ if (transition != null) {
837
+ layer.setFillOutlineColorTransition(transition);
838
+ }
839
+ }
840
+
841
+ public static void setFillTranslate(FillLayer layer, MLRNStyleValue styleValue) {
842
+ if (styleValue.isExpression()) {
843
+ layer.setProperties(PropertyFactory.fillTranslate(styleValue.getExpression()));
844
+ } else {
845
+ layer.setProperties(PropertyFactory.fillTranslate(styleValue.getFloatArray(VALUE_KEY)));
846
+ }
847
+ }
848
+
849
+
850
+ public static void setFillTranslateTransition(FillLayer layer, MLRNStyleValue styleValue) {
851
+ TransitionOptions transition = styleValue.getTransition();
852
+ if (transition != null) {
853
+ layer.setFillTranslateTransition(transition);
854
+ }
855
+ }
856
+
857
+ public static void setFillTranslateAnchor(FillLayer layer, MLRNStyleValue styleValue) {
858
+ if (styleValue.isExpression()) {
859
+ layer.setProperties(PropertyFactory.fillTranslateAnchor(styleValue.getExpression()));
860
+ } else {
861
+ layer.setProperties(PropertyFactory.fillTranslateAnchor(styleValue.getString(VALUE_KEY)));
862
+ }
863
+ }
864
+
865
+ public static void setFillPattern(FillLayer layer, MLRNStyleValue styleValue) {
866
+ if (styleValue.isExpression()) {
867
+ if (styleValue.isImageStringValue()) {
868
+ layer.setProperties(PropertyFactory.fillPattern(styleValue.getImageStringValue()));
869
+ } else {
870
+ layer.setProperties(PropertyFactory.fillPattern(styleValue.getExpression()));
871
+ }
872
+ } else {
873
+ layer.setProperties(PropertyFactory.fillPattern(styleValue.getImageURI()));
874
+ }
875
+ }
876
+
877
+
878
+ public static void setFillPatternTransition(FillLayer layer, MLRNStyleValue styleValue) {
879
+ TransitionOptions transition = styleValue.getTransition();
880
+ if (transition != null) {
881
+ layer.setFillPatternTransition(transition);
882
+ }
883
+ }
884
+
885
+ public static void setLineCap(LineLayer layer, MLRNStyleValue styleValue) {
886
+ if (styleValue.isExpression()) {
887
+ layer.setProperties(PropertyFactory.lineCap(styleValue.getExpression()));
888
+ } else {
889
+ layer.setProperties(PropertyFactory.lineCap(styleValue.getString(VALUE_KEY)));
890
+ }
891
+ }
892
+
893
+ public static void setLineJoin(LineLayer layer, MLRNStyleValue styleValue) {
894
+ if (styleValue.isExpression()) {
895
+ layer.setProperties(PropertyFactory.lineJoin(styleValue.getExpression()));
896
+ } else {
897
+ layer.setProperties(PropertyFactory.lineJoin(styleValue.getString(VALUE_KEY)));
898
+ }
899
+ }
900
+
901
+ public static void setLineMiterLimit(LineLayer layer, MLRNStyleValue styleValue) {
902
+ if (styleValue.isExpression()) {
903
+ layer.setProperties(PropertyFactory.lineMiterLimit(styleValue.getExpression()));
904
+ } else {
905
+ layer.setProperties(PropertyFactory.lineMiterLimit(styleValue.getFloat(VALUE_KEY)));
906
+ }
907
+ }
908
+
909
+ public static void setLineRoundLimit(LineLayer layer, MLRNStyleValue styleValue) {
910
+ if (styleValue.isExpression()) {
911
+ layer.setProperties(PropertyFactory.lineRoundLimit(styleValue.getExpression()));
912
+ } else {
913
+ layer.setProperties(PropertyFactory.lineRoundLimit(styleValue.getFloat(VALUE_KEY)));
914
+ }
915
+ }
916
+
917
+ public static void setLineSortKey(LineLayer layer, MLRNStyleValue styleValue) {
918
+ if (styleValue.isExpression()) {
919
+ layer.setProperties(PropertyFactory.lineSortKey(styleValue.getExpression()));
920
+ } else {
921
+ layer.setProperties(PropertyFactory.lineSortKey(styleValue.getFloat(VALUE_KEY)));
922
+ }
923
+ }
924
+
925
+ public static void setVisibility(LineLayer layer, MLRNStyleValue styleValue) {
926
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
927
+ }
928
+
929
+ public static void setLineOpacity(LineLayer layer, MLRNStyleValue styleValue) {
930
+ if (styleValue.isExpression()) {
931
+ layer.setProperties(PropertyFactory.lineOpacity(styleValue.getExpression()));
932
+ } else {
933
+ layer.setProperties(PropertyFactory.lineOpacity(styleValue.getFloat(VALUE_KEY)));
934
+ }
935
+ }
936
+
937
+
938
+ public static void setLineOpacityTransition(LineLayer layer, MLRNStyleValue styleValue) {
939
+ TransitionOptions transition = styleValue.getTransition();
940
+ if (transition != null) {
941
+ layer.setLineOpacityTransition(transition);
942
+ }
943
+ }
944
+
945
+ public static void setLineColor(LineLayer layer, MLRNStyleValue styleValue) {
946
+ if (styleValue.isExpression()) {
947
+ layer.setProperties(PropertyFactory.lineColor(styleValue.getExpression()));
948
+ } else {
949
+ layer.setProperties(PropertyFactory.lineColor(styleValue.getInt(VALUE_KEY)));
950
+ }
951
+ }
952
+
953
+
954
+ public static void setLineColorTransition(LineLayer layer, MLRNStyleValue styleValue) {
955
+ TransitionOptions transition = styleValue.getTransition();
956
+ if (transition != null) {
957
+ layer.setLineColorTransition(transition);
958
+ }
959
+ }
960
+
961
+ public static void setLineTranslate(LineLayer layer, MLRNStyleValue styleValue) {
962
+ if (styleValue.isExpression()) {
963
+ layer.setProperties(PropertyFactory.lineTranslate(styleValue.getExpression()));
964
+ } else {
965
+ layer.setProperties(PropertyFactory.lineTranslate(styleValue.getFloatArray(VALUE_KEY)));
966
+ }
967
+ }
968
+
969
+
970
+ public static void setLineTranslateTransition(LineLayer layer, MLRNStyleValue styleValue) {
971
+ TransitionOptions transition = styleValue.getTransition();
972
+ if (transition != null) {
973
+ layer.setLineTranslateTransition(transition);
974
+ }
975
+ }
976
+
977
+ public static void setLineTranslateAnchor(LineLayer layer, MLRNStyleValue styleValue) {
978
+ if (styleValue.isExpression()) {
979
+ layer.setProperties(PropertyFactory.lineTranslateAnchor(styleValue.getExpression()));
980
+ } else {
981
+ layer.setProperties(PropertyFactory.lineTranslateAnchor(styleValue.getString(VALUE_KEY)));
982
+ }
983
+ }
984
+
985
+ public static void setLineWidth(LineLayer layer, MLRNStyleValue styleValue) {
986
+ if (styleValue.isExpression()) {
987
+ layer.setProperties(PropertyFactory.lineWidth(styleValue.getExpression()));
988
+ } else {
989
+ layer.setProperties(PropertyFactory.lineWidth(styleValue.getFloat(VALUE_KEY)));
990
+ }
991
+ }
992
+
993
+
994
+ public static void setLineWidthTransition(LineLayer layer, MLRNStyleValue styleValue) {
995
+ TransitionOptions transition = styleValue.getTransition();
996
+ if (transition != null) {
997
+ layer.setLineWidthTransition(transition);
998
+ }
999
+ }
1000
+
1001
+ public static void setLineGapWidth(LineLayer layer, MLRNStyleValue styleValue) {
1002
+ if (styleValue.isExpression()) {
1003
+ layer.setProperties(PropertyFactory.lineGapWidth(styleValue.getExpression()));
1004
+ } else {
1005
+ layer.setProperties(PropertyFactory.lineGapWidth(styleValue.getFloat(VALUE_KEY)));
1006
+ }
1007
+ }
1008
+
1009
+
1010
+ public static void setLineGapWidthTransition(LineLayer layer, MLRNStyleValue styleValue) {
1011
+ TransitionOptions transition = styleValue.getTransition();
1012
+ if (transition != null) {
1013
+ layer.setLineGapWidthTransition(transition);
1014
+ }
1015
+ }
1016
+
1017
+ public static void setLineOffset(LineLayer layer, MLRNStyleValue styleValue) {
1018
+ if (styleValue.isExpression()) {
1019
+ layer.setProperties(PropertyFactory.lineOffset(styleValue.getExpression()));
1020
+ } else {
1021
+ layer.setProperties(PropertyFactory.lineOffset(styleValue.getFloat(VALUE_KEY)));
1022
+ }
1023
+ }
1024
+
1025
+
1026
+ public static void setLineOffsetTransition(LineLayer layer, MLRNStyleValue styleValue) {
1027
+ TransitionOptions transition = styleValue.getTransition();
1028
+ if (transition != null) {
1029
+ layer.setLineOffsetTransition(transition);
1030
+ }
1031
+ }
1032
+
1033
+ public static void setLineBlur(LineLayer layer, MLRNStyleValue styleValue) {
1034
+ if (styleValue.isExpression()) {
1035
+ layer.setProperties(PropertyFactory.lineBlur(styleValue.getExpression()));
1036
+ } else {
1037
+ layer.setProperties(PropertyFactory.lineBlur(styleValue.getFloat(VALUE_KEY)));
1038
+ }
1039
+ }
1040
+
1041
+
1042
+ public static void setLineBlurTransition(LineLayer layer, MLRNStyleValue styleValue) {
1043
+ TransitionOptions transition = styleValue.getTransition();
1044
+ if (transition != null) {
1045
+ layer.setLineBlurTransition(transition);
1046
+ }
1047
+ }
1048
+
1049
+ public static void setLineDasharray(LineLayer layer, MLRNStyleValue styleValue) {
1050
+ if (styleValue.isExpression()) {
1051
+ layer.setProperties(PropertyFactory.lineDasharray(styleValue.getExpression()));
1052
+ } else {
1053
+ layer.setProperties(PropertyFactory.lineDasharray(styleValue.getFloatArray(VALUE_KEY)));
1054
+ }
1055
+ }
1056
+
1057
+
1058
+ public static void setLineDasharrayTransition(LineLayer layer, MLRNStyleValue styleValue) {
1059
+ TransitionOptions transition = styleValue.getTransition();
1060
+ if (transition != null) {
1061
+ layer.setLineDasharrayTransition(transition);
1062
+ }
1063
+ }
1064
+
1065
+ public static void setLinePattern(LineLayer layer, MLRNStyleValue styleValue) {
1066
+ if (styleValue.isExpression()) {
1067
+ if (styleValue.isImageStringValue()) {
1068
+ layer.setProperties(PropertyFactory.linePattern(styleValue.getImageStringValue()));
1069
+ } else {
1070
+ layer.setProperties(PropertyFactory.linePattern(styleValue.getExpression()));
1071
+ }
1072
+ } else {
1073
+ layer.setProperties(PropertyFactory.linePattern(styleValue.getImageURI()));
1074
+ }
1075
+ }
1076
+
1077
+
1078
+ public static void setLinePatternTransition(LineLayer layer, MLRNStyleValue styleValue) {
1079
+ TransitionOptions transition = styleValue.getTransition();
1080
+ if (transition != null) {
1081
+ layer.setLinePatternTransition(transition);
1082
+ }
1083
+ }
1084
+
1085
+ public static void setLineGradient(LineLayer layer, MLRNStyleValue styleValue) {
1086
+ if (styleValue.isExpression()) {
1087
+ layer.setProperties(PropertyFactory.lineGradient(styleValue.getExpression()));
1088
+ } else {
1089
+ layer.setProperties(PropertyFactory.lineGradient(styleValue.getInt(VALUE_KEY)));
1090
+ }
1091
+ }
1092
+
1093
+ public static void setSymbolPlacement(SymbolLayer layer, MLRNStyleValue styleValue) {
1094
+ if (styleValue.isExpression()) {
1095
+ layer.setProperties(PropertyFactory.symbolPlacement(styleValue.getExpression()));
1096
+ } else {
1097
+ layer.setProperties(PropertyFactory.symbolPlacement(styleValue.getString(VALUE_KEY)));
1098
+ }
1099
+ }
1100
+
1101
+ public static void setSymbolSpacing(SymbolLayer layer, MLRNStyleValue styleValue) {
1102
+ if (styleValue.isExpression()) {
1103
+ layer.setProperties(PropertyFactory.symbolSpacing(styleValue.getExpression()));
1104
+ } else {
1105
+ layer.setProperties(PropertyFactory.symbolSpacing(styleValue.getFloat(VALUE_KEY)));
1106
+ }
1107
+ }
1108
+
1109
+ public static void setSymbolAvoidEdges(SymbolLayer layer, MLRNStyleValue styleValue) {
1110
+ if (styleValue.isExpression()) {
1111
+ layer.setProperties(PropertyFactory.symbolAvoidEdges(styleValue.getExpression()));
1112
+ } else {
1113
+ layer.setProperties(PropertyFactory.symbolAvoidEdges(styleValue.getBoolean(VALUE_KEY)));
1114
+ }
1115
+ }
1116
+
1117
+ public static void setSymbolSortKey(SymbolLayer layer, MLRNStyleValue styleValue) {
1118
+ if (styleValue.isExpression()) {
1119
+ layer.setProperties(PropertyFactory.symbolSortKey(styleValue.getExpression()));
1120
+ } else {
1121
+ layer.setProperties(PropertyFactory.symbolSortKey(styleValue.getFloat(VALUE_KEY)));
1122
+ }
1123
+ }
1124
+
1125
+ public static void setSymbolZOrder(SymbolLayer layer, MLRNStyleValue styleValue) {
1126
+ if (styleValue.isExpression()) {
1127
+ layer.setProperties(PropertyFactory.symbolZOrder(styleValue.getExpression()));
1128
+ } else {
1129
+ layer.setProperties(PropertyFactory.symbolZOrder(styleValue.getString(VALUE_KEY)));
1130
+ }
1131
+ }
1132
+
1133
+ public static void setIconAllowOverlap(SymbolLayer layer, MLRNStyleValue styleValue) {
1134
+ if (styleValue.isExpression()) {
1135
+ layer.setProperties(PropertyFactory.iconAllowOverlap(styleValue.getExpression()));
1136
+ } else {
1137
+ layer.setProperties(PropertyFactory.iconAllowOverlap(styleValue.getBoolean(VALUE_KEY)));
1138
+ }
1139
+ }
1140
+
1141
+ public static void setIconIgnorePlacement(SymbolLayer layer, MLRNStyleValue styleValue) {
1142
+ if (styleValue.isExpression()) {
1143
+ layer.setProperties(PropertyFactory.iconIgnorePlacement(styleValue.getExpression()));
1144
+ } else {
1145
+ layer.setProperties(PropertyFactory.iconIgnorePlacement(styleValue.getBoolean(VALUE_KEY)));
1146
+ }
1147
+ }
1148
+
1149
+ public static void setIconOptional(SymbolLayer layer, MLRNStyleValue styleValue) {
1150
+ if (styleValue.isExpression()) {
1151
+ layer.setProperties(PropertyFactory.iconOptional(styleValue.getExpression()));
1152
+ } else {
1153
+ layer.setProperties(PropertyFactory.iconOptional(styleValue.getBoolean(VALUE_KEY)));
1154
+ }
1155
+ }
1156
+
1157
+ public static void setIconRotationAlignment(SymbolLayer layer, MLRNStyleValue styleValue) {
1158
+ if (styleValue.isExpression()) {
1159
+ layer.setProperties(PropertyFactory.iconRotationAlignment(styleValue.getExpression()));
1160
+ } else {
1161
+ layer.setProperties(PropertyFactory.iconRotationAlignment(styleValue.getString(VALUE_KEY)));
1162
+ }
1163
+ }
1164
+
1165
+ public static void setIconSize(SymbolLayer layer, MLRNStyleValue styleValue) {
1166
+ if (styleValue.isExpression()) {
1167
+ layer.setProperties(PropertyFactory.iconSize(styleValue.getExpression()));
1168
+ } else {
1169
+ layer.setProperties(PropertyFactory.iconSize(styleValue.getFloat(VALUE_KEY)));
1170
+ }
1171
+ }
1172
+
1173
+ public static void setIconTextFit(SymbolLayer layer, MLRNStyleValue styleValue) {
1174
+ if (styleValue.isExpression()) {
1175
+ layer.setProperties(PropertyFactory.iconTextFit(styleValue.getExpression()));
1176
+ } else {
1177
+ layer.setProperties(PropertyFactory.iconTextFit(styleValue.getString(VALUE_KEY)));
1178
+ }
1179
+ }
1180
+
1181
+ public static void setIconTextFitPadding(SymbolLayer layer, MLRNStyleValue styleValue) {
1182
+ if (styleValue.isExpression()) {
1183
+ layer.setProperties(PropertyFactory.iconTextFitPadding(styleValue.getExpression()));
1184
+ } else {
1185
+ layer.setProperties(PropertyFactory.iconTextFitPadding(styleValue.getFloatArray(VALUE_KEY)));
1186
+ }
1187
+ }
1188
+
1189
+ public static void setIconImage(SymbolLayer layer, MLRNStyleValue styleValue) {
1190
+ if (styleValue.isExpression()) {
1191
+ if (styleValue.isImageStringValue()) {
1192
+ layer.setProperties(PropertyFactory.iconImage(styleValue.getImageStringValue()));
1193
+ } else {
1194
+ layer.setProperties(PropertyFactory.iconImage(styleValue.getExpression()));
1195
+ }
1196
+ } else {
1197
+ layer.setProperties(PropertyFactory.iconImage(styleValue.getImageURI()));
1198
+ }
1199
+ }
1200
+
1201
+ public static void setIconRotate(SymbolLayer layer, MLRNStyleValue styleValue) {
1202
+ if (styleValue.isExpression()) {
1203
+ layer.setProperties(PropertyFactory.iconRotate(styleValue.getExpression()));
1204
+ } else {
1205
+ layer.setProperties(PropertyFactory.iconRotate(styleValue.getFloat(VALUE_KEY)));
1206
+ }
1207
+ }
1208
+
1209
+ public static void setIconPadding(SymbolLayer layer, MLRNStyleValue styleValue) {
1210
+ if (styleValue.isExpression()) {
1211
+ layer.setProperties(PropertyFactory.iconPadding(styleValue.getExpression()));
1212
+ } else {
1213
+ layer.setProperties(PropertyFactory.iconPadding(styleValue.getFloatArray(VALUE_KEY)));
1214
+ }
1215
+ }
1216
+
1217
+ public static void setIconKeepUpright(SymbolLayer layer, MLRNStyleValue styleValue) {
1218
+ if (styleValue.isExpression()) {
1219
+ layer.setProperties(PropertyFactory.iconKeepUpright(styleValue.getExpression()));
1220
+ } else {
1221
+ layer.setProperties(PropertyFactory.iconKeepUpright(styleValue.getBoolean(VALUE_KEY)));
1222
+ }
1223
+ }
1224
+
1225
+ public static void setIconOffset(SymbolLayer layer, MLRNStyleValue styleValue) {
1226
+ if (styleValue.isExpression()) {
1227
+ layer.setProperties(PropertyFactory.iconOffset(styleValue.getExpression()));
1228
+ } else {
1229
+ layer.setProperties(PropertyFactory.iconOffset(styleValue.getFloatArray(VALUE_KEY)));
1230
+ }
1231
+ }
1232
+
1233
+ public static void setIconAnchor(SymbolLayer layer, MLRNStyleValue styleValue) {
1234
+ if (styleValue.isExpression()) {
1235
+ layer.setProperties(PropertyFactory.iconAnchor(styleValue.getExpression()));
1236
+ } else {
1237
+ layer.setProperties(PropertyFactory.iconAnchor(styleValue.getString(VALUE_KEY)));
1238
+ }
1239
+ }
1240
+
1241
+ public static void setIconPitchAlignment(SymbolLayer layer, MLRNStyleValue styleValue) {
1242
+ if (styleValue.isExpression()) {
1243
+ layer.setProperties(PropertyFactory.iconPitchAlignment(styleValue.getExpression()));
1244
+ } else {
1245
+ layer.setProperties(PropertyFactory.iconPitchAlignment(styleValue.getString(VALUE_KEY)));
1246
+ }
1247
+ }
1248
+
1249
+ public static void setTextPitchAlignment(SymbolLayer layer, MLRNStyleValue styleValue) {
1250
+ if (styleValue.isExpression()) {
1251
+ layer.setProperties(PropertyFactory.textPitchAlignment(styleValue.getExpression()));
1252
+ } else {
1253
+ layer.setProperties(PropertyFactory.textPitchAlignment(styleValue.getString(VALUE_KEY)));
1254
+ }
1255
+ }
1256
+
1257
+ public static void setTextRotationAlignment(SymbolLayer layer, MLRNStyleValue styleValue) {
1258
+ if (styleValue.isExpression()) {
1259
+ layer.setProperties(PropertyFactory.textRotationAlignment(styleValue.getExpression()));
1260
+ } else {
1261
+ layer.setProperties(PropertyFactory.textRotationAlignment(styleValue.getString(VALUE_KEY)));
1262
+ }
1263
+ }
1264
+
1265
+ public static void setTextField(SymbolLayer layer, MLRNStyleValue styleValue) {
1266
+ if (styleValue.isExpression()) {
1267
+ layer.setProperties(PropertyFactory.textField(styleValue.getExpression()));
1268
+ } else {
1269
+ layer.setProperties(PropertyFactory.textField(styleValue.getString(VALUE_KEY)));
1270
+ }
1271
+ }
1272
+
1273
+ public static void setTextFont(SymbolLayer layer, MLRNStyleValue styleValue) {
1274
+ if (styleValue.isExpression()) {
1275
+ layer.setProperties(PropertyFactory.textFont(styleValue.getExpression()));
1276
+ } else {
1277
+ layer.setProperties(PropertyFactory.textFont(styleValue.getStringArray(VALUE_KEY)));
1278
+ }
1279
+ }
1280
+
1281
+ public static void setTextSize(SymbolLayer layer, MLRNStyleValue styleValue) {
1282
+ if (styleValue.isExpression()) {
1283
+ layer.setProperties(PropertyFactory.textSize(styleValue.getExpression()));
1284
+ } else {
1285
+ layer.setProperties(PropertyFactory.textSize(styleValue.getFloat(VALUE_KEY)));
1286
+ }
1287
+ }
1288
+
1289
+ public static void setTextMaxWidth(SymbolLayer layer, MLRNStyleValue styleValue) {
1290
+ if (styleValue.isExpression()) {
1291
+ layer.setProperties(PropertyFactory.textMaxWidth(styleValue.getExpression()));
1292
+ } else {
1293
+ layer.setProperties(PropertyFactory.textMaxWidth(styleValue.getFloat(VALUE_KEY)));
1294
+ }
1295
+ }
1296
+
1297
+ public static void setTextLineHeight(SymbolLayer layer, MLRNStyleValue styleValue) {
1298
+ if (styleValue.isExpression()) {
1299
+ layer.setProperties(PropertyFactory.textLineHeight(styleValue.getExpression()));
1300
+ } else {
1301
+ layer.setProperties(PropertyFactory.textLineHeight(styleValue.getFloat(VALUE_KEY)));
1302
+ }
1303
+ }
1304
+
1305
+ public static void setTextLetterSpacing(SymbolLayer layer, MLRNStyleValue styleValue) {
1306
+ if (styleValue.isExpression()) {
1307
+ layer.setProperties(PropertyFactory.textLetterSpacing(styleValue.getExpression()));
1308
+ } else {
1309
+ layer.setProperties(PropertyFactory.textLetterSpacing(styleValue.getFloat(VALUE_KEY)));
1310
+ }
1311
+ }
1312
+
1313
+ public static void setTextJustify(SymbolLayer layer, MLRNStyleValue styleValue) {
1314
+ if (styleValue.isExpression()) {
1315
+ layer.setProperties(PropertyFactory.textJustify(styleValue.getExpression()));
1316
+ } else {
1317
+ layer.setProperties(PropertyFactory.textJustify(styleValue.getString(VALUE_KEY)));
1318
+ }
1319
+ }
1320
+
1321
+ public static void setTextRadialOffset(SymbolLayer layer, MLRNStyleValue styleValue) {
1322
+ if (styleValue.isExpression()) {
1323
+ layer.setProperties(PropertyFactory.textRadialOffset(styleValue.getExpression()));
1324
+ } else {
1325
+ layer.setProperties(PropertyFactory.textRadialOffset(styleValue.getFloat(VALUE_KEY)));
1326
+ }
1327
+ }
1328
+
1329
+ public static void setTextVariableAnchor(SymbolLayer layer, MLRNStyleValue styleValue) {
1330
+ if (styleValue.isExpression()) {
1331
+ layer.setProperties(PropertyFactory.textVariableAnchor(styleValue.getExpression()));
1332
+ } else {
1333
+ layer.setProperties(PropertyFactory.textVariableAnchor(styleValue.getStringArray(VALUE_KEY)));
1334
+ }
1335
+ }
1336
+
1337
+ public static void setTextAnchor(SymbolLayer layer, MLRNStyleValue styleValue) {
1338
+ if (styleValue.isExpression()) {
1339
+ layer.setProperties(PropertyFactory.textAnchor(styleValue.getExpression()));
1340
+ } else {
1341
+ layer.setProperties(PropertyFactory.textAnchor(styleValue.getString(VALUE_KEY)));
1342
+ }
1343
+ }
1344
+
1345
+ public static void setTextMaxAngle(SymbolLayer layer, MLRNStyleValue styleValue) {
1346
+ if (styleValue.isExpression()) {
1347
+ layer.setProperties(PropertyFactory.textMaxAngle(styleValue.getExpression()));
1348
+ } else {
1349
+ layer.setProperties(PropertyFactory.textMaxAngle(styleValue.getFloat(VALUE_KEY)));
1350
+ }
1351
+ }
1352
+
1353
+ public static void setTextWritingMode(SymbolLayer layer, MLRNStyleValue styleValue) {
1354
+ if (styleValue.isExpression()) {
1355
+ layer.setProperties(PropertyFactory.textWritingMode(styleValue.getExpression()));
1356
+ } else {
1357
+ layer.setProperties(PropertyFactory.textWritingMode(styleValue.getStringArray(VALUE_KEY)));
1358
+ }
1359
+ }
1360
+
1361
+ public static void setTextRotate(SymbolLayer layer, MLRNStyleValue styleValue) {
1362
+ if (styleValue.isExpression()) {
1363
+ layer.setProperties(PropertyFactory.textRotate(styleValue.getExpression()));
1364
+ } else {
1365
+ layer.setProperties(PropertyFactory.textRotate(styleValue.getFloat(VALUE_KEY)));
1366
+ }
1367
+ }
1368
+
1369
+ public static void setTextPadding(SymbolLayer layer, MLRNStyleValue styleValue) {
1370
+ if (styleValue.isExpression()) {
1371
+ layer.setProperties(PropertyFactory.textPadding(styleValue.getExpression()));
1372
+ } else {
1373
+ layer.setProperties(PropertyFactory.textPadding(styleValue.getFloat(VALUE_KEY)));
1374
+ }
1375
+ }
1376
+
1377
+ public static void setTextKeepUpright(SymbolLayer layer, MLRNStyleValue styleValue) {
1378
+ if (styleValue.isExpression()) {
1379
+ layer.setProperties(PropertyFactory.textKeepUpright(styleValue.getExpression()));
1380
+ } else {
1381
+ layer.setProperties(PropertyFactory.textKeepUpright(styleValue.getBoolean(VALUE_KEY)));
1382
+ }
1383
+ }
1384
+
1385
+ public static void setTextTransform(SymbolLayer layer, MLRNStyleValue styleValue) {
1386
+ if (styleValue.isExpression()) {
1387
+ layer.setProperties(PropertyFactory.textTransform(styleValue.getExpression()));
1388
+ } else {
1389
+ layer.setProperties(PropertyFactory.textTransform(styleValue.getString(VALUE_KEY)));
1390
+ }
1391
+ }
1392
+
1393
+ public static void setTextOffset(SymbolLayer layer, MLRNStyleValue styleValue) {
1394
+ if (styleValue.isExpression()) {
1395
+ layer.setProperties(PropertyFactory.textOffset(styleValue.getExpression()));
1396
+ } else {
1397
+ layer.setProperties(PropertyFactory.textOffset(styleValue.getFloatArray(VALUE_KEY)));
1398
+ }
1399
+ }
1400
+
1401
+ public static void setTextAllowOverlap(SymbolLayer layer, MLRNStyleValue styleValue) {
1402
+ if (styleValue.isExpression()) {
1403
+ layer.setProperties(PropertyFactory.textAllowOverlap(styleValue.getExpression()));
1404
+ } else {
1405
+ layer.setProperties(PropertyFactory.textAllowOverlap(styleValue.getBoolean(VALUE_KEY)));
1406
+ }
1407
+ }
1408
+
1409
+ public static void setTextIgnorePlacement(SymbolLayer layer, MLRNStyleValue styleValue) {
1410
+ if (styleValue.isExpression()) {
1411
+ layer.setProperties(PropertyFactory.textIgnorePlacement(styleValue.getExpression()));
1412
+ } else {
1413
+ layer.setProperties(PropertyFactory.textIgnorePlacement(styleValue.getBoolean(VALUE_KEY)));
1414
+ }
1415
+ }
1416
+
1417
+ public static void setTextOptional(SymbolLayer layer, MLRNStyleValue styleValue) {
1418
+ if (styleValue.isExpression()) {
1419
+ layer.setProperties(PropertyFactory.textOptional(styleValue.getExpression()));
1420
+ } else {
1421
+ layer.setProperties(PropertyFactory.textOptional(styleValue.getBoolean(VALUE_KEY)));
1422
+ }
1423
+ }
1424
+
1425
+ public static void setVisibility(SymbolLayer layer, MLRNStyleValue styleValue) {
1426
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
1427
+ }
1428
+
1429
+ public static void setIconOpacity(SymbolLayer layer, MLRNStyleValue styleValue) {
1430
+ if (styleValue.isExpression()) {
1431
+ layer.setProperties(PropertyFactory.iconOpacity(styleValue.getExpression()));
1432
+ } else {
1433
+ layer.setProperties(PropertyFactory.iconOpacity(styleValue.getFloat(VALUE_KEY)));
1434
+ }
1435
+ }
1436
+
1437
+
1438
+ public static void setIconOpacityTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1439
+ TransitionOptions transition = styleValue.getTransition();
1440
+ if (transition != null) {
1441
+ layer.setIconOpacityTransition(transition);
1442
+ }
1443
+ }
1444
+
1445
+ public static void setIconColor(SymbolLayer layer, MLRNStyleValue styleValue) {
1446
+ if (styleValue.isExpression()) {
1447
+ layer.setProperties(PropertyFactory.iconColor(styleValue.getExpression()));
1448
+ } else {
1449
+ layer.setProperties(PropertyFactory.iconColor(styleValue.getInt(VALUE_KEY)));
1450
+ }
1451
+ }
1452
+
1453
+
1454
+ public static void setIconColorTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1455
+ TransitionOptions transition = styleValue.getTransition();
1456
+ if (transition != null) {
1457
+ layer.setIconColorTransition(transition);
1458
+ }
1459
+ }
1460
+
1461
+ public static void setIconHaloColor(SymbolLayer layer, MLRNStyleValue styleValue) {
1462
+ if (styleValue.isExpression()) {
1463
+ layer.setProperties(PropertyFactory.iconHaloColor(styleValue.getExpression()));
1464
+ } else {
1465
+ layer.setProperties(PropertyFactory.iconHaloColor(styleValue.getInt(VALUE_KEY)));
1466
+ }
1467
+ }
1468
+
1469
+
1470
+ public static void setIconHaloColorTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1471
+ TransitionOptions transition = styleValue.getTransition();
1472
+ if (transition != null) {
1473
+ layer.setIconHaloColorTransition(transition);
1474
+ }
1475
+ }
1476
+
1477
+ public static void setIconHaloWidth(SymbolLayer layer, MLRNStyleValue styleValue) {
1478
+ if (styleValue.isExpression()) {
1479
+ layer.setProperties(PropertyFactory.iconHaloWidth(styleValue.getExpression()));
1480
+ } else {
1481
+ layer.setProperties(PropertyFactory.iconHaloWidth(styleValue.getFloat(VALUE_KEY)));
1482
+ }
1483
+ }
1484
+
1485
+
1486
+ public static void setIconHaloWidthTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1487
+ TransitionOptions transition = styleValue.getTransition();
1488
+ if (transition != null) {
1489
+ layer.setIconHaloWidthTransition(transition);
1490
+ }
1491
+ }
1492
+
1493
+ public static void setIconHaloBlur(SymbolLayer layer, MLRNStyleValue styleValue) {
1494
+ if (styleValue.isExpression()) {
1495
+ layer.setProperties(PropertyFactory.iconHaloBlur(styleValue.getExpression()));
1496
+ } else {
1497
+ layer.setProperties(PropertyFactory.iconHaloBlur(styleValue.getFloat(VALUE_KEY)));
1498
+ }
1499
+ }
1500
+
1501
+
1502
+ public static void setIconHaloBlurTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1503
+ TransitionOptions transition = styleValue.getTransition();
1504
+ if (transition != null) {
1505
+ layer.setIconHaloBlurTransition(transition);
1506
+ }
1507
+ }
1508
+
1509
+ public static void setIconTranslate(SymbolLayer layer, MLRNStyleValue styleValue) {
1510
+ if (styleValue.isExpression()) {
1511
+ layer.setProperties(PropertyFactory.iconTranslate(styleValue.getExpression()));
1512
+ } else {
1513
+ layer.setProperties(PropertyFactory.iconTranslate(styleValue.getFloatArray(VALUE_KEY)));
1514
+ }
1515
+ }
1516
+
1517
+
1518
+ public static void setIconTranslateTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1519
+ TransitionOptions transition = styleValue.getTransition();
1520
+ if (transition != null) {
1521
+ layer.setIconTranslateTransition(transition);
1522
+ }
1523
+ }
1524
+
1525
+ public static void setIconTranslateAnchor(SymbolLayer layer, MLRNStyleValue styleValue) {
1526
+ if (styleValue.isExpression()) {
1527
+ layer.setProperties(PropertyFactory.iconTranslateAnchor(styleValue.getExpression()));
1528
+ } else {
1529
+ layer.setProperties(PropertyFactory.iconTranslateAnchor(styleValue.getString(VALUE_KEY)));
1530
+ }
1531
+ }
1532
+
1533
+ public static void setTextOpacity(SymbolLayer layer, MLRNStyleValue styleValue) {
1534
+ if (styleValue.isExpression()) {
1535
+ layer.setProperties(PropertyFactory.textOpacity(styleValue.getExpression()));
1536
+ } else {
1537
+ layer.setProperties(PropertyFactory.textOpacity(styleValue.getFloat(VALUE_KEY)));
1538
+ }
1539
+ }
1540
+
1541
+
1542
+ public static void setTextOpacityTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1543
+ TransitionOptions transition = styleValue.getTransition();
1544
+ if (transition != null) {
1545
+ layer.setTextOpacityTransition(transition);
1546
+ }
1547
+ }
1548
+
1549
+ public static void setTextColor(SymbolLayer layer, MLRNStyleValue styleValue) {
1550
+ if (styleValue.isExpression()) {
1551
+ layer.setProperties(PropertyFactory.textColor(styleValue.getExpression()));
1552
+ } else {
1553
+ layer.setProperties(PropertyFactory.textColor(styleValue.getInt(VALUE_KEY)));
1554
+ }
1555
+ }
1556
+
1557
+
1558
+ public static void setTextColorTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1559
+ TransitionOptions transition = styleValue.getTransition();
1560
+ if (transition != null) {
1561
+ layer.setTextColorTransition(transition);
1562
+ }
1563
+ }
1564
+
1565
+ public static void setTextHaloColor(SymbolLayer layer, MLRNStyleValue styleValue) {
1566
+ if (styleValue.isExpression()) {
1567
+ layer.setProperties(PropertyFactory.textHaloColor(styleValue.getExpression()));
1568
+ } else {
1569
+ layer.setProperties(PropertyFactory.textHaloColor(styleValue.getInt(VALUE_KEY)));
1570
+ }
1571
+ }
1572
+
1573
+
1574
+ public static void setTextHaloColorTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1575
+ TransitionOptions transition = styleValue.getTransition();
1576
+ if (transition != null) {
1577
+ layer.setTextHaloColorTransition(transition);
1578
+ }
1579
+ }
1580
+
1581
+ public static void setTextHaloWidth(SymbolLayer layer, MLRNStyleValue styleValue) {
1582
+ if (styleValue.isExpression()) {
1583
+ layer.setProperties(PropertyFactory.textHaloWidth(styleValue.getExpression()));
1584
+ } else {
1585
+ layer.setProperties(PropertyFactory.textHaloWidth(styleValue.getFloat(VALUE_KEY)));
1586
+ }
1587
+ }
1588
+
1589
+
1590
+ public static void setTextHaloWidthTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1591
+ TransitionOptions transition = styleValue.getTransition();
1592
+ if (transition != null) {
1593
+ layer.setTextHaloWidthTransition(transition);
1594
+ }
1595
+ }
1596
+
1597
+ public static void setTextHaloBlur(SymbolLayer layer, MLRNStyleValue styleValue) {
1598
+ if (styleValue.isExpression()) {
1599
+ layer.setProperties(PropertyFactory.textHaloBlur(styleValue.getExpression()));
1600
+ } else {
1601
+ layer.setProperties(PropertyFactory.textHaloBlur(styleValue.getFloat(VALUE_KEY)));
1602
+ }
1603
+ }
1604
+
1605
+
1606
+ public static void setTextHaloBlurTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1607
+ TransitionOptions transition = styleValue.getTransition();
1608
+ if (transition != null) {
1609
+ layer.setTextHaloBlurTransition(transition);
1610
+ }
1611
+ }
1612
+
1613
+ public static void setTextTranslate(SymbolLayer layer, MLRNStyleValue styleValue) {
1614
+ if (styleValue.isExpression()) {
1615
+ layer.setProperties(PropertyFactory.textTranslate(styleValue.getExpression()));
1616
+ } else {
1617
+ layer.setProperties(PropertyFactory.textTranslate(styleValue.getFloatArray(VALUE_KEY)));
1618
+ }
1619
+ }
1620
+
1621
+
1622
+ public static void setTextTranslateTransition(SymbolLayer layer, MLRNStyleValue styleValue) {
1623
+ TransitionOptions transition = styleValue.getTransition();
1624
+ if (transition != null) {
1625
+ layer.setTextTranslateTransition(transition);
1626
+ }
1627
+ }
1628
+
1629
+ public static void setTextTranslateAnchor(SymbolLayer layer, MLRNStyleValue styleValue) {
1630
+ if (styleValue.isExpression()) {
1631
+ layer.setProperties(PropertyFactory.textTranslateAnchor(styleValue.getExpression()));
1632
+ } else {
1633
+ layer.setProperties(PropertyFactory.textTranslateAnchor(styleValue.getString(VALUE_KEY)));
1634
+ }
1635
+ }
1636
+
1637
+ public static void setCircleSortKey(CircleLayer layer, MLRNStyleValue styleValue) {
1638
+ if (styleValue.isExpression()) {
1639
+ layer.setProperties(PropertyFactory.circleSortKey(styleValue.getExpression()));
1640
+ } else {
1641
+ layer.setProperties(PropertyFactory.circleSortKey(styleValue.getFloat(VALUE_KEY)));
1642
+ }
1643
+ }
1644
+
1645
+ public static void setVisibility(CircleLayer layer, MLRNStyleValue styleValue) {
1646
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
1647
+ }
1648
+
1649
+ public static void setCircleRadius(CircleLayer layer, MLRNStyleValue styleValue) {
1650
+ if (styleValue.isExpression()) {
1651
+ layer.setProperties(PropertyFactory.circleRadius(styleValue.getExpression()));
1652
+ } else {
1653
+ layer.setProperties(PropertyFactory.circleRadius(styleValue.getFloat(VALUE_KEY)));
1654
+ }
1655
+ }
1656
+
1657
+
1658
+ public static void setCircleRadiusTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1659
+ TransitionOptions transition = styleValue.getTransition();
1660
+ if (transition != null) {
1661
+ layer.setCircleRadiusTransition(transition);
1662
+ }
1663
+ }
1664
+
1665
+ public static void setCircleColor(CircleLayer layer, MLRNStyleValue styleValue) {
1666
+ if (styleValue.isExpression()) {
1667
+ layer.setProperties(PropertyFactory.circleColor(styleValue.getExpression()));
1668
+ } else {
1669
+ layer.setProperties(PropertyFactory.circleColor(styleValue.getInt(VALUE_KEY)));
1670
+ }
1671
+ }
1672
+
1673
+
1674
+ public static void setCircleColorTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1675
+ TransitionOptions transition = styleValue.getTransition();
1676
+ if (transition != null) {
1677
+ layer.setCircleColorTransition(transition);
1678
+ }
1679
+ }
1680
+
1681
+ public static void setCircleBlur(CircleLayer layer, MLRNStyleValue styleValue) {
1682
+ if (styleValue.isExpression()) {
1683
+ layer.setProperties(PropertyFactory.circleBlur(styleValue.getExpression()));
1684
+ } else {
1685
+ layer.setProperties(PropertyFactory.circleBlur(styleValue.getFloat(VALUE_KEY)));
1686
+ }
1687
+ }
1688
+
1689
+
1690
+ public static void setCircleBlurTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1691
+ TransitionOptions transition = styleValue.getTransition();
1692
+ if (transition != null) {
1693
+ layer.setCircleBlurTransition(transition);
1694
+ }
1695
+ }
1696
+
1697
+ public static void setCircleOpacity(CircleLayer layer, MLRNStyleValue styleValue) {
1698
+ if (styleValue.isExpression()) {
1699
+ layer.setProperties(PropertyFactory.circleOpacity(styleValue.getExpression()));
1700
+ } else {
1701
+ layer.setProperties(PropertyFactory.circleOpacity(styleValue.getFloat(VALUE_KEY)));
1702
+ }
1703
+ }
1704
+
1705
+
1706
+ public static void setCircleOpacityTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1707
+ TransitionOptions transition = styleValue.getTransition();
1708
+ if (transition != null) {
1709
+ layer.setCircleOpacityTransition(transition);
1710
+ }
1711
+ }
1712
+
1713
+ public static void setCircleTranslate(CircleLayer layer, MLRNStyleValue styleValue) {
1714
+ if (styleValue.isExpression()) {
1715
+ layer.setProperties(PropertyFactory.circleTranslate(styleValue.getExpression()));
1716
+ } else {
1717
+ layer.setProperties(PropertyFactory.circleTranslate(styleValue.getFloatArray(VALUE_KEY)));
1718
+ }
1719
+ }
1720
+
1721
+
1722
+ public static void setCircleTranslateTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1723
+ TransitionOptions transition = styleValue.getTransition();
1724
+ if (transition != null) {
1725
+ layer.setCircleTranslateTransition(transition);
1726
+ }
1727
+ }
1728
+
1729
+ public static void setCircleTranslateAnchor(CircleLayer layer, MLRNStyleValue styleValue) {
1730
+ if (styleValue.isExpression()) {
1731
+ layer.setProperties(PropertyFactory.circleTranslateAnchor(styleValue.getExpression()));
1732
+ } else {
1733
+ layer.setProperties(PropertyFactory.circleTranslateAnchor(styleValue.getString(VALUE_KEY)));
1734
+ }
1735
+ }
1736
+
1737
+ public static void setCirclePitchScale(CircleLayer layer, MLRNStyleValue styleValue) {
1738
+ if (styleValue.isExpression()) {
1739
+ layer.setProperties(PropertyFactory.circlePitchScale(styleValue.getExpression()));
1740
+ } else {
1741
+ layer.setProperties(PropertyFactory.circlePitchScale(styleValue.getString(VALUE_KEY)));
1742
+ }
1743
+ }
1744
+
1745
+ public static void setCirclePitchAlignment(CircleLayer layer, MLRNStyleValue styleValue) {
1746
+ if (styleValue.isExpression()) {
1747
+ layer.setProperties(PropertyFactory.circlePitchAlignment(styleValue.getExpression()));
1748
+ } else {
1749
+ layer.setProperties(PropertyFactory.circlePitchAlignment(styleValue.getString(VALUE_KEY)));
1750
+ }
1751
+ }
1752
+
1753
+ public static void setCircleStrokeWidth(CircleLayer layer, MLRNStyleValue styleValue) {
1754
+ if (styleValue.isExpression()) {
1755
+ layer.setProperties(PropertyFactory.circleStrokeWidth(styleValue.getExpression()));
1756
+ } else {
1757
+ layer.setProperties(PropertyFactory.circleStrokeWidth(styleValue.getFloat(VALUE_KEY)));
1758
+ }
1759
+ }
1760
+
1761
+
1762
+ public static void setCircleStrokeWidthTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1763
+ TransitionOptions transition = styleValue.getTransition();
1764
+ if (transition != null) {
1765
+ layer.setCircleStrokeWidthTransition(transition);
1766
+ }
1767
+ }
1768
+
1769
+ public static void setCircleStrokeColor(CircleLayer layer, MLRNStyleValue styleValue) {
1770
+ if (styleValue.isExpression()) {
1771
+ layer.setProperties(PropertyFactory.circleStrokeColor(styleValue.getExpression()));
1772
+ } else {
1773
+ layer.setProperties(PropertyFactory.circleStrokeColor(styleValue.getInt(VALUE_KEY)));
1774
+ }
1775
+ }
1776
+
1777
+
1778
+ public static void setCircleStrokeColorTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1779
+ TransitionOptions transition = styleValue.getTransition();
1780
+ if (transition != null) {
1781
+ layer.setCircleStrokeColorTransition(transition);
1782
+ }
1783
+ }
1784
+
1785
+ public static void setCircleStrokeOpacity(CircleLayer layer, MLRNStyleValue styleValue) {
1786
+ if (styleValue.isExpression()) {
1787
+ layer.setProperties(PropertyFactory.circleStrokeOpacity(styleValue.getExpression()));
1788
+ } else {
1789
+ layer.setProperties(PropertyFactory.circleStrokeOpacity(styleValue.getFloat(VALUE_KEY)));
1790
+ }
1791
+ }
1792
+
1793
+
1794
+ public static void setCircleStrokeOpacityTransition(CircleLayer layer, MLRNStyleValue styleValue) {
1795
+ TransitionOptions transition = styleValue.getTransition();
1796
+ if (transition != null) {
1797
+ layer.setCircleStrokeOpacityTransition(transition);
1798
+ }
1799
+ }
1800
+
1801
+ public static void setVisibility(HeatmapLayer layer, MLRNStyleValue styleValue) {
1802
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
1803
+ }
1804
+
1805
+ public static void setHeatmapRadius(HeatmapLayer layer, MLRNStyleValue styleValue) {
1806
+ if (styleValue.isExpression()) {
1807
+ layer.setProperties(PropertyFactory.heatmapRadius(styleValue.getExpression()));
1808
+ } else {
1809
+ layer.setProperties(PropertyFactory.heatmapRadius(styleValue.getFloat(VALUE_KEY)));
1810
+ }
1811
+ }
1812
+
1813
+
1814
+ public static void setHeatmapRadiusTransition(HeatmapLayer layer, MLRNStyleValue styleValue) {
1815
+ TransitionOptions transition = styleValue.getTransition();
1816
+ if (transition != null) {
1817
+ layer.setHeatmapRadiusTransition(transition);
1818
+ }
1819
+ }
1820
+
1821
+ public static void setHeatmapWeight(HeatmapLayer layer, MLRNStyleValue styleValue) {
1822
+ if (styleValue.isExpression()) {
1823
+ layer.setProperties(PropertyFactory.heatmapWeight(styleValue.getExpression()));
1824
+ } else {
1825
+ layer.setProperties(PropertyFactory.heatmapWeight(styleValue.getFloat(VALUE_KEY)));
1826
+ }
1827
+ }
1828
+
1829
+ public static void setHeatmapIntensity(HeatmapLayer layer, MLRNStyleValue styleValue) {
1830
+ if (styleValue.isExpression()) {
1831
+ layer.setProperties(PropertyFactory.heatmapIntensity(styleValue.getExpression()));
1832
+ } else {
1833
+ layer.setProperties(PropertyFactory.heatmapIntensity(styleValue.getFloat(VALUE_KEY)));
1834
+ }
1835
+ }
1836
+
1837
+
1838
+ public static void setHeatmapIntensityTransition(HeatmapLayer layer, MLRNStyleValue styleValue) {
1839
+ TransitionOptions transition = styleValue.getTransition();
1840
+ if (transition != null) {
1841
+ layer.setHeatmapIntensityTransition(transition);
1842
+ }
1843
+ }
1844
+
1845
+ public static void setHeatmapColor(HeatmapLayer layer, MLRNStyleValue styleValue) {
1846
+ if (styleValue.isExpression()) {
1847
+ layer.setProperties(PropertyFactory.heatmapColor(styleValue.getExpression()));
1848
+ } else {
1849
+ layer.setProperties(PropertyFactory.heatmapColor(styleValue.getInt(VALUE_KEY)));
1850
+ }
1851
+ }
1852
+
1853
+ public static void setHeatmapOpacity(HeatmapLayer layer, MLRNStyleValue styleValue) {
1854
+ if (styleValue.isExpression()) {
1855
+ layer.setProperties(PropertyFactory.heatmapOpacity(styleValue.getExpression()));
1856
+ } else {
1857
+ layer.setProperties(PropertyFactory.heatmapOpacity(styleValue.getFloat(VALUE_KEY)));
1858
+ }
1859
+ }
1860
+
1861
+
1862
+ public static void setHeatmapOpacityTransition(HeatmapLayer layer, MLRNStyleValue styleValue) {
1863
+ TransitionOptions transition = styleValue.getTransition();
1864
+ if (transition != null) {
1865
+ layer.setHeatmapOpacityTransition(transition);
1866
+ }
1867
+ }
1868
+
1869
+ public static void setVisibility(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1870
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
1871
+ }
1872
+
1873
+ public static void setFillExtrusionOpacity(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1874
+ if (styleValue.isExpression()) {
1875
+ layer.setProperties(PropertyFactory.fillExtrusionOpacity(styleValue.getExpression()));
1876
+ } else {
1877
+ layer.setProperties(PropertyFactory.fillExtrusionOpacity(styleValue.getFloat(VALUE_KEY)));
1878
+ }
1879
+ }
1880
+
1881
+
1882
+ public static void setFillExtrusionOpacityTransition(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1883
+ TransitionOptions transition = styleValue.getTransition();
1884
+ if (transition != null) {
1885
+ layer.setFillExtrusionOpacityTransition(transition);
1886
+ }
1887
+ }
1888
+
1889
+ public static void setFillExtrusionColor(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1890
+ if (styleValue.isExpression()) {
1891
+ layer.setProperties(PropertyFactory.fillExtrusionColor(styleValue.getExpression()));
1892
+ } else {
1893
+ layer.setProperties(PropertyFactory.fillExtrusionColor(styleValue.getInt(VALUE_KEY)));
1894
+ }
1895
+ }
1896
+
1897
+
1898
+ public static void setFillExtrusionColorTransition(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1899
+ TransitionOptions transition = styleValue.getTransition();
1900
+ if (transition != null) {
1901
+ layer.setFillExtrusionColorTransition(transition);
1902
+ }
1903
+ }
1904
+
1905
+ public static void setFillExtrusionTranslate(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1906
+ if (styleValue.isExpression()) {
1907
+ layer.setProperties(PropertyFactory.fillExtrusionTranslate(styleValue.getExpression()));
1908
+ } else {
1909
+ layer.setProperties(PropertyFactory.fillExtrusionTranslate(styleValue.getFloatArray(VALUE_KEY)));
1910
+ }
1911
+ }
1912
+
1913
+
1914
+ public static void setFillExtrusionTranslateTransition(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1915
+ TransitionOptions transition = styleValue.getTransition();
1916
+ if (transition != null) {
1917
+ layer.setFillExtrusionTranslateTransition(transition);
1918
+ }
1919
+ }
1920
+
1921
+ public static void setFillExtrusionTranslateAnchor(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1922
+ if (styleValue.isExpression()) {
1923
+ layer.setProperties(PropertyFactory.fillExtrusionTranslateAnchor(styleValue.getExpression()));
1924
+ } else {
1925
+ layer.setProperties(PropertyFactory.fillExtrusionTranslateAnchor(styleValue.getString(VALUE_KEY)));
1926
+ }
1927
+ }
1928
+
1929
+ public static void setFillExtrusionPattern(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1930
+ if (styleValue.isExpression()) {
1931
+ if (styleValue.isImageStringValue()) {
1932
+ layer.setProperties(PropertyFactory.fillExtrusionPattern(styleValue.getImageStringValue()));
1933
+ } else {
1934
+ layer.setProperties(PropertyFactory.fillExtrusionPattern(styleValue.getExpression()));
1935
+ }
1936
+ } else {
1937
+ layer.setProperties(PropertyFactory.fillExtrusionPattern(styleValue.getImageURI()));
1938
+ }
1939
+ }
1940
+
1941
+
1942
+ public static void setFillExtrusionPatternTransition(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1943
+ TransitionOptions transition = styleValue.getTransition();
1944
+ if (transition != null) {
1945
+ layer.setFillExtrusionPatternTransition(transition);
1946
+ }
1947
+ }
1948
+
1949
+ public static void setFillExtrusionHeight(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1950
+ if (styleValue.isExpression()) {
1951
+ layer.setProperties(PropertyFactory.fillExtrusionHeight(styleValue.getExpression()));
1952
+ } else {
1953
+ layer.setProperties(PropertyFactory.fillExtrusionHeight(styleValue.getFloat(VALUE_KEY)));
1954
+ }
1955
+ }
1956
+
1957
+
1958
+ public static void setFillExtrusionHeightTransition(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1959
+ TransitionOptions transition = styleValue.getTransition();
1960
+ if (transition != null) {
1961
+ layer.setFillExtrusionHeightTransition(transition);
1962
+ }
1963
+ }
1964
+
1965
+ public static void setFillExtrusionBase(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1966
+ if (styleValue.isExpression()) {
1967
+ layer.setProperties(PropertyFactory.fillExtrusionBase(styleValue.getExpression()));
1968
+ } else {
1969
+ layer.setProperties(PropertyFactory.fillExtrusionBase(styleValue.getFloat(VALUE_KEY)));
1970
+ }
1971
+ }
1972
+
1973
+
1974
+ public static void setFillExtrusionBaseTransition(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1975
+ TransitionOptions transition = styleValue.getTransition();
1976
+ if (transition != null) {
1977
+ layer.setFillExtrusionBaseTransition(transition);
1978
+ }
1979
+ }
1980
+
1981
+ public static void setFillExtrusionVerticalGradient(FillExtrusionLayer layer, MLRNStyleValue styleValue) {
1982
+ if (styleValue.isExpression()) {
1983
+ layer.setProperties(PropertyFactory.fillExtrusionVerticalGradient(styleValue.getExpression()));
1984
+ } else {
1985
+ layer.setProperties(PropertyFactory.fillExtrusionVerticalGradient(styleValue.getBoolean(VALUE_KEY)));
1986
+ }
1987
+ }
1988
+
1989
+ public static void setVisibility(RasterLayer layer, MLRNStyleValue styleValue) {
1990
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
1991
+ }
1992
+
1993
+ public static void setRasterOpacity(RasterLayer layer, MLRNStyleValue styleValue) {
1994
+ if (styleValue.isExpression()) {
1995
+ layer.setProperties(PropertyFactory.rasterOpacity(styleValue.getExpression()));
1996
+ } else {
1997
+ layer.setProperties(PropertyFactory.rasterOpacity(styleValue.getFloat(VALUE_KEY)));
1998
+ }
1999
+ }
2000
+
2001
+
2002
+ public static void setRasterOpacityTransition(RasterLayer layer, MLRNStyleValue styleValue) {
2003
+ TransitionOptions transition = styleValue.getTransition();
2004
+ if (transition != null) {
2005
+ layer.setRasterOpacityTransition(transition);
2006
+ }
2007
+ }
2008
+
2009
+ public static void setRasterHueRotate(RasterLayer layer, MLRNStyleValue styleValue) {
2010
+ if (styleValue.isExpression()) {
2011
+ layer.setProperties(PropertyFactory.rasterHueRotate(styleValue.getExpression()));
2012
+ } else {
2013
+ layer.setProperties(PropertyFactory.rasterHueRotate(styleValue.getFloat(VALUE_KEY)));
2014
+ }
2015
+ }
2016
+
2017
+
2018
+ public static void setRasterHueRotateTransition(RasterLayer layer, MLRNStyleValue styleValue) {
2019
+ TransitionOptions transition = styleValue.getTransition();
2020
+ if (transition != null) {
2021
+ layer.setRasterHueRotateTransition(transition);
2022
+ }
2023
+ }
2024
+
2025
+ public static void setRasterBrightnessMin(RasterLayer layer, MLRNStyleValue styleValue) {
2026
+ if (styleValue.isExpression()) {
2027
+ layer.setProperties(PropertyFactory.rasterBrightnessMin(styleValue.getExpression()));
2028
+ } else {
2029
+ layer.setProperties(PropertyFactory.rasterBrightnessMin(styleValue.getFloat(VALUE_KEY)));
2030
+ }
2031
+ }
2032
+
2033
+
2034
+ public static void setRasterBrightnessMinTransition(RasterLayer layer, MLRNStyleValue styleValue) {
2035
+ TransitionOptions transition = styleValue.getTransition();
2036
+ if (transition != null) {
2037
+ layer.setRasterBrightnessMinTransition(transition);
2038
+ }
2039
+ }
2040
+
2041
+ public static void setRasterBrightnessMax(RasterLayer layer, MLRNStyleValue styleValue) {
2042
+ if (styleValue.isExpression()) {
2043
+ layer.setProperties(PropertyFactory.rasterBrightnessMax(styleValue.getExpression()));
2044
+ } else {
2045
+ layer.setProperties(PropertyFactory.rasterBrightnessMax(styleValue.getFloat(VALUE_KEY)));
2046
+ }
2047
+ }
2048
+
2049
+
2050
+ public static void setRasterBrightnessMaxTransition(RasterLayer layer, MLRNStyleValue styleValue) {
2051
+ TransitionOptions transition = styleValue.getTransition();
2052
+ if (transition != null) {
2053
+ layer.setRasterBrightnessMaxTransition(transition);
2054
+ }
2055
+ }
2056
+
2057
+ public static void setRasterSaturation(RasterLayer layer, MLRNStyleValue styleValue) {
2058
+ if (styleValue.isExpression()) {
2059
+ layer.setProperties(PropertyFactory.rasterSaturation(styleValue.getExpression()));
2060
+ } else {
2061
+ layer.setProperties(PropertyFactory.rasterSaturation(styleValue.getFloat(VALUE_KEY)));
2062
+ }
2063
+ }
2064
+
2065
+
2066
+ public static void setRasterSaturationTransition(RasterLayer layer, MLRNStyleValue styleValue) {
2067
+ TransitionOptions transition = styleValue.getTransition();
2068
+ if (transition != null) {
2069
+ layer.setRasterSaturationTransition(transition);
2070
+ }
2071
+ }
2072
+
2073
+ public static void setRasterContrast(RasterLayer layer, MLRNStyleValue styleValue) {
2074
+ if (styleValue.isExpression()) {
2075
+ layer.setProperties(PropertyFactory.rasterContrast(styleValue.getExpression()));
2076
+ } else {
2077
+ layer.setProperties(PropertyFactory.rasterContrast(styleValue.getFloat(VALUE_KEY)));
2078
+ }
2079
+ }
2080
+
2081
+
2082
+ public static void setRasterContrastTransition(RasterLayer layer, MLRNStyleValue styleValue) {
2083
+ TransitionOptions transition = styleValue.getTransition();
2084
+ if (transition != null) {
2085
+ layer.setRasterContrastTransition(transition);
2086
+ }
2087
+ }
2088
+
2089
+ public static void setRasterResampling(RasterLayer layer, MLRNStyleValue styleValue) {
2090
+ if (styleValue.isExpression()) {
2091
+ layer.setProperties(PropertyFactory.rasterResampling(styleValue.getExpression()));
2092
+ } else {
2093
+ layer.setProperties(PropertyFactory.rasterResampling(styleValue.getString(VALUE_KEY)));
2094
+ }
2095
+ }
2096
+
2097
+ public static void setRasterFadeDuration(RasterLayer layer, MLRNStyleValue styleValue) {
2098
+ if (styleValue.isExpression()) {
2099
+ layer.setProperties(PropertyFactory.rasterFadeDuration(styleValue.getExpression()));
2100
+ } else {
2101
+ layer.setProperties(PropertyFactory.rasterFadeDuration(styleValue.getFloat(VALUE_KEY)));
2102
+ }
2103
+ }
2104
+
2105
+ public static void setVisibility(HillshadeLayer layer, MLRNStyleValue styleValue) {
2106
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
2107
+ }
2108
+
2109
+ public static void setHillshadeIlluminationDirection(HillshadeLayer layer, MLRNStyleValue styleValue) {
2110
+ if (styleValue.isExpression()) {
2111
+ layer.setProperties(PropertyFactory.hillshadeIlluminationDirection(styleValue.getExpression()));
2112
+ } else {
2113
+ layer.setProperties(PropertyFactory.hillshadeIlluminationDirection(styleValue.getFloat(VALUE_KEY)));
2114
+ }
2115
+ }
2116
+
2117
+ public static void setHillshadeIlluminationAnchor(HillshadeLayer layer, MLRNStyleValue styleValue) {
2118
+ if (styleValue.isExpression()) {
2119
+ layer.setProperties(PropertyFactory.hillshadeIlluminationAnchor(styleValue.getExpression()));
2120
+ } else {
2121
+ layer.setProperties(PropertyFactory.hillshadeIlluminationAnchor(styleValue.getString(VALUE_KEY)));
2122
+ }
2123
+ }
2124
+
2125
+ public static void setHillshadeExaggeration(HillshadeLayer layer, MLRNStyleValue styleValue) {
2126
+ if (styleValue.isExpression()) {
2127
+ layer.setProperties(PropertyFactory.hillshadeExaggeration(styleValue.getExpression()));
2128
+ } else {
2129
+ layer.setProperties(PropertyFactory.hillshadeExaggeration(styleValue.getFloat(VALUE_KEY)));
2130
+ }
2131
+ }
2132
+
2133
+
2134
+ public static void setHillshadeExaggerationTransition(HillshadeLayer layer, MLRNStyleValue styleValue) {
2135
+ TransitionOptions transition = styleValue.getTransition();
2136
+ if (transition != null) {
2137
+ layer.setHillshadeExaggerationTransition(transition);
2138
+ }
2139
+ }
2140
+
2141
+ public static void setHillshadeShadowColor(HillshadeLayer layer, MLRNStyleValue styleValue) {
2142
+ if (styleValue.isExpression()) {
2143
+ layer.setProperties(PropertyFactory.hillshadeShadowColor(styleValue.getExpression()));
2144
+ } else {
2145
+ layer.setProperties(PropertyFactory.hillshadeShadowColor(styleValue.getInt(VALUE_KEY)));
2146
+ }
2147
+ }
2148
+
2149
+
2150
+ public static void setHillshadeShadowColorTransition(HillshadeLayer layer, MLRNStyleValue styleValue) {
2151
+ TransitionOptions transition = styleValue.getTransition();
2152
+ if (transition != null) {
2153
+ layer.setHillshadeShadowColorTransition(transition);
2154
+ }
2155
+ }
2156
+
2157
+ public static void setHillshadeHighlightColor(HillshadeLayer layer, MLRNStyleValue styleValue) {
2158
+ if (styleValue.isExpression()) {
2159
+ layer.setProperties(PropertyFactory.hillshadeHighlightColor(styleValue.getExpression()));
2160
+ } else {
2161
+ layer.setProperties(PropertyFactory.hillshadeHighlightColor(styleValue.getInt(VALUE_KEY)));
2162
+ }
2163
+ }
2164
+
2165
+
2166
+ public static void setHillshadeHighlightColorTransition(HillshadeLayer layer, MLRNStyleValue styleValue) {
2167
+ TransitionOptions transition = styleValue.getTransition();
2168
+ if (transition != null) {
2169
+ layer.setHillshadeHighlightColorTransition(transition);
2170
+ }
2171
+ }
2172
+
2173
+ public static void setHillshadeAccentColor(HillshadeLayer layer, MLRNStyleValue styleValue) {
2174
+ if (styleValue.isExpression()) {
2175
+ layer.setProperties(PropertyFactory.hillshadeAccentColor(styleValue.getExpression()));
2176
+ } else {
2177
+ layer.setProperties(PropertyFactory.hillshadeAccentColor(styleValue.getInt(VALUE_KEY)));
2178
+ }
2179
+ }
2180
+
2181
+
2182
+ public static void setHillshadeAccentColorTransition(HillshadeLayer layer, MLRNStyleValue styleValue) {
2183
+ TransitionOptions transition = styleValue.getTransition();
2184
+ if (transition != null) {
2185
+ layer.setHillshadeAccentColorTransition(transition);
2186
+ }
2187
+ }
2188
+
2189
+ public static void setVisibility(BackgroundLayer layer, MLRNStyleValue styleValue) {
2190
+ layer.setProperties(PropertyFactory.visibility(styleValue.getString(VALUE_KEY)));
2191
+ }
2192
+
2193
+ public static void setBackgroundColor(BackgroundLayer layer, MLRNStyleValue styleValue) {
2194
+ if (styleValue.isExpression()) {
2195
+ layer.setProperties(PropertyFactory.backgroundColor(styleValue.getExpression()));
2196
+ } else {
2197
+ layer.setProperties(PropertyFactory.backgroundColor(styleValue.getInt(VALUE_KEY)));
2198
+ }
2199
+ }
2200
+
2201
+
2202
+ public static void setBackgroundColorTransition(BackgroundLayer layer, MLRNStyleValue styleValue) {
2203
+ TransitionOptions transition = styleValue.getTransition();
2204
+ if (transition != null) {
2205
+ layer.setBackgroundColorTransition(transition);
2206
+ }
2207
+ }
2208
+
2209
+ public static void setBackgroundPattern(BackgroundLayer layer, MLRNStyleValue styleValue) {
2210
+ if (styleValue.isExpression()) {
2211
+ if (styleValue.isImageStringValue()) {
2212
+ layer.setProperties(PropertyFactory.backgroundPattern(styleValue.getImageStringValue()));
2213
+ } else {
2214
+ layer.setProperties(PropertyFactory.backgroundPattern(styleValue.getExpression()));
2215
+ }
2216
+ } else {
2217
+ layer.setProperties(PropertyFactory.backgroundPattern(styleValue.getImageURI()));
2218
+ }
2219
+ }
2220
+
2221
+
2222
+ public static void setBackgroundPatternTransition(BackgroundLayer layer, MLRNStyleValue styleValue) {
2223
+ TransitionOptions transition = styleValue.getTransition();
2224
+ if (transition != null) {
2225
+ layer.setBackgroundPatternTransition(transition);
2226
+ }
2227
+ }
2228
+
2229
+ public static void setBackgroundOpacity(BackgroundLayer layer, MLRNStyleValue styleValue) {
2230
+ if (styleValue.isExpression()) {
2231
+ layer.setProperties(PropertyFactory.backgroundOpacity(styleValue.getExpression()));
2232
+ } else {
2233
+ layer.setProperties(PropertyFactory.backgroundOpacity(styleValue.getFloat(VALUE_KEY)));
2234
+ }
2235
+ }
2236
+
2237
+
2238
+ public static void setBackgroundOpacityTransition(BackgroundLayer layer, MLRNStyleValue styleValue) {
2239
+ TransitionOptions transition = styleValue.getTransition();
2240
+ if (transition != null) {
2241
+ layer.setBackgroundOpacityTransition(transition);
2242
+ }
2243
+ }
2244
+
2245
+ public static void setAnchor(Light layer, MLRNStyleValue styleValue) {
2246
+ layer.setAnchor(styleValue.getString(VALUE_KEY));
2247
+ }
2248
+
2249
+ public static void setPosition(Light layer, MLRNStyleValue styleValue) {
2250
+ Float[] values = styleValue.getFloatArray(VALUE_KEY);
2251
+ layer.setPosition(Position.fromPosition(values[0], values[1], values[2]));
2252
+ }
2253
+
2254
+
2255
+ public static void setPositionTransition(Light layer, MLRNStyleValue styleValue) {
2256
+ TransitionOptions transition = styleValue.getTransition();
2257
+ if (transition != null) {
2258
+ layer.setPositionTransition(transition);
2259
+ }
2260
+ }
2261
+
2262
+ public static void setColor(Light layer, MLRNStyleValue styleValue) {
2263
+ layer.setColor(styleValue.getInt(VALUE_KEY));
2264
+ }
2265
+
2266
+
2267
+ public static void setColorTransition(Light layer, MLRNStyleValue styleValue) {
2268
+ TransitionOptions transition = styleValue.getTransition();
2269
+ if (transition != null) {
2270
+ layer.setColorTransition(transition);
2271
+ }
2272
+ }
2273
+
2274
+ public static void setIntensity(Light layer, MLRNStyleValue styleValue) {
2275
+ layer.setIntensity(styleValue.getFloat(VALUE_KEY));
2276
+ }
2277
+
2278
+
2279
+ public static void setIntensityTransition(Light layer, MLRNStyleValue styleValue) {
2280
+ TransitionOptions transition = styleValue.getTransition();
2281
+ if (transition != null) {
2282
+ layer.setIntensityTransition(transition);
2283
+ }
2284
+ }
2285
+
2286
+ }