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

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