@maplibre/maplibre-react-native 11.0.0-beta.3 → 11.0.0-beta.30

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 (731) hide show
  1. package/MapLibreReactNative.podspec +1 -1
  2. package/android/build.gradle +3 -1
  3. package/android/gradle.properties +2 -2
  4. package/android/src/main/java/org/maplibre/reactnative/MLRNPackage.kt +14 -1
  5. package/android/src/main/java/org/maplibre/reactnative/components/annotations/markerview/MLRNMarkerView.kt +35 -28
  6. package/android/src/main/java/org/maplibre/reactnative/components/annotations/markerview/MLRNMarkerViewContent.kt +9 -14
  7. package/android/src/main/java/org/maplibre/reactnative/components/annotations/markerview/MLRNMarkerViewManager.kt +8 -1
  8. package/android/src/main/java/org/maplibre/reactnative/components/annotations/markerview/MarkerViewManager.kt +20 -13
  9. package/android/src/main/java/org/maplibre/reactnative/components/annotations/pointannotation/MLRNPointAnnotation.kt +45 -25
  10. package/android/src/main/java/org/maplibre/reactnative/components/annotations/pointannotation/MLRNPointAnnotationManager.kt +2 -1
  11. package/android/src/main/java/org/maplibre/reactnative/components/layer/style/MLRNStyleFactory.java +4 -4
  12. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.kt +236 -123
  13. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.kt +37 -3
  14. package/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewModule.kt +3 -1
  15. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNLogModule.kt +2 -0
  16. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNNetworkModule.kt +0 -42
  17. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.kt +27 -4
  18. package/android/src/main/java/org/maplibre/reactnative/modules/MLRNTransformRequestModule.kt +144 -0
  19. package/android/src/main/java/org/maplibre/reactnative/modules/TransformRequestInterceptor.kt +184 -0
  20. package/ios/components/annotations/point-annotation/MLRNPointAnnotation.h +3 -2
  21. package/ios/components/annotations/point-annotation/MLRNPointAnnotation.m +65 -2
  22. package/ios/components/annotations/point-annotation/MLRNPointAnnotationComponentView.mm +27 -19
  23. package/ios/components/camera/MLRNCameraComponentView.mm +5 -4
  24. package/ios/components/images/MLRNImageLoader.h +27 -0
  25. package/ios/components/images/MLRNImageLoader.m +85 -0
  26. package/ios/components/images/MLRNImageQueue.h +2 -2
  27. package/ios/components/images/MLRNImageQueue.m +2 -2
  28. package/ios/components/images/MLRNImageQueueOperation.h +2 -2
  29. package/ios/components/images/MLRNImageQueueOperation.m +3 -3
  30. package/ios/components/images/MLRNImages.h +0 -3
  31. package/ios/components/images/MLRNImages.m +6 -6
  32. package/ios/components/images/MLRNImagesComponentView.mm +0 -3
  33. package/ios/components/images/MLRNImagesModule.h +6 -0
  34. package/ios/components/images/MLRNImagesModule.mm +23 -0
  35. package/ios/components/layer/MLRNLayer.h +0 -3
  36. package/ios/components/layer/MLRNLayer.m +0 -1
  37. package/ios/components/layer/MLRNLayerComponentView.mm +12 -11
  38. package/ios/components/layer/style/MLRNStyle.h +1 -3
  39. package/ios/components/layer/style/MLRNStyle.m +68 -71
  40. package/ios/components/map-view/MLRNMapView.h +8 -1
  41. package/ios/components/map-view/MLRNMapView.m +106 -24
  42. package/ios/components/map-view/MLRNMapViewComponentView.mm +29 -5
  43. package/ios/components/map-view/MLRNMapViewModule.mm +1 -1
  44. package/ios/components/sources/geojson-source/MLRNGeoJSONSource.h +0 -3
  45. package/ios/components/sources/image-source/MLRNImageSourceComponentView.mm +1 -1
  46. package/ios/components/sources/tile-sources/raster-source/MLRNRasterSourceComponentView.mm +2 -3
  47. package/ios/components/sources/tile-sources/vector-source/MLRNVectorSourceComponentView.mm +2 -3
  48. package/ios/modules/logging/MLRNLogging.h +4 -0
  49. package/ios/modules/logging/MLRNLogging.m +8 -0
  50. package/ios/modules/network/MLRNNetworkModule.mm +0 -10
  51. package/ios/modules/offline/MLRNOfflineModule.h +1 -2
  52. package/ios/modules/offline/MLRNOfflineModule.mm +9 -9
  53. package/ios/modules/transform-request/MLRNTransformRequest.h +38 -0
  54. package/ios/modules/transform-request/MLRNTransformRequest.m +413 -0
  55. package/ios/modules/transform-request/MLRNTransformRequestModule.h +9 -0
  56. package/ios/modules/transform-request/MLRNTransformRequestModule.mm +72 -0
  57. package/ios/utils/MLRNUtils.h +0 -14
  58. package/ios/utils/MLRNUtils.m +0 -71
  59. package/lib/commonjs/components/annotations/callout/Callout.js +2 -1
  60. package/lib/commonjs/components/annotations/callout/Callout.js.map +1 -1
  61. package/lib/commonjs/components/annotations/marker/Marker.js +21 -3
  62. package/lib/commonjs/components/annotations/marker/Marker.js.map +1 -1
  63. package/lib/commonjs/components/annotations/marker/MarkerViewNativeComponent.ts +12 -2
  64. package/lib/commonjs/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +5 -4
  65. package/lib/commonjs/components/annotations/view-annotation/ViewAnnotation.js +25 -19
  66. package/lib/commonjs/components/annotations/view-annotation/ViewAnnotation.js.map +1 -1
  67. package/lib/commonjs/components/camera/Camera.js +52 -3
  68. package/lib/commonjs/components/camera/Camera.js.map +1 -1
  69. package/lib/commonjs/components/images/Images.js +12 -2
  70. package/lib/commonjs/components/images/Images.js.map +1 -1
  71. package/lib/commonjs/components/images/NativeImagesModule.js +10 -0
  72. package/lib/commonjs/components/images/NativeImagesModule.js.map +1 -0
  73. package/lib/commonjs/components/layer/Layer.js +35 -70
  74. package/lib/commonjs/components/layer/Layer.js.map +1 -1
  75. package/lib/commonjs/components/map/AndroidTextureMapViewNativeComponent.ts +7 -2
  76. package/lib/commonjs/components/map/Map.js +29 -4
  77. package/lib/commonjs/components/map/Map.js.map +1 -1
  78. package/lib/commonjs/components/map/MapViewNativeComponent.ts +6 -1
  79. package/lib/commonjs/components/sources/geojson-source/GeoJSONSource.js +6 -5
  80. package/lib/commonjs/components/sources/geojson-source/GeoJSONSource.js.map +1 -1
  81. package/lib/commonjs/components/sources/image-source/ImageSource.js +3 -2
  82. package/lib/commonjs/components/sources/image-source/ImageSource.js.map +1 -1
  83. package/lib/commonjs/components/sources/raster-source/RasterSource.js +4 -3
  84. package/lib/commonjs/components/sources/raster-source/RasterSource.js.map +1 -1
  85. package/lib/commonjs/components/sources/vector-source/VectorSource.js +8 -5
  86. package/lib/commonjs/components/sources/vector-source/VectorSource.js.map +1 -1
  87. package/lib/commonjs/components/user-location/NativeUserLocation.js.map +1 -1
  88. package/lib/commonjs/components/user-location/UserLocation.js +21 -12
  89. package/lib/commonjs/components/user-location/UserLocation.js.map +1 -1
  90. package/lib/commonjs/components/user-location/UserLocationPuck.js +16 -16
  91. package/lib/commonjs/components/user-location/UserLocationPuck.js.map +1 -1
  92. package/lib/commonjs/components/user-location/UserLocationPuckHeading.js +8 -10
  93. package/lib/commonjs/components/user-location/UserLocationPuckHeading.js.map +1 -1
  94. package/lib/commonjs/index.js +7 -0
  95. package/lib/commonjs/index.js.map +1 -1
  96. package/lib/commonjs/modules/log/LogManager.js +5 -4
  97. package/lib/commonjs/modules/log/LogManager.js.map +1 -1
  98. package/lib/commonjs/modules/network/NativeNetworkModule.js.map +1 -1
  99. package/lib/commonjs/modules/network/NetworkManager.js +6 -44
  100. package/lib/commonjs/modules/network/NetworkManager.js.map +1 -1
  101. package/lib/commonjs/modules/offline/OfflineManager.js +109 -62
  102. package/lib/commonjs/modules/offline/OfflineManager.js.map +1 -1
  103. package/lib/commonjs/modules/static-map/StaticMapManager.js +13 -5
  104. package/lib/commonjs/modules/static-map/StaticMapManager.js.map +1 -1
  105. package/lib/commonjs/modules/transform-request/NativeTransformRequestModule.js +9 -0
  106. package/lib/commonjs/modules/transform-request/NativeTransformRequestModule.js.map +1 -0
  107. package/lib/commonjs/modules/transform-request/TransformRequestManager.js +233 -0
  108. package/lib/commonjs/modules/transform-request/TransformRequestManager.js.map +1 -0
  109. package/lib/commonjs/plugin/ios.js +28 -15
  110. package/lib/commonjs/plugin/ios.js.map +1 -1
  111. package/lib/commonjs/types/Anchor.js +5 -6
  112. package/lib/commonjs/types/Anchor.js.map +1 -1
  113. package/lib/commonjs/types/PressableSourceProps.js.map +1 -0
  114. package/lib/commonjs/utils/animated/AbstractAnimatedCoordinates.js +2 -2
  115. package/lib/commonjs/utils/animated/AnimatedCoordinatesArray.js +6 -6
  116. package/lib/commonjs/utils/animated/AnimatedGeoJSON.js +2 -1
  117. package/lib/commonjs/utils/animated/AnimatedGeoJSON.js.map +1 -1
  118. package/lib/commonjs/utils/animated/AnimatedRouteCoordinatesArray.js +6 -6
  119. package/lib/commonjs/utils/convertStyleSpec.js +4 -4
  120. package/lib/commonjs/utils/getStylePropertyType.js +1 -1
  121. package/lib/module/components/annotations/callout/Callout.js +2 -1
  122. package/lib/module/components/annotations/callout/Callout.js.map +1 -1
  123. package/lib/module/components/annotations/marker/Marker.js +22 -4
  124. package/lib/module/components/annotations/marker/Marker.js.map +1 -1
  125. package/lib/module/components/annotations/marker/MarkerViewNativeComponent.ts +12 -2
  126. package/lib/module/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +5 -4
  127. package/lib/module/components/annotations/view-annotation/ViewAnnotation.js +25 -20
  128. package/lib/module/components/annotations/view-annotation/ViewAnnotation.js.map +1 -1
  129. package/lib/module/components/camera/Camera.js +53 -4
  130. package/lib/module/components/camera/Camera.js.map +1 -1
  131. package/lib/module/components/images/Images.js +12 -2
  132. package/lib/module/components/images/Images.js.map +1 -1
  133. package/lib/module/components/images/NativeImagesModule.js +7 -0
  134. package/lib/module/components/images/NativeImagesModule.js.map +1 -0
  135. package/lib/module/components/layer/Layer.js +35 -70
  136. package/lib/module/components/layer/Layer.js.map +1 -1
  137. package/lib/module/components/map/AndroidTextureMapViewNativeComponent.ts +7 -2
  138. package/lib/module/components/map/Map.js +30 -5
  139. package/lib/module/components/map/Map.js.map +1 -1
  140. package/lib/module/components/map/MapViewNativeComponent.ts +6 -1
  141. package/lib/module/components/sources/geojson-source/GeoJSONSource.js +7 -6
  142. package/lib/module/components/sources/geojson-source/GeoJSONSource.js.map +1 -1
  143. package/lib/module/components/sources/image-source/ImageSource.js +3 -2
  144. package/lib/module/components/sources/image-source/ImageSource.js.map +1 -1
  145. package/lib/module/components/sources/raster-source/RasterSource.js +4 -3
  146. package/lib/module/components/sources/raster-source/RasterSource.js.map +1 -1
  147. package/lib/module/components/sources/vector-source/VectorSource.js +9 -6
  148. package/lib/module/components/sources/vector-source/VectorSource.js.map +1 -1
  149. package/lib/module/components/user-location/NativeUserLocation.js.map +1 -1
  150. package/lib/module/components/user-location/UserLocation.js +21 -13
  151. package/lib/module/components/user-location/UserLocation.js.map +1 -1
  152. package/lib/module/components/user-location/UserLocationPuck.js +16 -16
  153. package/lib/module/components/user-location/UserLocationPuck.js.map +1 -1
  154. package/lib/module/components/user-location/UserLocationPuckHeading.js +8 -9
  155. package/lib/module/components/user-location/UserLocationPuckHeading.js.map +1 -1
  156. package/lib/module/index.js +1 -0
  157. package/lib/module/index.js.map +1 -1
  158. package/lib/module/modules/log/LogManager.js +5 -4
  159. package/lib/module/modules/log/LogManager.js.map +1 -1
  160. package/lib/module/modules/network/NativeNetworkModule.js.map +1 -1
  161. package/lib/module/modules/network/NetworkManager.js +6 -44
  162. package/lib/module/modules/network/NetworkManager.js.map +1 -1
  163. package/lib/module/modules/offline/OfflineManager.js +109 -62
  164. package/lib/module/modules/offline/OfflineManager.js.map +1 -1
  165. package/lib/module/modules/static-map/StaticMapManager.js +13 -5
  166. package/lib/module/modules/static-map/StaticMapManager.js.map +1 -1
  167. package/lib/module/modules/transform-request/NativeTransformRequestModule.js +5 -0
  168. package/lib/module/modules/transform-request/NativeTransformRequestModule.js.map +1 -0
  169. package/lib/module/modules/transform-request/TransformRequestManager.js +230 -0
  170. package/lib/module/modules/transform-request/TransformRequestManager.js.map +1 -0
  171. package/lib/module/plugin/ios.js +28 -15
  172. package/lib/module/plugin/ios.js.map +1 -1
  173. package/lib/module/types/Anchor.js +5 -6
  174. package/lib/module/types/Anchor.js.map +1 -1
  175. package/lib/module/types/PressableSourceProps.js.map +1 -0
  176. package/lib/module/utils/animated/AbstractAnimatedCoordinates.js +2 -2
  177. package/lib/module/utils/animated/AnimatedCoordinatesArray.js +6 -6
  178. package/lib/module/utils/animated/AnimatedGeoJSON.js +2 -1
  179. package/lib/module/utils/animated/AnimatedGeoJSON.js.map +1 -1
  180. package/lib/module/utils/animated/AnimatedRouteCoordinatesArray.js +6 -6
  181. package/lib/module/utils/convertStyleSpec.js +4 -4
  182. package/lib/module/utils/getStylePropertyType.js +1 -1
  183. package/lib/typescript/commonjs/components/annotations/LayerAnnotation.d.ts.map +1 -0
  184. package/lib/typescript/commonjs/{src/components → components}/annotations/callout/Callout.d.ts +3 -2
  185. package/lib/typescript/commonjs/components/annotations/callout/Callout.d.ts.map +1 -0
  186. package/lib/typescript/commonjs/components/annotations/callout/CalloutNativeComponent.d.ts.map +1 -0
  187. package/lib/typescript/commonjs/components/annotations/marker/Marker.d.ts +79 -0
  188. package/lib/typescript/commonjs/components/annotations/marker/Marker.d.ts.map +1 -0
  189. package/lib/typescript/commonjs/{src/components → components}/annotations/marker/MarkerViewNativeComponent.d.ts +12 -2
  190. package/lib/typescript/commonjs/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +1 -0
  191. package/lib/typescript/commonjs/{src/components → components}/annotations/view-annotation/PointAnnotationNativeComponent.d.ts +5 -4
  192. package/lib/typescript/commonjs/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +1 -0
  193. package/lib/typescript/commonjs/components/annotations/view-annotation/ViewAnnotation.d.ts +120 -0
  194. package/lib/typescript/commonjs/components/annotations/view-annotation/ViewAnnotation.d.ts.map +1 -0
  195. package/lib/typescript/commonjs/{src/components → components}/camera/Camera.d.ts +85 -43
  196. package/lib/typescript/commonjs/components/camera/Camera.d.ts.map +1 -0
  197. package/lib/typescript/commonjs/components/camera/CameraNativeComponent.d.ts.map +1 -0
  198. package/lib/typescript/commonjs/components/camera/NativeCameraModule.d.ts.map +1 -0
  199. package/lib/typescript/{module/src → commonjs}/components/images/Images.d.ts +20 -12
  200. package/lib/typescript/commonjs/components/images/Images.d.ts.map +1 -0
  201. package/lib/typescript/commonjs/components/images/ImagesNativeComponent.d.ts.map +1 -0
  202. package/lib/typescript/commonjs/components/images/NativeImagesModule.d.ts +6 -0
  203. package/lib/typescript/commonjs/components/images/NativeImagesModule.d.ts.map +1 -0
  204. package/lib/typescript/commonjs/{src/components → components}/layer/Layer.d.ts +41 -67
  205. package/lib/typescript/commonjs/components/layer/Layer.d.ts.map +1 -0
  206. package/lib/typescript/commonjs/components/layer/LayerNativeComponent.d.ts.map +1 -0
  207. package/lib/typescript/commonjs/{src/components → components}/map/AndroidTextureMapViewNativeComponent.d.ts +5 -1
  208. package/lib/typescript/commonjs/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +1 -0
  209. package/lib/typescript/commonjs/{src/components → components}/map/Map.d.ts +154 -78
  210. package/lib/typescript/commonjs/components/map/Map.d.ts.map +1 -0
  211. package/lib/typescript/{module/src → commonjs}/components/map/MapViewNativeComponent.d.ts +5 -1
  212. package/lib/typescript/commonjs/components/map/MapViewNativeComponent.d.ts.map +1 -0
  213. package/lib/typescript/commonjs/components/map/NativeMapViewModule.d.ts.map +1 -0
  214. package/lib/typescript/commonjs/{src/components → components}/sources/geojson-source/GeoJSONSource.d.ts +47 -44
  215. package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSource.d.ts.map +1 -0
  216. package/lib/typescript/commonjs/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +1 -0
  217. package/lib/typescript/commonjs/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +1 -0
  218. package/lib/typescript/commonjs/{src/components → components}/sources/image-source/ImageSource.d.ts +5 -3
  219. package/lib/typescript/commonjs/components/sources/image-source/ImageSource.d.ts.map +1 -0
  220. package/lib/typescript/commonjs/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +1 -0
  221. package/lib/typescript/commonjs/{src/components → components}/sources/raster-source/RasterSource.d.ts +20 -15
  222. package/lib/typescript/commonjs/components/sources/raster-source/RasterSource.d.ts.map +1 -0
  223. package/lib/typescript/commonjs/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +1 -0
  224. package/lib/typescript/commonjs/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +1 -0
  225. package/lib/typescript/commonjs/components/sources/vector-source/VectorSource.d.ts +75 -0
  226. package/lib/typescript/commonjs/components/sources/vector-source/VectorSource.d.ts.map +1 -0
  227. package/lib/typescript/commonjs/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +1 -0
  228. package/lib/typescript/commonjs/{src/components → components}/user-location/NativeUserLocation.d.ts +9 -6
  229. package/lib/typescript/commonjs/components/user-location/NativeUserLocation.d.ts.map +1 -0
  230. package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocation.d.ts +4 -2
  231. package/lib/typescript/commonjs/components/user-location/UserLocation.d.ts.map +1 -0
  232. package/lib/typescript/commonjs/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
  233. package/lib/typescript/commonjs/components/user-location/UserLocationPuck.d.ts.map +1 -0
  234. package/lib/typescript/commonjs/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
  235. package/lib/typescript/commonjs/{src/hooks → hooks}/useCurrentPosition.d.ts +2 -2
  236. package/lib/typescript/commonjs/hooks/useCurrentPosition.d.ts.map +1 -0
  237. package/lib/typescript/commonjs/hooks/useFrozenId.d.ts.map +1 -0
  238. package/lib/typescript/commonjs/hooks/useNativeBridge.d.ts.map +1 -0
  239. package/lib/typescript/{module/src → commonjs}/index.d.ts +4 -3
  240. package/lib/typescript/commonjs/index.d.ts.map +1 -0
  241. package/lib/typescript/commonjs/modules/location/LocationManager.d.ts.map +1 -0
  242. package/lib/typescript/commonjs/modules/location/NativeLocationModule.d.ts.map +1 -0
  243. package/lib/typescript/{module/src → commonjs}/modules/log/LogManager.d.ts +5 -4
  244. package/lib/typescript/commonjs/modules/log/LogManager.d.ts.map +1 -0
  245. package/lib/typescript/commonjs/modules/log/NativeLogModule.d.ts.map +1 -0
  246. package/lib/typescript/commonjs/{src/modules → modules}/network/NativeNetworkModule.d.ts +0 -2
  247. package/lib/typescript/commonjs/modules/network/NativeNetworkModule.d.ts.map +1 -0
  248. package/lib/typescript/commonjs/modules/network/NetworkManager.d.ts +24 -0
  249. package/lib/typescript/commonjs/modules/network/NetworkManager.d.ts.map +1 -0
  250. package/lib/typescript/commonjs/modules/offline/NativeOfflineModule.d.ts.map +1 -0
  251. package/lib/typescript/commonjs/{src/modules → modules}/offline/OfflineManager.d.ts +110 -63
  252. package/lib/typescript/commonjs/modules/offline/OfflineManager.d.ts.map +1 -0
  253. package/lib/typescript/commonjs/modules/offline/OfflinePack.d.ts.map +1 -0
  254. package/lib/typescript/commonjs/modules/static-map/NativeStaticMapModule.d.ts.map +1 -0
  255. package/lib/typescript/{module/src → commonjs}/modules/static-map/StaticMapManager.d.ts +15 -7
  256. package/lib/typescript/commonjs/modules/static-map/StaticMapManager.d.ts.map +1 -0
  257. package/lib/typescript/commonjs/modules/transform-request/NativeTransformRequestModule.d.ts +15 -0
  258. package/lib/typescript/commonjs/modules/transform-request/NativeTransformRequestModule.d.ts.map +1 -0
  259. package/lib/typescript/commonjs/modules/transform-request/TransformRequestManager.d.ts +213 -0
  260. package/lib/typescript/commonjs/modules/transform-request/TransformRequestManager.d.ts.map +1 -0
  261. package/lib/typescript/commonjs/{src/plugin → plugin}/MapLibrePluginProps.d.ts +10 -15
  262. package/lib/typescript/commonjs/plugin/MapLibrePluginProps.d.ts.map +1 -0
  263. package/lib/typescript/commonjs/plugin/android.d.ts.map +1 -0
  264. package/lib/typescript/commonjs/{src/plugin → plugin}/ios.d.ts +2 -2
  265. package/lib/typescript/commonjs/plugin/ios.d.ts.map +1 -0
  266. package/lib/typescript/commonjs/plugin/withMapLibre.d.ts.map +1 -0
  267. package/lib/typescript/commonjs/types/Anchor.d.ts +16 -0
  268. package/lib/typescript/commonjs/types/Anchor.d.ts.map +1 -0
  269. package/lib/typescript/commonjs/types/BaseProps.d.ts +7 -0
  270. package/lib/typescript/commonjs/types/BaseProps.d.ts.map +1 -0
  271. package/lib/typescript/commonjs/types/LngLat.d.ts.map +1 -0
  272. package/lib/typescript/commonjs/{src/types → types}/LngLatBounds.d.ts +2 -1
  273. package/lib/typescript/commonjs/types/LngLatBounds.d.ts.map +1 -0
  274. package/lib/typescript/commonjs/{src/types → types}/MapLibreRNStyles.d.ts +257 -106
  275. package/lib/typescript/commonjs/types/MapLibreRNStyles.d.ts.map +1 -0
  276. package/lib/typescript/commonjs/types/PixelPoint.d.ts.map +1 -0
  277. package/lib/typescript/commonjs/types/PixelPointBounds.d.ts.map +1 -0
  278. package/lib/typescript/{module/src → commonjs}/types/PressEvent.d.ts +3 -0
  279. package/lib/typescript/commonjs/types/PressEvent.d.ts.map +1 -0
  280. package/lib/typescript/commonjs/{src/types → types}/PressEventWithFeatures.d.ts +3 -0
  281. package/lib/typescript/commonjs/types/PressEventWithFeatures.d.ts.map +1 -0
  282. package/lib/typescript/{module/src/types/sources → commonjs/types}/PressableSourceProps.d.ts +6 -4
  283. package/lib/typescript/commonjs/types/PressableSourceProps.d.ts.map +1 -0
  284. package/lib/typescript/{module/src → commonjs}/types/ViewPadding.d.ts +3 -0
  285. package/lib/typescript/commonjs/types/ViewPadding.d.ts.map +1 -0
  286. package/lib/typescript/commonjs/types/codegen/UnsafeMixed.d.ts.map +1 -0
  287. package/lib/typescript/commonjs/utils/BridgeValue.d.ts.map +1 -0
  288. package/lib/typescript/commonjs/utils/StyleValue.d.ts.map +1 -0
  289. package/lib/typescript/{module/src → commonjs}/utils/animated/AbstractAnimatedCoordinates.d.ts +2 -2
  290. package/lib/typescript/commonjs/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  291. package/lib/typescript/{module/src → commonjs}/utils/animated/Animated.d.ts +2 -2
  292. package/lib/typescript/commonjs/utils/animated/Animated.d.ts.map +1 -0
  293. package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedCoordinatesArray.d.ts +6 -6
  294. package/lib/typescript/commonjs/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  295. package/lib/typescript/commonjs/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  296. package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedGeoJSON.d.ts +2 -1
  297. package/lib/typescript/commonjs/utils/animated/AnimatedGeoJSON.d.ts.map +1 -0
  298. package/lib/typescript/commonjs/utils/animated/AnimatedPoint.d.ts.map +1 -0
  299. package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedRouteCoordinatesArray.d.ts +6 -6
  300. package/lib/typescript/commonjs/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  301. package/lib/typescript/{module/src → commonjs}/utils/convertStyleSpec.d.ts +4 -4
  302. package/lib/typescript/commonjs/utils/convertStyleSpec.d.ts.map +1 -0
  303. package/lib/typescript/commonjs/utils/findNodeHandle.d.ts.map +1 -0
  304. package/lib/typescript/commonjs/utils/getNativeFilter.d.ts.map +1 -0
  305. package/lib/typescript/commonjs/utils/getStylePropertyType.d.ts.map +1 -0
  306. package/lib/typescript/commonjs/utils/index.d.ts.map +1 -0
  307. package/lib/typescript/module/components/annotations/LayerAnnotation.d.ts.map +1 -0
  308. package/lib/typescript/module/{src/components → components}/annotations/callout/Callout.d.ts +3 -2
  309. package/lib/typescript/module/components/annotations/callout/Callout.d.ts.map +1 -0
  310. package/lib/typescript/module/components/annotations/callout/CalloutNativeComponent.d.ts.map +1 -0
  311. package/lib/typescript/module/components/annotations/marker/Marker.d.ts +79 -0
  312. package/lib/typescript/module/components/annotations/marker/Marker.d.ts.map +1 -0
  313. package/lib/typescript/module/{src/components → components}/annotations/marker/MarkerViewNativeComponent.d.ts +12 -2
  314. package/lib/typescript/module/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +1 -0
  315. package/lib/typescript/module/{src/components → components}/annotations/view-annotation/PointAnnotationNativeComponent.d.ts +5 -4
  316. package/lib/typescript/module/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +1 -0
  317. package/lib/typescript/module/components/annotations/view-annotation/ViewAnnotation.d.ts +120 -0
  318. package/lib/typescript/module/components/annotations/view-annotation/ViewAnnotation.d.ts.map +1 -0
  319. package/lib/typescript/module/{src/components → components}/camera/Camera.d.ts +85 -43
  320. package/lib/typescript/module/components/camera/Camera.d.ts.map +1 -0
  321. package/lib/typescript/module/components/camera/CameraNativeComponent.d.ts.map +1 -0
  322. package/lib/typescript/module/components/camera/NativeCameraModule.d.ts.map +1 -0
  323. package/lib/typescript/{commonjs/src → module}/components/images/Images.d.ts +20 -12
  324. package/lib/typescript/module/components/images/Images.d.ts.map +1 -0
  325. package/lib/typescript/module/components/images/ImagesNativeComponent.d.ts.map +1 -0
  326. package/lib/typescript/module/components/images/NativeImagesModule.d.ts +6 -0
  327. package/lib/typescript/module/components/images/NativeImagesModule.d.ts.map +1 -0
  328. package/lib/typescript/module/{src/components → components}/layer/Layer.d.ts +41 -67
  329. package/lib/typescript/module/components/layer/Layer.d.ts.map +1 -0
  330. package/lib/typescript/module/components/layer/LayerNativeComponent.d.ts.map +1 -0
  331. package/lib/typescript/module/{src/components → components}/map/AndroidTextureMapViewNativeComponent.d.ts +5 -1
  332. package/lib/typescript/module/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +1 -0
  333. package/lib/typescript/module/{src/components → components}/map/Map.d.ts +154 -78
  334. package/lib/typescript/module/components/map/Map.d.ts.map +1 -0
  335. package/lib/typescript/{commonjs/src → module}/components/map/MapViewNativeComponent.d.ts +5 -1
  336. package/lib/typescript/module/components/map/MapViewNativeComponent.d.ts.map +1 -0
  337. package/lib/typescript/module/components/map/NativeMapViewModule.d.ts.map +1 -0
  338. package/lib/typescript/module/{src/components → components}/sources/geojson-source/GeoJSONSource.d.ts +47 -44
  339. package/lib/typescript/module/components/sources/geojson-source/GeoJSONSource.d.ts.map +1 -0
  340. package/lib/typescript/module/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +1 -0
  341. package/lib/typescript/module/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +1 -0
  342. package/lib/typescript/module/{src/components → components}/sources/image-source/ImageSource.d.ts +5 -3
  343. package/lib/typescript/module/components/sources/image-source/ImageSource.d.ts.map +1 -0
  344. package/lib/typescript/module/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +1 -0
  345. package/lib/typescript/module/{src/components → components}/sources/raster-source/RasterSource.d.ts +20 -15
  346. package/lib/typescript/module/components/sources/raster-source/RasterSource.d.ts.map +1 -0
  347. package/lib/typescript/module/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +1 -0
  348. package/lib/typescript/module/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +1 -0
  349. package/lib/typescript/module/components/sources/vector-source/VectorSource.d.ts +75 -0
  350. package/lib/typescript/module/components/sources/vector-source/VectorSource.d.ts.map +1 -0
  351. package/lib/typescript/module/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +1 -0
  352. package/lib/typescript/module/{src/components → components}/user-location/NativeUserLocation.d.ts +9 -6
  353. package/lib/typescript/module/components/user-location/NativeUserLocation.d.ts.map +1 -0
  354. package/lib/typescript/module/{src/components → components}/user-location/UserLocation.d.ts +4 -2
  355. package/lib/typescript/module/components/user-location/UserLocation.d.ts.map +1 -0
  356. package/lib/typescript/module/components/user-location/UserLocationNativeComponent.d.ts.map +1 -0
  357. package/lib/typescript/module/components/user-location/UserLocationPuck.d.ts.map +1 -0
  358. package/lib/typescript/module/components/user-location/UserLocationPuckHeading.d.ts.map +1 -0
  359. package/lib/typescript/module/{src/hooks → hooks}/useCurrentPosition.d.ts +2 -2
  360. package/lib/typescript/module/hooks/useCurrentPosition.d.ts.map +1 -0
  361. package/lib/typescript/module/hooks/useFrozenId.d.ts.map +1 -0
  362. package/lib/typescript/module/hooks/useNativeBridge.d.ts.map +1 -0
  363. package/lib/typescript/{commonjs/src → module}/index.d.ts +4 -3
  364. package/lib/typescript/module/index.d.ts.map +1 -0
  365. package/lib/typescript/module/modules/location/LocationManager.d.ts.map +1 -0
  366. package/lib/typescript/module/modules/location/NativeLocationModule.d.ts.map +1 -0
  367. package/lib/typescript/{commonjs/src → module}/modules/log/LogManager.d.ts +5 -4
  368. package/lib/typescript/module/modules/log/LogManager.d.ts.map +1 -0
  369. package/lib/typescript/module/modules/log/NativeLogModule.d.ts.map +1 -0
  370. package/lib/typescript/module/{src/modules → modules}/network/NativeNetworkModule.d.ts +0 -2
  371. package/lib/typescript/module/modules/network/NativeNetworkModule.d.ts.map +1 -0
  372. package/lib/typescript/module/modules/network/NetworkManager.d.ts +24 -0
  373. package/lib/typescript/module/modules/network/NetworkManager.d.ts.map +1 -0
  374. package/lib/typescript/module/modules/offline/NativeOfflineModule.d.ts.map +1 -0
  375. package/lib/typescript/module/{src/modules → modules}/offline/OfflineManager.d.ts +110 -63
  376. package/lib/typescript/module/modules/offline/OfflineManager.d.ts.map +1 -0
  377. package/lib/typescript/module/modules/offline/OfflinePack.d.ts.map +1 -0
  378. package/lib/typescript/module/modules/static-map/NativeStaticMapModule.d.ts.map +1 -0
  379. package/lib/typescript/{commonjs/src → module}/modules/static-map/StaticMapManager.d.ts +15 -7
  380. package/lib/typescript/module/modules/static-map/StaticMapManager.d.ts.map +1 -0
  381. package/lib/typescript/module/modules/transform-request/NativeTransformRequestModule.d.ts +15 -0
  382. package/lib/typescript/module/modules/transform-request/NativeTransformRequestModule.d.ts.map +1 -0
  383. package/lib/typescript/module/modules/transform-request/TransformRequestManager.d.ts +213 -0
  384. package/lib/typescript/module/modules/transform-request/TransformRequestManager.d.ts.map +1 -0
  385. package/lib/typescript/module/{src/plugin → plugin}/MapLibrePluginProps.d.ts +10 -15
  386. package/lib/typescript/module/plugin/MapLibrePluginProps.d.ts.map +1 -0
  387. package/lib/typescript/module/plugin/android.d.ts.map +1 -0
  388. package/lib/typescript/module/{src/plugin → plugin}/ios.d.ts +2 -2
  389. package/lib/typescript/module/plugin/ios.d.ts.map +1 -0
  390. package/lib/typescript/module/plugin/withMapLibre.d.ts.map +1 -0
  391. package/lib/typescript/module/types/Anchor.d.ts +16 -0
  392. package/lib/typescript/module/types/Anchor.d.ts.map +1 -0
  393. package/lib/typescript/module/types/BaseProps.d.ts +7 -0
  394. package/lib/typescript/module/types/BaseProps.d.ts.map +1 -0
  395. package/lib/typescript/module/types/LngLat.d.ts.map +1 -0
  396. package/lib/typescript/module/{src/types → types}/LngLatBounds.d.ts +2 -1
  397. package/lib/typescript/module/types/LngLatBounds.d.ts.map +1 -0
  398. package/lib/typescript/module/{src/types → types}/MapLibreRNStyles.d.ts +257 -106
  399. package/lib/typescript/module/types/MapLibreRNStyles.d.ts.map +1 -0
  400. package/lib/typescript/module/types/PixelPoint.d.ts.map +1 -0
  401. package/lib/typescript/module/types/PixelPointBounds.d.ts.map +1 -0
  402. package/lib/typescript/{commonjs/src → module}/types/PressEvent.d.ts +3 -0
  403. package/lib/typescript/module/types/PressEvent.d.ts.map +1 -0
  404. package/lib/typescript/module/{src/types → types}/PressEventWithFeatures.d.ts +3 -0
  405. package/lib/typescript/module/types/PressEventWithFeatures.d.ts.map +1 -0
  406. package/lib/typescript/{commonjs/src/types/sources → module/types}/PressableSourceProps.d.ts +6 -4
  407. package/lib/typescript/module/types/PressableSourceProps.d.ts.map +1 -0
  408. package/lib/typescript/{commonjs/src → module}/types/ViewPadding.d.ts +3 -0
  409. package/lib/typescript/module/types/ViewPadding.d.ts.map +1 -0
  410. package/lib/typescript/module/types/codegen/UnsafeMixed.d.ts.map +1 -0
  411. package/lib/typescript/module/utils/BridgeValue.d.ts.map +1 -0
  412. package/lib/typescript/module/utils/StyleValue.d.ts.map +1 -0
  413. package/lib/typescript/{commonjs/src → module}/utils/animated/AbstractAnimatedCoordinates.d.ts +2 -2
  414. package/lib/typescript/module/utils/animated/AbstractAnimatedCoordinates.d.ts.map +1 -0
  415. package/lib/typescript/{commonjs/src → module}/utils/animated/Animated.d.ts +2 -2
  416. package/lib/typescript/module/utils/animated/Animated.d.ts.map +1 -0
  417. package/lib/typescript/module/{src/utils → utils}/animated/AnimatedCoordinatesArray.d.ts +6 -6
  418. package/lib/typescript/module/utils/animated/AnimatedCoordinatesArray.d.ts.map +1 -0
  419. package/lib/typescript/module/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +1 -0
  420. package/lib/typescript/module/{src/utils → utils}/animated/AnimatedGeoJSON.d.ts +2 -1
  421. package/lib/typescript/module/utils/animated/AnimatedGeoJSON.d.ts.map +1 -0
  422. package/lib/typescript/module/utils/animated/AnimatedPoint.d.ts.map +1 -0
  423. package/lib/typescript/module/{src/utils → utils}/animated/AnimatedRouteCoordinatesArray.d.ts +6 -6
  424. package/lib/typescript/module/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +1 -0
  425. package/lib/typescript/{commonjs/src → module}/utils/convertStyleSpec.d.ts +4 -4
  426. package/lib/typescript/module/utils/convertStyleSpec.d.ts.map +1 -0
  427. package/lib/typescript/module/utils/findNodeHandle.d.ts.map +1 -0
  428. package/lib/typescript/module/utils/getNativeFilter.d.ts.map +1 -0
  429. package/lib/typescript/module/utils/getStylePropertyType.d.ts.map +1 -0
  430. package/lib/typescript/module/utils/index.d.ts.map +1 -0
  431. package/package.json +23 -44
  432. package/src/components/annotations/callout/Callout.tsx +3 -2
  433. package/src/components/annotations/marker/Marker.tsx +70 -18
  434. package/src/components/annotations/marker/MarkerViewNativeComponent.ts +12 -2
  435. package/src/components/annotations/view-annotation/PointAnnotationNativeComponent.ts +5 -4
  436. package/src/components/annotations/view-annotation/ViewAnnotation.tsx +115 -94
  437. package/src/components/camera/Camera.tsx +149 -111
  438. package/src/components/images/Images.tsx +20 -12
  439. package/src/components/images/NativeImagesModule.ts +11 -0
  440. package/src/components/layer/Layer.tsx +50 -86
  441. package/src/components/map/AndroidTextureMapViewNativeComponent.ts +7 -2
  442. package/src/components/map/Map.tsx +300 -233
  443. package/src/components/map/MapViewNativeComponent.ts +6 -1
  444. package/src/components/sources/geojson-source/GeoJSONSource.tsx +106 -104
  445. package/src/components/sources/image-source/ImageSource.tsx +5 -3
  446. package/src/components/sources/raster-source/RasterSource.tsx +20 -15
  447. package/src/components/sources/vector-source/VectorSource.tsx +67 -59
  448. package/src/components/user-location/NativeUserLocation.tsx +9 -6
  449. package/src/components/user-location/UserLocation.tsx +34 -20
  450. package/src/components/user-location/UserLocationPuck.tsx +20 -20
  451. package/src/components/user-location/UserLocationPuckHeading.tsx +9 -10
  452. package/src/hooks/useCurrentPosition.ts +2 -2
  453. package/src/index.ts +17 -5
  454. package/src/modules/log/LogManager.ts +5 -4
  455. package/src/modules/network/NativeNetworkModule.ts +0 -4
  456. package/src/modules/network/NetworkManager.ts +6 -52
  457. package/src/modules/offline/OfflineManager.ts +109 -62
  458. package/src/modules/static-map/StaticMapManager.ts +15 -7
  459. package/src/modules/transform-request/NativeTransformRequestModule.ts +41 -0
  460. package/src/modules/transform-request/TransformRequestManager.ts +304 -0
  461. package/src/plugin/MapLibrePluginProps.ts +10 -15
  462. package/src/plugin/ios.ts +43 -21
  463. package/src/types/Anchor.ts +5 -6
  464. package/src/types/BaseProps.ts +3 -0
  465. package/src/types/LngLatBounds.ts +2 -1
  466. package/src/types/MapLibreRNStyles.ts +258 -106
  467. package/src/types/PressEvent.ts +3 -0
  468. package/src/types/PressEventWithFeatures.ts +3 -0
  469. package/src/types/{sources/PressableSourceProps.ts → PressableSourceProps.ts} +6 -4
  470. package/src/types/ViewPadding.ts +3 -0
  471. package/src/utils/animated/AbstractAnimatedCoordinates.ts +2 -2
  472. package/src/utils/animated/AnimatedCoordinatesArray.ts +6 -6
  473. package/src/utils/animated/AnimatedGeoJSON.ts +2 -1
  474. package/src/utils/animated/AnimatedRouteCoordinatesArray.ts +6 -6
  475. package/src/utils/convertStyleSpec.ts +4 -4
  476. package/src/utils/getStylePropertyType.ts +1 -1
  477. package/android/src/main/java/org/maplibre/reactnative/http/RequestHeadersInterceptor.kt +0 -65
  478. package/android/src/main/res/layout/annotation.xml +0 -17
  479. package/ios/modules/network/MLRNNetworkHTTPHeaders.h +0 -14
  480. package/ios/modules/network/MLRNNetworkHTTPHeaders.m +0 -97
  481. package/lib/commonjs/types/sources/PressableSourceProps.js.map +0 -1
  482. package/lib/module/types/sources/PressableSourceProps.js.map +0 -1
  483. package/lib/typescript/commonjs/src/components/annotations/LayerAnnotation.d.ts.map +0 -1
  484. package/lib/typescript/commonjs/src/components/annotations/callout/Callout.d.ts.map +0 -1
  485. package/lib/typescript/commonjs/src/components/annotations/callout/CalloutNativeComponent.d.ts.map +0 -1
  486. package/lib/typescript/commonjs/src/components/annotations/marker/Marker.d.ts +0 -52
  487. package/lib/typescript/commonjs/src/components/annotations/marker/Marker.d.ts.map +0 -1
  488. package/lib/typescript/commonjs/src/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +0 -1
  489. package/lib/typescript/commonjs/src/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +0 -1
  490. package/lib/typescript/commonjs/src/components/annotations/view-annotation/ViewAnnotation.d.ts +0 -95
  491. package/lib/typescript/commonjs/src/components/annotations/view-annotation/ViewAnnotation.d.ts.map +0 -1
  492. package/lib/typescript/commonjs/src/components/camera/Camera.d.ts.map +0 -1
  493. package/lib/typescript/commonjs/src/components/camera/CameraNativeComponent.d.ts.map +0 -1
  494. package/lib/typescript/commonjs/src/components/camera/NativeCameraModule.d.ts.map +0 -1
  495. package/lib/typescript/commonjs/src/components/images/Images.d.ts.map +0 -1
  496. package/lib/typescript/commonjs/src/components/images/ImagesNativeComponent.d.ts.map +0 -1
  497. package/lib/typescript/commonjs/src/components/layer/Layer.d.ts.map +0 -1
  498. package/lib/typescript/commonjs/src/components/layer/LayerNativeComponent.d.ts.map +0 -1
  499. package/lib/typescript/commonjs/src/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +0 -1
  500. package/lib/typescript/commonjs/src/components/map/Map.d.ts.map +0 -1
  501. package/lib/typescript/commonjs/src/components/map/MapViewNativeComponent.d.ts.map +0 -1
  502. package/lib/typescript/commonjs/src/components/map/NativeMapViewModule.d.ts.map +0 -1
  503. package/lib/typescript/commonjs/src/components/sources/geojson-source/GeoJSONSource.d.ts.map +0 -1
  504. package/lib/typescript/commonjs/src/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +0 -1
  505. package/lib/typescript/commonjs/src/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +0 -1
  506. package/lib/typescript/commonjs/src/components/sources/image-source/ImageSource.d.ts.map +0 -1
  507. package/lib/typescript/commonjs/src/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +0 -1
  508. package/lib/typescript/commonjs/src/components/sources/raster-source/RasterSource.d.ts.map +0 -1
  509. package/lib/typescript/commonjs/src/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +0 -1
  510. package/lib/typescript/commonjs/src/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +0 -1
  511. package/lib/typescript/commonjs/src/components/sources/vector-source/VectorSource.d.ts +0 -66
  512. package/lib/typescript/commonjs/src/components/sources/vector-source/VectorSource.d.ts.map +0 -1
  513. package/lib/typescript/commonjs/src/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +0 -1
  514. package/lib/typescript/commonjs/src/components/user-location/NativeUserLocation.d.ts.map +0 -1
  515. package/lib/typescript/commonjs/src/components/user-location/UserLocation.d.ts.map +0 -1
  516. package/lib/typescript/commonjs/src/components/user-location/UserLocationNativeComponent.d.ts.map +0 -1
  517. package/lib/typescript/commonjs/src/components/user-location/UserLocationPuck.d.ts.map +0 -1
  518. package/lib/typescript/commonjs/src/components/user-location/UserLocationPuckHeading.d.ts.map +0 -1
  519. package/lib/typescript/commonjs/src/hooks/useCurrentPosition.d.ts.map +0 -1
  520. package/lib/typescript/commonjs/src/hooks/useFrozenId.d.ts.map +0 -1
  521. package/lib/typescript/commonjs/src/hooks/useNativeBridge.d.ts.map +0 -1
  522. package/lib/typescript/commonjs/src/index.d.ts.map +0 -1
  523. package/lib/typescript/commonjs/src/modules/location/LocationManager.d.ts.map +0 -1
  524. package/lib/typescript/commonjs/src/modules/location/NativeLocationModule.d.ts.map +0 -1
  525. package/lib/typescript/commonjs/src/modules/log/LogManager.d.ts.map +0 -1
  526. package/lib/typescript/commonjs/src/modules/log/NativeLogModule.d.ts.map +0 -1
  527. package/lib/typescript/commonjs/src/modules/network/NativeNetworkModule.d.ts.map +0 -1
  528. package/lib/typescript/commonjs/src/modules/network/NetworkManager.d.ts +0 -56
  529. package/lib/typescript/commonjs/src/modules/network/NetworkManager.d.ts.map +0 -1
  530. package/lib/typescript/commonjs/src/modules/offline/NativeOfflineModule.d.ts.map +0 -1
  531. package/lib/typescript/commonjs/src/modules/offline/OfflineManager.d.ts.map +0 -1
  532. package/lib/typescript/commonjs/src/modules/offline/OfflinePack.d.ts.map +0 -1
  533. package/lib/typescript/commonjs/src/modules/static-map/NativeStaticMapModule.d.ts.map +0 -1
  534. package/lib/typescript/commonjs/src/modules/static-map/StaticMapManager.d.ts.map +0 -1
  535. package/lib/typescript/commonjs/src/plugin/MapLibrePluginProps.d.ts.map +0 -1
  536. package/lib/typescript/commonjs/src/plugin/android.d.ts.map +0 -1
  537. package/lib/typescript/commonjs/src/plugin/ios.d.ts.map +0 -1
  538. package/lib/typescript/commonjs/src/plugin/withMapLibre.d.ts.map +0 -1
  539. package/lib/typescript/commonjs/src/types/Anchor.d.ts +0 -17
  540. package/lib/typescript/commonjs/src/types/Anchor.d.ts.map +0 -1
  541. package/lib/typescript/commonjs/src/types/BaseProps.d.ts +0 -4
  542. package/lib/typescript/commonjs/src/types/BaseProps.d.ts.map +0 -1
  543. package/lib/typescript/commonjs/src/types/LngLat.d.ts.map +0 -1
  544. package/lib/typescript/commonjs/src/types/LngLatBounds.d.ts.map +0 -1
  545. package/lib/typescript/commonjs/src/types/MapLibreRNStyles.d.ts.map +0 -1
  546. package/lib/typescript/commonjs/src/types/PixelPoint.d.ts.map +0 -1
  547. package/lib/typescript/commonjs/src/types/PixelPointBounds.d.ts.map +0 -1
  548. package/lib/typescript/commonjs/src/types/PressEvent.d.ts.map +0 -1
  549. package/lib/typescript/commonjs/src/types/PressEventWithFeatures.d.ts.map +0 -1
  550. package/lib/typescript/commonjs/src/types/ViewPadding.d.ts.map +0 -1
  551. package/lib/typescript/commonjs/src/types/codegen/UnsafeMixed.d.ts.map +0 -1
  552. package/lib/typescript/commonjs/src/types/sources/PressableSourceProps.d.ts.map +0 -1
  553. package/lib/typescript/commonjs/src/utils/BridgeValue.d.ts.map +0 -1
  554. package/lib/typescript/commonjs/src/utils/StyleValue.d.ts.map +0 -1
  555. package/lib/typescript/commonjs/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +0 -1
  556. package/lib/typescript/commonjs/src/utils/animated/Animated.d.ts.map +0 -1
  557. package/lib/typescript/commonjs/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +0 -1
  558. package/lib/typescript/commonjs/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +0 -1
  559. package/lib/typescript/commonjs/src/utils/animated/AnimatedGeoJSON.d.ts.map +0 -1
  560. package/lib/typescript/commonjs/src/utils/animated/AnimatedPoint.d.ts.map +0 -1
  561. package/lib/typescript/commonjs/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +0 -1
  562. package/lib/typescript/commonjs/src/utils/convertStyleSpec.d.ts.map +0 -1
  563. package/lib/typescript/commonjs/src/utils/findNodeHandle.d.ts.map +0 -1
  564. package/lib/typescript/commonjs/src/utils/getNativeFilter.d.ts.map +0 -1
  565. package/lib/typescript/commonjs/src/utils/getStylePropertyType.d.ts.map +0 -1
  566. package/lib/typescript/commonjs/src/utils/index.d.ts.map +0 -1
  567. package/lib/typescript/module/src/components/annotations/LayerAnnotation.d.ts.map +0 -1
  568. package/lib/typescript/module/src/components/annotations/callout/Callout.d.ts.map +0 -1
  569. package/lib/typescript/module/src/components/annotations/callout/CalloutNativeComponent.d.ts.map +0 -1
  570. package/lib/typescript/module/src/components/annotations/marker/Marker.d.ts +0 -52
  571. package/lib/typescript/module/src/components/annotations/marker/Marker.d.ts.map +0 -1
  572. package/lib/typescript/module/src/components/annotations/marker/MarkerViewNativeComponent.d.ts.map +0 -1
  573. package/lib/typescript/module/src/components/annotations/view-annotation/PointAnnotationNativeComponent.d.ts.map +0 -1
  574. package/lib/typescript/module/src/components/annotations/view-annotation/ViewAnnotation.d.ts +0 -95
  575. package/lib/typescript/module/src/components/annotations/view-annotation/ViewAnnotation.d.ts.map +0 -1
  576. package/lib/typescript/module/src/components/camera/Camera.d.ts.map +0 -1
  577. package/lib/typescript/module/src/components/camera/CameraNativeComponent.d.ts.map +0 -1
  578. package/lib/typescript/module/src/components/camera/NativeCameraModule.d.ts.map +0 -1
  579. package/lib/typescript/module/src/components/images/Images.d.ts.map +0 -1
  580. package/lib/typescript/module/src/components/images/ImagesNativeComponent.d.ts.map +0 -1
  581. package/lib/typescript/module/src/components/layer/Layer.d.ts.map +0 -1
  582. package/lib/typescript/module/src/components/layer/LayerNativeComponent.d.ts.map +0 -1
  583. package/lib/typescript/module/src/components/map/AndroidTextureMapViewNativeComponent.d.ts.map +0 -1
  584. package/lib/typescript/module/src/components/map/Map.d.ts.map +0 -1
  585. package/lib/typescript/module/src/components/map/MapViewNativeComponent.d.ts.map +0 -1
  586. package/lib/typescript/module/src/components/map/NativeMapViewModule.d.ts.map +0 -1
  587. package/lib/typescript/module/src/components/sources/geojson-source/GeoJSONSource.d.ts.map +0 -1
  588. package/lib/typescript/module/src/components/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts.map +0 -1
  589. package/lib/typescript/module/src/components/sources/geojson-source/NativeGeoJSONSourceModule.d.ts.map +0 -1
  590. package/lib/typescript/module/src/components/sources/image-source/ImageSource.d.ts.map +0 -1
  591. package/lib/typescript/module/src/components/sources/image-source/ImageSourceNativeComponent.d.ts.map +0 -1
  592. package/lib/typescript/module/src/components/sources/raster-source/RasterSource.d.ts.map +0 -1
  593. package/lib/typescript/module/src/components/sources/raster-source/RasterSourceNativeComponent.d.ts.map +0 -1
  594. package/lib/typescript/module/src/components/sources/vector-source/NativeVectorSourceModule.d.ts.map +0 -1
  595. package/lib/typescript/module/src/components/sources/vector-source/VectorSource.d.ts +0 -66
  596. package/lib/typescript/module/src/components/sources/vector-source/VectorSource.d.ts.map +0 -1
  597. package/lib/typescript/module/src/components/sources/vector-source/VectorSourceNativeComponent.d.ts.map +0 -1
  598. package/lib/typescript/module/src/components/user-location/NativeUserLocation.d.ts.map +0 -1
  599. package/lib/typescript/module/src/components/user-location/UserLocation.d.ts.map +0 -1
  600. package/lib/typescript/module/src/components/user-location/UserLocationNativeComponent.d.ts.map +0 -1
  601. package/lib/typescript/module/src/components/user-location/UserLocationPuck.d.ts.map +0 -1
  602. package/lib/typescript/module/src/components/user-location/UserLocationPuckHeading.d.ts.map +0 -1
  603. package/lib/typescript/module/src/hooks/useCurrentPosition.d.ts.map +0 -1
  604. package/lib/typescript/module/src/hooks/useFrozenId.d.ts.map +0 -1
  605. package/lib/typescript/module/src/hooks/useNativeBridge.d.ts.map +0 -1
  606. package/lib/typescript/module/src/index.d.ts.map +0 -1
  607. package/lib/typescript/module/src/modules/location/LocationManager.d.ts.map +0 -1
  608. package/lib/typescript/module/src/modules/location/NativeLocationModule.d.ts.map +0 -1
  609. package/lib/typescript/module/src/modules/log/LogManager.d.ts.map +0 -1
  610. package/lib/typescript/module/src/modules/log/NativeLogModule.d.ts.map +0 -1
  611. package/lib/typescript/module/src/modules/network/NativeNetworkModule.d.ts.map +0 -1
  612. package/lib/typescript/module/src/modules/network/NetworkManager.d.ts +0 -56
  613. package/lib/typescript/module/src/modules/network/NetworkManager.d.ts.map +0 -1
  614. package/lib/typescript/module/src/modules/offline/NativeOfflineModule.d.ts.map +0 -1
  615. package/lib/typescript/module/src/modules/offline/OfflineManager.d.ts.map +0 -1
  616. package/lib/typescript/module/src/modules/offline/OfflinePack.d.ts.map +0 -1
  617. package/lib/typescript/module/src/modules/static-map/NativeStaticMapModule.d.ts.map +0 -1
  618. package/lib/typescript/module/src/modules/static-map/StaticMapManager.d.ts.map +0 -1
  619. package/lib/typescript/module/src/plugin/MapLibrePluginProps.d.ts.map +0 -1
  620. package/lib/typescript/module/src/plugin/android.d.ts.map +0 -1
  621. package/lib/typescript/module/src/plugin/ios.d.ts.map +0 -1
  622. package/lib/typescript/module/src/plugin/withMapLibre.d.ts.map +0 -1
  623. package/lib/typescript/module/src/types/Anchor.d.ts +0 -17
  624. package/lib/typescript/module/src/types/Anchor.d.ts.map +0 -1
  625. package/lib/typescript/module/src/types/BaseProps.d.ts +0 -4
  626. package/lib/typescript/module/src/types/BaseProps.d.ts.map +0 -1
  627. package/lib/typescript/module/src/types/LngLat.d.ts.map +0 -1
  628. package/lib/typescript/module/src/types/LngLatBounds.d.ts.map +0 -1
  629. package/lib/typescript/module/src/types/MapLibreRNStyles.d.ts.map +0 -1
  630. package/lib/typescript/module/src/types/PixelPoint.d.ts.map +0 -1
  631. package/lib/typescript/module/src/types/PixelPointBounds.d.ts.map +0 -1
  632. package/lib/typescript/module/src/types/PressEvent.d.ts.map +0 -1
  633. package/lib/typescript/module/src/types/PressEventWithFeatures.d.ts.map +0 -1
  634. package/lib/typescript/module/src/types/ViewPadding.d.ts.map +0 -1
  635. package/lib/typescript/module/src/types/codegen/UnsafeMixed.d.ts.map +0 -1
  636. package/lib/typescript/module/src/types/sources/PressableSourceProps.d.ts.map +0 -1
  637. package/lib/typescript/module/src/utils/BridgeValue.d.ts.map +0 -1
  638. package/lib/typescript/module/src/utils/StyleValue.d.ts.map +0 -1
  639. package/lib/typescript/module/src/utils/animated/AbstractAnimatedCoordinates.d.ts.map +0 -1
  640. package/lib/typescript/module/src/utils/animated/Animated.d.ts.map +0 -1
  641. package/lib/typescript/module/src/utils/animated/AnimatedCoordinatesArray.d.ts.map +0 -1
  642. package/lib/typescript/module/src/utils/animated/AnimatedExtractCoordinateFromArray.d.ts.map +0 -1
  643. package/lib/typescript/module/src/utils/animated/AnimatedGeoJSON.d.ts.map +0 -1
  644. package/lib/typescript/module/src/utils/animated/AnimatedPoint.d.ts.map +0 -1
  645. package/lib/typescript/module/src/utils/animated/AnimatedRouteCoordinatesArray.d.ts.map +0 -1
  646. package/lib/typescript/module/src/utils/convertStyleSpec.d.ts.map +0 -1
  647. package/lib/typescript/module/src/utils/findNodeHandle.d.ts.map +0 -1
  648. package/lib/typescript/module/src/utils/getNativeFilter.d.ts.map +0 -1
  649. package/lib/typescript/module/src/utils/getStylePropertyType.d.ts.map +0 -1
  650. package/lib/typescript/module/src/utils/index.d.ts.map +0 -1
  651. /package/android/src/main/res/drawable-xxhdpi/{red_marker.png → default_marker.png} +0 -0
  652. /package/ios/{components/images → utils}/MLRNImageUtils.h +0 -0
  653. /package/ios/{components/images → utils}/MLRNImageUtils.m +0 -0
  654. /package/lib/commonjs/types/{sources/PressableSourceProps.js → PressableSourceProps.js} +0 -0
  655. /package/lib/module/types/{sources/PressableSourceProps.js → PressableSourceProps.js} +0 -0
  656. /package/lib/typescript/commonjs/{src/components → components}/annotations/LayerAnnotation.d.ts +0 -0
  657. /package/lib/typescript/commonjs/{src/components → components}/annotations/callout/CalloutNativeComponent.d.ts +0 -0
  658. /package/lib/typescript/commonjs/{src/components → components}/camera/CameraNativeComponent.d.ts +0 -0
  659. /package/lib/typescript/commonjs/{src/components → components}/camera/NativeCameraModule.d.ts +0 -0
  660. /package/lib/typescript/commonjs/{src/components → components}/images/ImagesNativeComponent.d.ts +0 -0
  661. /package/lib/typescript/commonjs/{src/components → components}/layer/LayerNativeComponent.d.ts +0 -0
  662. /package/lib/typescript/commonjs/{src/components → components}/map/NativeMapViewModule.d.ts +0 -0
  663. /package/lib/typescript/commonjs/{src/components → components}/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts +0 -0
  664. /package/lib/typescript/commonjs/{src/components → components}/sources/geojson-source/NativeGeoJSONSourceModule.d.ts +0 -0
  665. /package/lib/typescript/commonjs/{src/components → components}/sources/image-source/ImageSourceNativeComponent.d.ts +0 -0
  666. /package/lib/typescript/commonjs/{src/components → components}/sources/raster-source/RasterSourceNativeComponent.d.ts +0 -0
  667. /package/lib/typescript/commonjs/{src/components → components}/sources/vector-source/NativeVectorSourceModule.d.ts +0 -0
  668. /package/lib/typescript/commonjs/{src/components → components}/sources/vector-source/VectorSourceNativeComponent.d.ts +0 -0
  669. /package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocationNativeComponent.d.ts +0 -0
  670. /package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocationPuck.d.ts +0 -0
  671. /package/lib/typescript/commonjs/{src/components → components}/user-location/UserLocationPuckHeading.d.ts +0 -0
  672. /package/lib/typescript/commonjs/{src/hooks → hooks}/useFrozenId.d.ts +0 -0
  673. /package/lib/typescript/commonjs/{src/hooks → hooks}/useNativeBridge.d.ts +0 -0
  674. /package/lib/typescript/commonjs/{src/modules → modules}/location/LocationManager.d.ts +0 -0
  675. /package/lib/typescript/commonjs/{src/modules → modules}/location/NativeLocationModule.d.ts +0 -0
  676. /package/lib/typescript/commonjs/{src/modules → modules}/log/NativeLogModule.d.ts +0 -0
  677. /package/lib/typescript/commonjs/{src/modules → modules}/offline/NativeOfflineModule.d.ts +0 -0
  678. /package/lib/typescript/commonjs/{src/modules → modules}/offline/OfflinePack.d.ts +0 -0
  679. /package/lib/typescript/commonjs/{src/modules → modules}/static-map/NativeStaticMapModule.d.ts +0 -0
  680. /package/lib/typescript/commonjs/{src/plugin → plugin}/android.d.ts +0 -0
  681. /package/lib/typescript/commonjs/{src/plugin → plugin}/withMapLibre.d.ts +0 -0
  682. /package/lib/typescript/commonjs/{src/types → types}/LngLat.d.ts +0 -0
  683. /package/lib/typescript/commonjs/{src/types → types}/PixelPoint.d.ts +0 -0
  684. /package/lib/typescript/commonjs/{src/types → types}/PixelPointBounds.d.ts +0 -0
  685. /package/lib/typescript/commonjs/{src/types → types}/codegen/UnsafeMixed.d.ts +0 -0
  686. /package/lib/typescript/commonjs/{src/utils → utils}/BridgeValue.d.ts +0 -0
  687. /package/lib/typescript/commonjs/{src/utils → utils}/StyleValue.d.ts +0 -0
  688. /package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedExtractCoordinateFromArray.d.ts +0 -0
  689. /package/lib/typescript/commonjs/{src/utils → utils}/animated/AnimatedPoint.d.ts +0 -0
  690. /package/lib/typescript/commonjs/{src/utils → utils}/findNodeHandle.d.ts +0 -0
  691. /package/lib/typescript/commonjs/{src/utils → utils}/getNativeFilter.d.ts +0 -0
  692. /package/lib/typescript/commonjs/{src/utils → utils}/getStylePropertyType.d.ts +0 -0
  693. /package/lib/typescript/commonjs/{src/utils → utils}/index.d.ts +0 -0
  694. /package/lib/typescript/module/{src/components → components}/annotations/LayerAnnotation.d.ts +0 -0
  695. /package/lib/typescript/module/{src/components → components}/annotations/callout/CalloutNativeComponent.d.ts +0 -0
  696. /package/lib/typescript/module/{src/components → components}/camera/CameraNativeComponent.d.ts +0 -0
  697. /package/lib/typescript/module/{src/components → components}/camera/NativeCameraModule.d.ts +0 -0
  698. /package/lib/typescript/module/{src/components → components}/images/ImagesNativeComponent.d.ts +0 -0
  699. /package/lib/typescript/module/{src/components → components}/layer/LayerNativeComponent.d.ts +0 -0
  700. /package/lib/typescript/module/{src/components → components}/map/NativeMapViewModule.d.ts +0 -0
  701. /package/lib/typescript/module/{src/components → components}/sources/geojson-source/GeoJSONSourceNativeComponent.d.ts +0 -0
  702. /package/lib/typescript/module/{src/components → components}/sources/geojson-source/NativeGeoJSONSourceModule.d.ts +0 -0
  703. /package/lib/typescript/module/{src/components → components}/sources/image-source/ImageSourceNativeComponent.d.ts +0 -0
  704. /package/lib/typescript/module/{src/components → components}/sources/raster-source/RasterSourceNativeComponent.d.ts +0 -0
  705. /package/lib/typescript/module/{src/components → components}/sources/vector-source/NativeVectorSourceModule.d.ts +0 -0
  706. /package/lib/typescript/module/{src/components → components}/sources/vector-source/VectorSourceNativeComponent.d.ts +0 -0
  707. /package/lib/typescript/module/{src/components → components}/user-location/UserLocationNativeComponent.d.ts +0 -0
  708. /package/lib/typescript/module/{src/components → components}/user-location/UserLocationPuck.d.ts +0 -0
  709. /package/lib/typescript/module/{src/components → components}/user-location/UserLocationPuckHeading.d.ts +0 -0
  710. /package/lib/typescript/module/{src/hooks → hooks}/useFrozenId.d.ts +0 -0
  711. /package/lib/typescript/module/{src/hooks → hooks}/useNativeBridge.d.ts +0 -0
  712. /package/lib/typescript/module/{src/modules → modules}/location/LocationManager.d.ts +0 -0
  713. /package/lib/typescript/module/{src/modules → modules}/location/NativeLocationModule.d.ts +0 -0
  714. /package/lib/typescript/module/{src/modules → modules}/log/NativeLogModule.d.ts +0 -0
  715. /package/lib/typescript/module/{src/modules → modules}/offline/NativeOfflineModule.d.ts +0 -0
  716. /package/lib/typescript/module/{src/modules → modules}/offline/OfflinePack.d.ts +0 -0
  717. /package/lib/typescript/module/{src/modules → modules}/static-map/NativeStaticMapModule.d.ts +0 -0
  718. /package/lib/typescript/module/{src/plugin → plugin}/android.d.ts +0 -0
  719. /package/lib/typescript/module/{src/plugin → plugin}/withMapLibre.d.ts +0 -0
  720. /package/lib/typescript/module/{src/types → types}/LngLat.d.ts +0 -0
  721. /package/lib/typescript/module/{src/types → types}/PixelPoint.d.ts +0 -0
  722. /package/lib/typescript/module/{src/types → types}/PixelPointBounds.d.ts +0 -0
  723. /package/lib/typescript/module/{src/types → types}/codegen/UnsafeMixed.d.ts +0 -0
  724. /package/lib/typescript/module/{src/utils → utils}/BridgeValue.d.ts +0 -0
  725. /package/lib/typescript/module/{src/utils → utils}/StyleValue.d.ts +0 -0
  726. /package/lib/typescript/module/{src/utils → utils}/animated/AnimatedExtractCoordinateFromArray.d.ts +0 -0
  727. /package/lib/typescript/module/{src/utils → utils}/animated/AnimatedPoint.d.ts +0 -0
  728. /package/lib/typescript/module/{src/utils → utils}/findNodeHandle.d.ts +0 -0
  729. /package/lib/typescript/module/{src/utils → utils}/getNativeFilter.d.ts +0 -0
  730. /package/lib/typescript/module/{src/utils → utils}/getStylePropertyType.d.ts +0 -0
  731. /package/lib/typescript/module/{src/utils → utils}/index.d.ts +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MapLibreRNStyles.d.ts","sourceRoot":"","sources":["../../../../src/types/MapLibreRNStyles.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PixelPoint.d.ts","sourceRoot":"","sources":["../../../../src/types/PixelPoint.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PixelPointBounds.d.ts","sourceRoot":"","sources":["../../../../src/types/PixelPointBounds.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,CAAC;IACpC,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC;CAC7C,CAAC"}
@@ -1,5 +1,8 @@
1
1
  import type { LngLat } from "./LngLat";
2
2
  import type { PixelPoint } from "./PixelPoint";
3
+ /**
4
+ * Event data for map press interactions.
5
+ */
3
6
  export interface PressEvent {
4
7
  /**
5
8
  * Geographic coordinates of the touch event
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PressEvent.d.ts","sourceRoot":"","sources":["../../../../src/types/PressEvent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE/C;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,KAAK,EAAE,UAAU,CAAC;CACnB"}
@@ -1,4 +1,7 @@
1
1
  import type { PressEvent } from "./PressEvent";
2
+ /**
3
+ * Press event data enriched with GeoJSON features at the pressed location.
4
+ */
2
5
  export interface PressEventWithFeatures extends PressEvent {
3
6
  features: GeoJSON.Feature[];
4
7
  }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PressEventWithFeatures.d.ts","sourceRoot":"","sources":["../../../../src/types/PressEventWithFeatures.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE/C;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,UAAU;IACxD,QAAQ,EAAE,OAAO,CAAC,OAAO,EAAE,CAAC;CAC7B"}
@@ -1,12 +1,14 @@
1
1
  import type { NativeSyntheticEvent } from "react-native";
2
- import type { PressEventWithFeatures } from "../PressEventWithFeatures";
3
- import type { ViewPadding } from "../ViewPadding";
2
+ import type { PressEventWithFeatures } from "./PressEventWithFeatures";
3
+ import type { ViewPadding } from "./ViewPadding";
4
+ /**
5
+ * Props shared by source components that support press interactions.
6
+ */
4
7
  export interface PressableSourceProps {
5
8
  /**
6
9
  * Emits on press when a child `Layer` within the hitbox has highest z-index
7
10
  *
8
- * This bubbles up to Map's onPress unless `event.stopPropagation()` is
9
- * called.
11
+ * This bubbles up to Map's onPress unless `event.stopPropagation()` is called.
10
12
  */
11
13
  onPress?: (event: NativeSyntheticEvent<PressEventWithFeatures>) => void;
12
14
  /**
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PressableSourceProps.d.ts","sourceRoot":"","sources":["../../../../src/types/PressableSourceProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEzD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;;;OAIG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,CAAC,sBAAsB,CAAC,KAAK,IAAI,CAAC;IAExE;;OAEG;IACH,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB"}
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Pixel insets used for view padding.
3
+ */
1
4
  export type ViewPadding = {
2
5
  top?: number;
3
6
  right?: number;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ViewPadding.d.ts","sourceRoot":"","sources":["../../../../src/types/ViewPadding.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnsafeMixed.d.ts","sourceRoot":"","sources":["../../../../../src/types/codegen/UnsafeMixed.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BridgeValue.d.ts","sourceRoot":"","sources":["../../../../src/utils/BridgeValue.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,YAAY,GACpB,MAAM,GACN,MAAM,GACN,OAAO,GACP,YAAY,EAAE,GACd;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,YAAY,CAAA;CAAE,CAAC;AAEpC,MAAM,MAAM,cAAc,GACtB;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,KAAK,EAAE,OAAO,CAAA;CAAE,GACnC;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GACjC;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GACjC;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GAClC;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,KAAK,EAAE,OAAO,EAAE,CAAA;CAAE,CAAC;AAExC,KAAK,eAAe,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,CAAC;AAE7E,qBAAa,WAAW;IACtB,QAAQ,EAAE,YAAY,CAAC;gBAEX,QAAQ,EAAE,YAAY;IAIlC,IAAI,IAAI,IAAI,eAAe,CAmB1B;IAED,IAAI,KAAK,IACL,CAAC,cAAc,EAAE,cAAc,CAAC,EAAE,GAClC,cAAc,EAAE,GAChB,YAAY,CA+Bf;IAED,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,cAAc;CAOtD"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StyleValue.d.ts","sourceRoot":"","sources":["../../../../src/utils/StyleValue.ts"],"names":[],"mappings":"AAEA,OAAO,EAGL,KAAK,cAAc,EACpB,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAE/D,MAAM,MAAM,UAAU,GAAG;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,cAAc,CAAC;CAC5B,CAAC;AAEF,wBAAgB,cAAc,CAC5B,KAAK,EAAE,aAAa,GAAG,SAAS,GAC/B,SAAS,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAA;CAAE,CAkC3C"}
@@ -18,8 +18,8 @@ export declare abstract class AbstractAnimatedCoordinates<State, ToValue = Anima
18
18
  */
19
19
  protected abstract onCalculate(state: State, progress: number): State;
20
20
  /**
21
- * Subclasses can override getValue to calculate value from state.
22
- * Value is typically coordinates array, but can be anything
21
+ * Subclasses can override getValue to calculate value from state. Value is
22
+ * typically coordinates array, but can be anything
23
23
  *
24
24
  * @param state - either state from initialState and/or from calculate
25
25
  */
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AbstractAnimatedCoordinates.d.ts","sourceRoot":"","sources":["../../../../../src/utils/animated/AbstractAnimatedCoordinates.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,QAAA,MAAM,oBAAoB,KAA0C,CAAC;AAErE,MAAM,MAAM,mBAAmB,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAMnD,8BAAsB,2BAA2B,CAC/C,KAAK,EACL,OAAO,GAAG,mBAAmB,EAAE,CAC/B,SAAQ,oBAAoB;gBAChB,WAAW,EAAE,mBAAmB,EAAE;IAM9C;;;;OAIG;IACH,SAAS,CAAC,QAAQ,CAAC,cAAc,CAAC,WAAW,EAAE,mBAAmB,EAAE,GAAG,KAAK;IAE5E;;;;;;OAMG;IACH,SAAS,CAAC,QAAQ,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,GAAG,KAAK;IAErE;;;;;OAKG;IACH,SAAS,CAAC,QAAQ,CAAC,UAAU,CAAC,KAAK,EAAE,KAAK,GAAG,mBAAmB,EAAE;IAElE,OAAO,CACL,aAAa,EAAE,QAAQ,CAAC,KAAK,EAC7B,iBAAiB,EAAE,QAAQ,CAAC,kBAAkB,EAC9C,MAAM,EAAE,IAAI,CACR,QAAQ,CAAC,qBAAqB,GAC9B,QAAQ,CAAC,qBAAqB,GAC9B,QAAQ,CAAC,oBAAoB,EAC/B,SAAS,CACV,GAAG;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,GACvB,QAAQ,CAAC,kBAAkB;IA0B9B,MAAM,CACJ,MAAM,EAAE,IAAI,CACV,QAAQ,CAAC,qBAAqB,EAC9B,SAAS,GAAG,iBAAiB,CAC9B,GAAG;QACF,OAAO,EAAE,OAAO,CAAC;KAClB,GACA,QAAQ,CAAC,kBAAkB;IAgB9B,MAAM,CACJ,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,EAAE,SAAS,CAAC,GAAG;QACxD,OAAO,EAAE,OAAO,CAAC;KAClB,GACA,QAAQ,CAAC,kBAAkB;IAa9B,KAAK,CACH,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,oBAAoB,EAAE,SAAS,CAAC,GAAG;QACvD,OAAO,EAAE,OAAO,CAAC;KAClB,GACA,QAAQ,CAAC,kBAAkB;IAY9B,UAAU,IAAI,mBAAmB,EAAE;CASpC"}
@@ -6,11 +6,11 @@ import { AnimatedGeoJSON } from "./AnimatedGeoJSON";
6
6
  import { AnimatedPoint } from "./AnimatedPoint";
7
7
  import { AnimatedRouteCoordinatesArray } from "./AnimatedRouteCoordinatesArray";
8
8
  export declare const Animated: {
9
- GeoJSONSource: RNAnimated.AnimatedComponent<ComponentType<Omit<import("../..").GeoJSONSourceProps & import("react").RefAttributes<import("../..").GeoJSONSourceRef>, "data"> & {
9
+ GeoJSONSource: RNAnimated.AnimatedComponent<ComponentType<Omit<import("../..").GeoJSONSourceProps, "data"> & {
10
10
  data: string | GeoJSON.GeoJSON | AnimatedGeoJSON;
11
11
  }>>;
12
12
  ImageSource: RNAnimated.AnimatedComponent<import("react").MemoExoticComponent<({ id, url, ...props }: import("../..").ImageSourceProps) => import("react/jsx-runtime").JSX.Element>>;
13
- Marker: RNAnimated.AnimatedComponent<({ id, anchor, offset, ...props }: import("../..").MarkerProps) => import("react/jsx-runtime").JSX.Element>;
13
+ Marker: RNAnimated.AnimatedComponent<({ id, anchor, offset, ref, ...props }: import("../..").MarkerProps) => import("react/jsx-runtime").JSX.Element>;
14
14
  Layer: RNAnimated.AnimatedComponent<({ id, ...props }: import("../..").LayerProps) => import("react/jsx-runtime").JSX.Element>;
15
15
  Point: typeof AnimatedPoint;
16
16
  CoordinatesArray: typeof AnimatedCoordinatesArray;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Animated.d.ts","sourceRoot":"","sources":["../../../../../src/utils/animated/Animated.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAkB,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3D,OAAO,EAAE,QAAQ,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAEtD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAC;AAC1F,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAMhF,eAAO,MAAM,QAAQ;;cAKP,MAAM,GAAG,OAAO,CAAC,OAAO,GAAG,eAAe;;;;;;;;;;CAcvD,CAAC"}
@@ -7,23 +7,23 @@ export declare class AnimatedCoordinatesArray extends AbstractAnimatedCoordinate
7
7
  /**
8
8
  * Subclasses can override to calculate initial state
9
9
  *
10
- * @param {AnimatedCoordinates} coordinatesArray - to value from animate
10
+ * @param coordinatesArray - to value from animate
11
11
  * @returns {object} - the state object
12
12
  */
13
13
  protected onInitialState(coordinatesArray: AnimatedCoordinates[]): CoordinatesState;
14
14
  /**
15
- * Subclasses can override getValue to calculate value from state.
16
- * Value is typically coordinates array, but can be anything
15
+ * Subclasses can override getValue to calculate value from state. Value is
16
+ * typically coordinates array, but can be anything
17
17
  *
18
- * @param {object} state - either state from initialState and/or from calculate
18
+ * @param state - either state from initialState and/or from calculate
19
19
  * @returns {object}
20
20
  */
21
21
  protected onGetValue(state: CoordinatesState): CoordinatesState["coords"];
22
22
  /**
23
23
  * Calculates state based on startingState and progress, returns a new state
24
24
  *
25
- * @param {object} state - state object from initialState and/or from calculate
26
- * @param {number} progress - value between 0 and 1
25
+ * @param state - state object from initialState and/or from calculate
26
+ * @param progress - value between 0 and 1
27
27
  * @returns {object} next state
28
28
  */
29
29
  onCalculate(state: CoordinatesState, progress: number): CoordinatesState;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnimatedCoordinatesArray.d.ts","sourceRoot":"","sources":["../../../../../src/utils/animated/AnimatedCoordinatesArray.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,2BAA2B,EAC3B,KAAK,mBAAmB,EACzB,MAAM,+BAA+B,CAAC;AAEvC,UAAU,gBAAgB;IACxB,MAAM,EAAE,mBAAmB,EAAE,CAAC;IAC9B,YAAY,EAAE,mBAAmB,EAAE,CAAC;CACrC;AAED,qBAAa,wBAAyB,SAAQ,2BAA2B,CAAC,gBAAgB,CAAC;IACzF;;;;;OAKG;IACH,SAAS,CAAC,cAAc,CACtB,gBAAgB,EAAE,mBAAmB,EAAE,GACtC,gBAAgB;IAUnB;;;;;;OAMG;IACH,SAAS,CAAC,UAAU,CAAC,KAAK,EAAE,gBAAgB,GAAG,gBAAgB,CAAC,QAAQ,CAAC;IAIzE;;;;;;OAMG;IACH,WAAW,CAAC,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,GAAG,gBAAgB;IA+CxE;;;;;;OAMG;IACH,SAAS,CAAC,OAAO,CACf,KAAK,EAAE,gBAAgB,EACvB,OAAO,EAAE,mBAAmB,EAAE,GAC7B,gBAAgB;CASpB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnimatedExtractCoordinateFromArray.d.ts","sourceRoot":"","sources":["../../../../../src/utils/animated/AnimatedExtractCoordinateFromArray.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAEhF,QAAA,MAAM,oBAAoB,KAA0C,CAAC;AAErE,qBAAa,kCAAmC,SAAQ,oBAAoB;IAC1E,OAAO,CAAC,KAAK,CAAgC;IAC7C,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAS;gBAEnB,KAAK,EAAE,6BAA6B,EAAE,KAAK,EAAE,MAAM;IAM/D,UAAU,IAAI,mBAAmB;IAWjC,QAAQ,IAAI,IAAI;IAIhB,QAAQ,IAAI,IAAI;CAIjB"}
@@ -10,7 +10,8 @@ type AnimatedGeoJSONValueIn = {
10
10
  coordinates: AnimatedCoordinatesArray | AnimatedRouteCoordinatesArray;
11
11
  };
12
12
  /**
13
- * AnimatedGeoJSON can be used to have animated properties inside the data property
13
+ * AnimatedGeoJSON can be used to have animated properties inside the data
14
+ * property
14
15
  *
15
16
  * Equivalent of AnimatedStyle for GeoJSON
16
17
  * https://github.com/facebook/react-native/blob/main/packages/react-native/Libraries/Animated/nodes/AnimatedStyle.js
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnimatedGeoJSON.d.ts","sourceRoot":"","sources":["../../../../../src/utils/animated/AnimatedGeoJSON.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAC3E,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAC;AAC1F,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAEhF,QAAA,MAAM,oBAAoB,KAA0C,CAAC;AAErE,KAAK,sBAAsB,GACvB;IACE,IAAI,EAAE,OAAO,CAAC;IACd,WAAW,EAAE,kCAAkC,CAAC;CACjD,GACD;IACE,IAAI,EAAE,YAAY,CAAC;IACnB,WAAW,EAAE,wBAAwB,GAAG,6BAA6B,CAAC;CACvE,CAAC;AAEN;;;;;;;;;GASG;AACH,qBAAa,eAAgB,SAAQ,oBAAoB;gBAC3C,OAAO,EAAE,sBAAsB;IAK3C,OAAO,CAAC,uBAAuB;IAsB/B,OAAO,CAAC,cAAc;IAetB,UAAU,IAAI,OAAO,CAAC,KAAK,GAAG,OAAO,CAAC,UAAU;IAUhD,QAAQ,IAAI,IAAI;IAIhB,QAAQ,IAAI,IAAI;CAIjB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnimatedPoint.d.ts","sourceRoot":"","sources":["../../../../../src/utils/animated/AnimatedPoint.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAIxC,KAAK,oBAAoB,GACrB,OAAO,CAAC,KAAK,GACb;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,WAAW,EAAE,QAAQ,CAAC,aAAa,EAAE,CAAA;CAAE,CAAC;AAE7D,QAAA,MAAM,oBAAoB,EAErB,OAAO,QAAQ,CAAC,oBAAoB,CAAC;AAE1C,qBAAa,aAAc,SAAQ,oBAAoB;IACrD,SAAS,EAAE,QAAQ,CAAC,KAAK,CAAC;IAC1B,QAAQ,EAAE,QAAQ,CAAC,KAAK,CAAC;IAEzB,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;gBAE9D,OAAO,CAAC,EAAE,oBAAoB;IAqB1C,QAAQ,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,GAAG,IAAI;IAKpC,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,GAAG,IAAI;IAKtC,aAAa,IAAI,IAAI;IAKrB,aAAa,CAAC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,KAAK,IAAI,GAAG,IAAI;IAS9D,WAAW,CAAC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,KAAK,IAAI,GAAG,MAAM;IAkB9D,cAAc,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI;IAUhC,MAAM,CAAC,EACL,OAAO,EACP,GAAG,MAAM,EACV,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,EAAE,iBAAiB,GAAG,SAAS,CAAC,GAAG;QACvE,OAAO,EAAE,OAAO,CAAC,KAAK,CAAC;KACxB,GAAG,QAAQ,CAAC,kBAAkB;IAe/B,MAAM,CAAC,EACL,OAAO,EACP,GAAG,MAAM,EACV,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,EAAE,iBAAiB,GAAG,SAAS,CAAC,GAAG;QACvE,OAAO,EAAE,OAAO,CAAC,KAAK,CAAC;KACxB,GAAG,QAAQ,CAAC,kBAAkB;IAe/B,UAAU,IAAI,OAAO,CAAC,KAAK;IAU3B,QAAQ,IAAI,IAAI;IAKhB,QAAQ,IAAI,IAAI;CAMjB"}
@@ -29,30 +29,30 @@ export declare class AnimatedRouteCoordinatesArray extends AbstractAnimatedCoord
29
29
  /**
30
30
  * Calculate initial state
31
31
  *
32
- * @param {AnimatedCoordinates[]} coordinatesArray
32
+ * @param coordinatesArray -
33
33
  * @returns {AnimatedRouteState}
34
34
  */
35
35
  protected onInitialState(coordinatesArray: AnimatedCoordinates[]): AnimatedRouteState;
36
36
  /**
37
37
  * Calculate value from state
38
38
  *
39
- * @param {AnimatedRouteState} state Previous state
39
+ * @param state - Previous state
40
40
  * @returns {AnimatedCoordinates[]}
41
41
  */
42
42
  protected onGetValue(state: AnimatedRouteState): AnimatedCoordinates[];
43
43
  /**
44
44
  * Calculates state based on startingState and progress, returns a new state
45
45
  *
46
- * @param {AnimatedRouteState} state Previous state
47
- * @param {number} progress Value between 0 and 1
46
+ * @param state - Previous state
47
+ * @param progress - Value between 0 and 1
48
48
  * @returns {AnimatedRouteState}
49
49
  */
50
50
  protected onCalculate(state: AnimatedRouteState, progress: number): AnimatedRouteState;
51
51
  /**
52
52
  * Subclasses can override to start a new animation
53
53
  *
54
- * @param {AnimatedRouteState} state
55
- * @param {*} toValue - to value from animate
54
+ * @param state -
55
+ * @param toValue - to value from animate
56
56
  * @returns {object} The state
57
57
  */
58
58
  protected onStart(state: AnimatedRouteState, toValue: AnimatedRouteToValue): AnimatedRouteState;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnimatedRouteCoordinatesArray.d.ts","sourceRoot":"","sources":["../../../../../src/utils/animated/AnimatedRouteCoordinatesArray.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,KAAK,KAAK,EAGV,KAAK,KAAK,EACX,MAAM,eAAe,CAAC;AAIvB,OAAO,EACL,2BAA2B,EAC3B,KAAK,mBAAmB,EACzB,MAAM,+BAA+B,CAAC;AAEvC,UAAU,oBAAoB;IAC5B,GAAG,EAGC;QAAE,KAAK,EAAE,KAAK,GAAG,mBAAmB,CAAA;KAAE;IACxC;;OAEG;OACD;QACE,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,KAAK,CAAC;KACf,CAAC;CACP;AAED,UAAU,kBAAkB;IAC1B,QAAQ,CAAC,EAAE,mBAAmB,EAAE,CAAC;IACjC,SAAS,EAAE,mBAAmB,EAAE,CAAC;IACjC,GAAG,EAAE;QACH,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,EAAE,EAAE,MAAM,CAAC;KACZ,GAAG,CAAC;QAAE,KAAK,CAAC,EAAE,KAAK,GAAG,mBAAmB,CAAA;KAAE,GAAG;QAAE,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CACpE;AAED,qBAAa,6BAA8B,SAAQ,2BAA2B,CAC5E,kBAAkB,EAClB,oBAAoB,CACrB;IACC;;;;;OAKG;IACH,SAAS,CAAC,cAAc,CACtB,gBAAgB,EAAE,mBAAmB,EAAE,GACtC,kBAAkB;IASrB;;;;;OAKG;IACH,SAAS,CAAC,UAAU,CAAC,KAAK,EAAE,kBAAkB,GAAG,mBAAmB,EAAE;IAItE;;;;;;OAMG;IACH,SAAS,CAAC,WAAW,CACnB,KAAK,EAAE,kBAAkB,EACzB,QAAQ,EAAE,MAAM,GACf,kBAAkB;IAgCrB;;;;;;OAMG;IACH,SAAS,CAAC,OAAO,CACf,KAAK,EAAE,kBAAkB,EACzB,OAAO,EAAE,oBAAoB,GAC5B,kBAAkB;IA4BrB,IAAI,aAAa,IAAI,mBAAmB,EAAE,CAEzC;CACF"}
@@ -1,7 +1,7 @@
1
1
  import type { AllLayerStyle } from "../types/MapLibreRNStyles";
2
2
  /**
3
- * Converts style spec compliant paint/layout objects (kebab-case)
4
- * to internal style format (camelCase).
3
+ * Converts style spec compliant paint/layout objects (kebab-case) to internal
4
+ * style format (camelCase).
5
5
  *
6
6
  * @example
7
7
  * convertToInternalStyle({ 'fill-color': 'red' })
@@ -9,8 +9,8 @@ import type { AllLayerStyle } from "../types/MapLibreRNStyles";
9
9
  */
10
10
  export declare function convertToInternalStyle(specStyle: Record<string, unknown> | undefined): Partial<AllLayerStyle> | undefined;
11
11
  /**
12
- * Merges paint and layout props into a single internal style object.
13
- * Priority order (highest to lowest): paint > layout > style (deprecated)
12
+ * Merges paint and layout props into a single internal style object. Priority
13
+ * order (highest to lowest): paint > layout > style (deprecated)
14
14
  */
15
15
  export declare function mergeStyleProps(paint: Record<string, unknown> | undefined, layout: Record<string, unknown> | undefined, deprecatedStyle: AllLayerStyle | undefined): AllLayerStyle | undefined;
16
16
  //# sourceMappingURL=convertStyleSpec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"convertStyleSpec.d.ts","sourceRoot":"","sources":["../../../../src/utils/convertStyleSpec.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAa/D;;;;;;;GAOG;AACH,wBAAgB,sBAAsB,CACpC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,GAC7C,OAAO,CAAC,aAAa,CAAC,GAAG,SAAS,CAYpC;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAC7B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,EAC1C,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,EAC3C,eAAe,EAAE,aAAa,GAAG,SAAS,GACzC,aAAa,GAAG,SAAS,CAe3B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"findNodeHandle.d.ts","sourceRoot":"","sources":["../../../../src/utils/findNodeHandle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGlC,eAAO,MAAM,cAAc,GAAI,KAAK,SAAS,GAAG,IAAI,WAUnD,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getNativeFilter.d.ts","sourceRoot":"","sources":["../../../../src/utils/getNativeFilter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AAE5E,wBAAgB,eAAe,CAC7B,MAAM,EAAE,mBAAmB,GAAG,SAAS,GACtC,OAAO,EAAE,CAUX"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getStylePropertyType.d.ts","sourceRoot":"","sources":["../../../../src/utils/getStylePropertyType.ts"],"names":[],"mappings":"AAsNA,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCpB,CAAC;AAEF,wBAAgB,oBAAoB,CAClC,aAAa,EAAE,MAAM,OAAO,eAAe,GAC1C,MAAM,CAUR"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,SAAS,EACT,KAAK,YAAY,EACjB,KAAK,SAAS,EACf,MAAM,OAAO,CAAC;AACf,OAAO,EAKL,KAAK,mBAAmB,EAEzB,MAAM,cAAc,CAAC;AAEtB,wBAAgB,SAAS,IAAI,OAAO,CAEnC;AAED,wBAAgB,UAAU,CAAC,EAAE,EAAE,OAAO,GAAG,EAAE,IAAI,QAAQ,CAEtD;AAED,wBAAgB,QAAQ,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,MAAM,CAEpD;AAED,wBAAgB,WAAW,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,SAAS,CAE1D;AAED,wBAAgB,QAAQ,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,MAAM,CAEpD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,IAAI,OAAO,CAExD;AAED,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,MAAM,GACN,OAAO,GACP,IAAI,GACJ;IAAE,CAAC,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;CAAE,GAC1B,SAAS,EAAE,CAAC;AAEhB,wBAAgB,gBAAgB,CAAC,UAAU,GAAG,SAAS,EACrD,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,SAAS,EACpB,IAAI,GAAE,SAAS,EAAO,GACrB,UAAU,CA0BZ;AAED,wBAAgB,2BAA2B,CACzC,QAAQ,EAAE,SAAS,EACnB,UAAU,GAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAAO,GACzC,YAAY,EAAE,GAAG,IAAI,CAWvB;AAED,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,mBAAmB,GAAG,MAAM,CAGtE;AAED,wBAAgB,YAAY,CAAC,IAAI,GAAE,MAAM,GAAG,MAAW,GAAG,MAAM,CAE/D"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maplibre/maplibre-react-native",
3
3
  "description": "React Native library for creating maps with MapLibre Native for Android & iOS",
4
- "version": "11.0.0-beta.3",
4
+ "version": "11.0.0-beta.30",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "provenance": true
@@ -25,37 +25,31 @@
25
25
  "url": "https://github.com/maplibre/maplibre-react-native/issues"
26
26
  },
27
27
  "scripts": {
28
- "codegen": "tsx scripts/codegen.ts",
29
- "format": "prettier --write .",
28
+ "format:clang-format": "find ios -type f \\( -name \"*.h\" -o -name \"*.m\" -o -name \"*.mm\" \\) -exec clang-format -i {} +",
29
+ "format:ktlint": "ktlint --format \"android/src/**/*.kt\"",
30
30
  "lint": "yarn lint:tsc && yarn lint:eslint",
31
- "lint:tsc": "tsc --project ./ && tsc --project ./src/__tests__ && tsc --project ./examples/shared && yarn docs lint:tsc",
31
+ "lint:tsc": "tsc --project ./ && tsc --project ./src/__tests__",
32
32
  "lint:eslint": "eslint ./ --max-warnings 0",
33
33
  "lint:eslint:fix": "eslint ./ --fix",
34
34
  "test": "jest",
35
- "prepack": "bob build",
36
- "docs": "yarn workspace docs",
37
- "examples:react-native": "yarn workspace react-native-app",
38
- "examples:expo": "yarn workspace expo-app"
35
+ "prepack": "cp ../LICENSE.md ./LICENSE.md && cp ../README.md ./README.md && bob build",
36
+ "postpack": "rm ./LICENSE.md && rm ./README.md"
39
37
  },
40
- "workspaces": [
41
- "docs",
42
- "examples/*"
43
- ],
44
38
  "packageManager": "yarn@4.10.3",
45
39
  "main": "./lib/commonjs/index.js",
46
40
  "module": "./lib/module/index.js",
47
41
  "source": "./src/index.ts",
48
- "types": "./lib/typescript/module/src/index.d.ts",
42
+ "types": "./lib/typescript/module/index.d.ts",
49
43
  "exports": {
50
44
  ".": {
51
45
  "import": {
52
46
  "source": "./src/index.ts",
53
- "types": "./lib/typescript/module/src/index.d.ts",
47
+ "types": "./lib/typescript/module/index.d.ts",
54
48
  "default": "./lib/module/index.js"
55
49
  },
56
50
  "require": {
57
51
  "source": "./src/index.ts",
58
- "types": "./lib/typescript/commonjs/src/index.d.ts",
52
+ "types": "./lib/typescript/commonjs/index.d.ts",
59
53
  "default": "./lib/commonjs/index.js"
60
54
  }
61
55
  },
@@ -67,11 +61,11 @@
67
61
  },
68
62
  "./plugin": {
69
63
  "import": {
70
- "types": "./lib/typescript/module/src/plugin/withMapLibre.d.ts",
64
+ "types": "./lib/typescript/module/plugin/withMapLibre.d.ts",
71
65
  "default": "./lib/module/plugin/withMapLibre.js"
72
66
  },
73
67
  "require": {
74
- "types": "./lib/typescript/commonjs/src/plugin/withMapLibre.d.ts",
68
+ "types": "./lib/typescript/commonjs/plugin/withMapLibre.d.ts",
75
69
  "default": "./lib/commonjs/plugin/withMapLibre.js"
76
70
  }
77
71
  }
@@ -139,16 +133,6 @@
139
133
  "MLRNRasterSource": "MLRNRasterSourceComponentView",
140
134
  "MLRNGeoJSONSource": "MLRNGeoJSONSourceComponentView",
141
135
  "MLRNVectorSource": "MLRNVectorSourceComponentView"
142
- },
143
- "modulesProvider": {
144
- "MLRNCameraModule": "MLRNCameraModule",
145
- "MLRNGeoJSONSourceModule": "MLRNGeoJSONSourceModule",
146
- "MLRNLocationModule": "MLRNLocationModule",
147
- "MLRNLogModule": "MLRNLogModule",
148
- "MLRNMapViewModule": "MLRNMapViewModule",
149
- "MLRNOfflineModule": "MLRNOfflineModule",
150
- "MLRNStaticMapModule": "MLRNStaticMapModule",
151
- "MLRNVectorSourceModule": "MLRNVectorSourceModule"
152
136
  }
153
137
  }
154
138
  },
@@ -171,40 +155,35 @@
171
155
  }
172
156
  },
173
157
  "dependencies": {
174
- "@maplibre/maplibre-gl-style-spec": "24.3.1",
158
+ "@maplibre/maplibre-gl-style-spec": "24.8.1",
175
159
  "@turf/distance": "^7.1.0",
176
160
  "@turf/helpers": "^7.1.0",
177
161
  "@turf/length": "^7.1.0",
178
162
  "@turf/nearest-point-on-line": "^7.1.0"
179
163
  },
180
164
  "devDependencies": {
181
- "@expo/config-plugins": "~54.0.2",
182
- "@react-native-community/cli": "^20.0.2",
183
- "@react-native/babel-preset": "0.81.5",
165
+ "@expo/config-plugins": "~55.0.4",
166
+ "@react-native-community/cli": "^20.1.1",
167
+ "@react-native/babel-preset": "0.84.1",
184
168
  "@semantic-release/changelog": "^6.0.3",
185
169
  "@semantic-release/exec": "^7.1.0",
186
170
  "@semantic-release/git": "^10.0.1",
187
171
  "@testing-library/react-native": "^13.3.3",
188
- "@types/ejs": "^3.1.5",
189
172
  "@types/geojson": "^7946.0.16",
190
- "@types/node": "^24.10.0",
191
- "@types/react": "^19.1.13",
192
- "documentation": "^14.0.0",
193
- "ejs": "^4.0.1",
173
+ "@types/jest": "^29.5.14",
174
+ "@types/node": "^24.1.0",
175
+ "@types/react": "^19.2.14",
194
176
  "eslint": "^8.57.1",
195
177
  "eslint-config-universe": "15.0.3",
196
- "expo-module-scripts": "^5.0.7",
197
178
  "jest": "^29.7.0",
198
- "prettier": "3.7.4",
199
- "react": "19.1.0",
200
- "react-docgen": "^8.0.1",
201
- "react-native": "0.81.5",
179
+ "prettier": "3.8.1",
180
+ "react": "19.2.3",
181
+ "react-native": "0.84.1",
202
182
  "react-native-builder-bob": "0.40.17",
203
- "react-test-renderer": "19.1.0",
183
+ "react-test-renderer": "19.2.3",
204
184
  "semantic-release": "^25.0.1",
205
185
  "snapshot-diff": "^0.10.0",
206
- "ts-node": "^10.9.2",
207
- "tsx": "^4.20.5",
186
+ "ts-node": "10.9.2",
208
187
  "typescript": "^5.9.2"
209
188
  }
210
189
  }
@@ -55,7 +55,7 @@ export interface CalloutProps extends Omit<ViewProps, "style"> {
55
55
  /**
56
56
  * Style property for the CalloutNativeComponent.
57
57
  *
58
- * @experimental Use at your own risk.
58
+ * Use at your own risk.
59
59
  */
60
60
  style?: ViewStyle;
61
61
 
@@ -81,7 +81,8 @@ export interface CalloutProps extends Omit<ViewProps, "style"> {
81
81
  }
82
82
 
83
83
  /**
84
- * Callout that displays information about a selected annotation near the annotation.
84
+ * Callout that displays information about a selected annotation near the
85
+ * annotation.
85
86
  */
86
87
  export const Callout = ({
87
88
  title,
@@ -2,11 +2,14 @@ import {
2
2
  Component,
3
3
  type ComponentProps,
4
4
  type ReactElement,
5
+ type Ref,
6
+ useImperativeHandle,
5
7
  useRef,
6
8
  } from "react";
7
9
  import {
8
- type NativeMethods,
10
+ type NativeSyntheticEvent,
9
11
  Platform,
12
+ type ReactNativeElement,
10
13
  View,
11
14
  type ViewProps,
12
15
  } from "react-native";
@@ -16,11 +19,31 @@ import { useFrozenId } from "../../../hooks/useFrozenId";
16
19
  import { type Anchor, anchorToNative } from "../../../types/Anchor";
17
20
  import type { LngLat } from "../../../types/LngLat";
18
21
  import type { PixelPoint } from "../../../types/PixelPoint";
22
+ import type { PressEvent } from "../../../types/PressEvent";
19
23
  import {
20
24
  ViewAnnotation,
21
25
  type ViewAnnotationRef,
22
26
  } from "../view-annotation/ViewAnnotation";
23
27
 
28
+ export type NativeMarkerRef = Component<
29
+ ComponentProps<typeof MarkerViewNativeComponent>
30
+ > &
31
+ ReactNativeElement;
32
+
33
+ /**
34
+ * Event emitted by a Marker on press.
35
+ */
36
+ export type MarkerEvent = PressEvent & {
37
+ id: string;
38
+ };
39
+
40
+ export interface MarkerRef {
41
+ /**
42
+ * Returns the native ref for Reanimated v4 compatibility.
43
+ */
44
+ getAnimatableRef(): NativeMarkerRef | null;
45
+ }
46
+
24
47
  export interface MarkerProps extends ViewProps {
25
48
  /**
26
49
  * A string that uniquely identifies the marker.
@@ -28,25 +51,27 @@ export interface MarkerProps extends ViewProps {
28
51
  id?: string;
29
52
 
30
53
  /**
31
- * The center point (specified as a map coordinate) of the marker.
32
- * See also #anchor.
54
+ * The center point (specified as a map coordinate) of the marker. See also
55
+ * #anchor.
33
56
  */
34
57
  lngLat: LngLat;
35
58
 
36
59
  /**
37
- * Specifies the anchor being set on a particular point of the annotation.
38
- * The anchor indicates which part of the marker should be placed closest to the coordinate.
39
- * Defaults to "center".
60
+ * Specifies the anchor being set on a particular point of the annotation. The
61
+ * anchor indicates which part of the marker should be placed closest to the
62
+ * coordinate.
40
63
  *
41
- * @see https://maplibre.org/maplibre-gl-js/docs/API/type-aliases/PositionAnchor/
64
+ * @see {@link https://maplibre.org/maplibre-gl-js/docs/API/type-aliases/PositionAnchor/}
65
+ * @defaultValue "center"
42
66
  */
43
67
  anchor?: Anchor;
44
68
 
45
69
  /**
46
- * The offset in pixels to apply relative to the anchor.
47
- * Negative values indicate left and up.
70
+ * The offset in pixels to apply relative to the anchor. Negative values
71
+ * indicate left and up.
48
72
  *
49
- * @see https://maplibre.org/maplibre-gl-js/docs/API/type-aliases/MarkerOptions/#offset
73
+ * @see {@link https://maplibre.org/maplibre-gl-js/docs/API/type-aliases/MarkerOptions/#offset}
74
+ * @defaultValue [0, 0]
50
75
  */
51
76
  offset?: PixelPoint;
52
77
 
@@ -58,37 +83,64 @@ export interface MarkerProps extends ViewProps {
58
83
  selected?: boolean;
59
84
 
60
85
  /**
61
- * Expects one child - can be container with multiple elements
86
+ * This callback is fired when the marker is pressed.
87
+ */
88
+ onPress?: (event: NativeSyntheticEvent<MarkerEvent>) => void;
89
+
90
+ /**
91
+ * Expects one child - can be a View with multiple elements.
62
92
  */
63
93
  children: ReactElement;
94
+
95
+ /**
96
+ * Ref to access Marker methods.
97
+ */
98
+ ref?: Ref<MarkerRef>;
64
99
  }
65
100
 
66
101
  /**
67
102
  * Marker allows you to place an interactive React Native View on the map.
68
103
  *
69
- * If you have static view consider using ViewAnnotation or SymbolLayer for better performance.
104
+ * If you have static view consider using ViewAnnotation or SymbolLayer for
105
+ * better performance.
70
106
  *
71
107
  * Implemented through:
72
108
  * - Android: Native Views placed on the map projection
73
- * - iOS: [MLNPointAnnotation](https://maplibre.org/maplibre-native/ios/latest/documentation/maplibre/mlnpointannotation/)
109
+ * - iOS:
110
+ * [MLNPointAnnotation](https://maplibre.org/maplibre-native/ios/latest/documentation/maplibre/mlnpointannotation/)
74
111
  */
75
112
  export const Marker = ({
76
113
  id,
77
114
  anchor = "center",
78
115
  offset,
116
+ ref,
79
117
  ...props
80
118
  }: MarkerProps) => {
81
- const nativeRef = useRef<
82
- Component<ComponentProps<typeof MarkerViewNativeComponent>> &
83
- Readonly<NativeMethods>
84
- >(null);
119
+ const nativeRef = useRef<NativeMarkerRef>(null);
120
+ const viewAnnotationRef = useRef<ViewAnnotationRef>(null);
85
121
 
86
122
  const nativeAnchor = anchorToNative(anchor);
87
123
  const nativeOffset = offset ? { x: offset[0], y: offset[1] } : undefined;
88
124
 
89
- const viewAnnotationRef = useRef<ViewAnnotationRef>(null);
90
125
  const frozenId = useFrozenId(id);
91
126
 
127
+ useImperativeHandle(ref, () => ({
128
+ // Reanimated v4 compatibility: createAnimatedComponent looks for _viewConfig but native has __viewConfig
129
+ getAnimatableRef: () => {
130
+ if (Platform.OS === "ios") {
131
+ return viewAnnotationRef.current?.getAnimatableRef() as NativeMarkerRef | null;
132
+ }
133
+ return nativeRef.current
134
+ ? new Proxy(nativeRef.current, {
135
+ get: (target, prop) =>
136
+ prop === "_viewConfig"
137
+ ? (target as unknown as { __viewConfig: unknown }).__viewConfig
138
+ : target[prop as keyof typeof target],
139
+ })
140
+ : null;
141
+ },
142
+ }));
143
+
92
144
  if (Platform.OS === "ios") {
93
145
  return (
94
146
  <ViewAnnotation