react-native-map4d-map-dtqg 0.1.1 → 0.1.3

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 (229) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +133 -88
  3. package/android/build.gradle +60 -60
  4. package/android/src/main/AndroidManifest.xml +4 -4
  5. package/android/src/main/java/com/reactnativemap4dmap/ImageUtils.java +87 -87
  6. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapModule.java +298 -298
  7. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapPackage.java +35 -35
  8. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapViewManager.java +31 -31
  9. package/android/src/main/java/com/reactnativemap4dmap/RMFBuilding.java +167 -167
  10. package/android/src/main/java/com/reactnativemap4dmap/RMFBuildingManager.java +121 -121
  11. package/android/src/main/java/com/reactnativemap4dmap/RMFCircle.java +105 -105
  12. package/android/src/main/java/com/reactnativemap4dmap/RMFCircleManager.java +121 -121
  13. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRenderer.java +502 -502
  14. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRendererManager.java +143 -143
  15. package/android/src/main/java/com/reactnativemap4dmap/RMFFeature.java +17 -17
  16. package/android/src/main/java/com/reactnativemap4dmap/RMFMapView.java +1172 -1172
  17. package/android/src/main/java/com/reactnativemap4dmap/RMFMapViewManager.java +231 -226
  18. package/android/src/main/java/com/reactnativemap4dmap/RMFMarker.java +412 -412
  19. package/android/src/main/java/com/reactnativemap4dmap/RMFMarkerManager.java +211 -211
  20. package/android/src/main/java/com/reactnativemap4dmap/RMFPOI.java +222 -222
  21. package/android/src/main/java/com/reactnativemap4dmap/RMFPOIManager.java +119 -119
  22. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygon.java +172 -172
  23. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygonManager.java +147 -147
  24. package/android/src/main/java/com/reactnativemap4dmap/RMFPolyline.java +146 -146
  25. package/android/src/main/java/com/reactnativemap4dmap/RMFPolylineManager.java +137 -137
  26. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlay.java +95 -95
  27. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlayManager.java +64 -64
  28. package/android/src/main/java/com/reactnativemap4dmap/SizeReportingShadowNode.java +31 -31
  29. package/android/src/main/java/com/reactnativemap4dmap/ViewAttacherGroup.java +31 -31
  30. package/android/src/main/java/com/reactnativemap4dmap/ViewChangesTracker.java +70 -70
  31. package/android/src/main/java/vn/map4d/map/annotations/RMFBitmapDescriptor.java +9 -9
  32. package/ios/Map4dMap.h +7 -7
  33. package/ios/Map4dMap.m +14 -14
  34. package/ios/Map4dMap.xcodeproj/project.pbxproj +2 -2
  35. package/ios/Map4dMapViewManager.m +34 -34
  36. package/ios/RCTConvert+Map4dMap.h +33 -33
  37. package/ios/RCTConvert+Map4dMap.m +112 -112
  38. package/ios/RMFCircle.h +37 -37
  39. package/ios/RMFCircle.m +100 -100
  40. package/ios/RMFCircleManager.h +18 -18
  41. package/ios/RMFCircleManager.m +155 -155
  42. package/ios/RMFCircleMap4d.h +23 -23
  43. package/ios/RMFCircleMap4d.m +13 -13
  44. package/ios/RMFCoordinate.h +22 -22
  45. package/ios/RMFCoordinate.m +13 -13
  46. package/ios/RMFDirectionsMarkerOptions.h +24 -24
  47. package/ios/RMFDirectionsMarkerOptions.m +23 -23
  48. package/ios/RMFDirectionsRenderer.h +47 -47
  49. package/ios/RMFDirectionsRenderer.m +182 -182
  50. package/ios/RMFDirectionsRendererManager.h +17 -17
  51. package/ios/RMFDirectionsRendererManager.m +84 -84
  52. package/ios/RMFDirectionsRendererMap4d.h +21 -21
  53. package/ios/RMFDirectionsRendererMap4d.m +12 -12
  54. package/ios/RMFDummyView.h +6 -6
  55. package/ios/RMFDummyView.m +12 -12
  56. package/ios/RMFEventResponse.h +39 -39
  57. package/ios/RMFEventResponse.m +98 -98
  58. package/ios/RMFIcon.h +24 -24
  59. package/ios/RMFIcon.m +35 -35
  60. package/ios/RMFMapView.h +84 -84
  61. package/ios/RMFMapView.m +376 -376
  62. package/ios/RMFMapViewManager.h +17 -17
  63. package/ios/RMFMapViewManager.m +509 -493
  64. package/ios/RMFMarker.h +57 -57
  65. package/ios/RMFMarker.m +267 -267
  66. package/ios/RMFMarkerManager.h +17 -17
  67. package/ios/RMFMarkerManager.m +156 -156
  68. package/ios/RMFMarkerMap4d.h +19 -19
  69. package/ios/RMFMarkerMap4d.m +13 -13
  70. package/ios/RMFPOI.h +38 -38
  71. package/ios/RMFPOI.m +123 -123
  72. package/ios/RMFPOIManager.h +18 -18
  73. package/ios/RMFPOIManager.m +168 -168
  74. package/ios/RMFPOIMap4d.h +22 -22
  75. package/ios/RMFPOIMap4d.m +12 -12
  76. package/ios/RMFPolygon.h +41 -41
  77. package/ios/RMFPolygon.m +106 -106
  78. package/ios/RMFPolygonManager.h +18 -18
  79. package/ios/RMFPolygonManager.m +141 -141
  80. package/ios/RMFPolygonMap4d.h +23 -23
  81. package/ios/RMFPolygonMap4d.m +15 -15
  82. package/ios/RMFPolyline.h +38 -38
  83. package/ios/RMFPolyline.m +101 -101
  84. package/ios/RMFPolylineManager.h +18 -18
  85. package/ios/RMFPolylineManager.m +139 -139
  86. package/ios/RMFPolylineMap4d.h +22 -22
  87. package/ios/RMFPolylineMap4d.m +15 -15
  88. package/ios/building/RMFBuilding.h +41 -41
  89. package/ios/building/RMFBuilding.m +104 -104
  90. package/ios/building/RMFBuildingManager.h +19 -19
  91. package/ios/building/RMFBuildingManager.m +133 -133
  92. package/ios/building/RMFBuildingMap4d.h +23 -23
  93. package/ios/building/RMFBuildingMap4d.m +15 -15
  94. package/ios/overlays/RMFTileOverlay.h +36 -36
  95. package/ios/overlays/RMFTileOverlay.m +64 -64
  96. package/ios/overlays/RMFTileOverlayManager.h +17 -17
  97. package/ios/overlays/RMFTileOverlayManager.m +27 -27
  98. package/lib/commonjs/components/MFBanDoSo.js +109 -0
  99. package/lib/commonjs/components/MFBanDoSo.js.map +1 -0
  100. package/lib/commonjs/components/MFBuilding.js +26 -26
  101. package/lib/commonjs/components/MFBuilding.js.map +1 -1
  102. package/lib/commonjs/components/MFCircle.js +20 -20
  103. package/lib/commonjs/components/MFCircle.js.map +1 -1
  104. package/lib/commonjs/components/MFDirectionsRenderer.js +32 -32
  105. package/lib/commonjs/components/MFDirectionsRenderer.js.map +1 -1
  106. package/lib/commonjs/components/MFMapView.js +89 -70
  107. package/lib/commonjs/components/MFMapView.js.map +1 -1
  108. package/lib/commonjs/components/MFMarker.js +35 -35
  109. package/lib/commonjs/components/MFMarker.js.map +1 -1
  110. package/lib/commonjs/components/MFPOI.js +20 -20
  111. package/lib/commonjs/components/MFPOI.js.map +1 -1
  112. package/lib/commonjs/components/MFPolygon.js +22 -22
  113. package/lib/commonjs/components/MFPolygon.js.map +1 -1
  114. package/lib/commonjs/components/MFPolyline.js +18 -18
  115. package/lib/commonjs/components/MFPolyline.js.map +1 -1
  116. package/lib/commonjs/components/MFTileOverlay.js +9 -9
  117. package/lib/commonjs/components/MFTileOverlay.js.map +1 -1
  118. package/lib/commonjs/components/Map4dMapView.js.map +1 -1
  119. package/lib/commonjs/components/extends/AreaFocusManager.js +205 -0
  120. package/lib/commonjs/components/extends/AreaFocusManager.js.map +1 -0
  121. package/lib/commonjs/components/extends/AreaFocuser.js +21 -259
  122. package/lib/commonjs/components/extends/AreaFocuser.js.map +1 -1
  123. package/lib/commonjs/components/extends/BoundHelper.js +36 -0
  124. package/lib/commonjs/components/extends/BoundHelper.js.map +1 -0
  125. package/lib/commonjs/components/extends/area/AreaFocusAreas.js +167 -0
  126. package/lib/commonjs/components/extends/area/AreaFocusAreas.js.map +1 -0
  127. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js +164 -0
  128. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js.map +1 -0
  129. package/lib/commonjs/components/extends/area/AreaFocusSession.js +100 -0
  130. package/lib/commonjs/components/extends/area/AreaFocusSession.js.map +1 -0
  131. package/lib/commonjs/components/extends/area/AreaFocusTypes.js +40 -0
  132. package/lib/commonjs/components/extends/area/AreaFocusTypes.js.map +1 -0
  133. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js +2288 -0
  134. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js.map +1 -0
  135. package/lib/commonjs/components/internal/GeojsonStyleUtils.js +139 -0
  136. package/lib/commonjs/components/internal/GeojsonStyleUtils.js.map +1 -0
  137. package/lib/commonjs/index.js +8 -0
  138. package/lib/commonjs/index.js.map +1 -1
  139. package/lib/module/components/MFBanDoSo.js +92 -0
  140. package/lib/module/components/MFBanDoSo.js.map +1 -0
  141. package/lib/module/components/MFBuilding.js +26 -26
  142. package/lib/module/components/MFBuilding.js.map +1 -1
  143. package/lib/module/components/MFCircle.js +20 -20
  144. package/lib/module/components/MFCircle.js.map +1 -1
  145. package/lib/module/components/MFDirectionsRenderer.js +32 -32
  146. package/lib/module/components/MFDirectionsRenderer.js.map +1 -1
  147. package/lib/module/components/MFMapView.js +88 -70
  148. package/lib/module/components/MFMapView.js.map +1 -1
  149. package/lib/module/components/MFMarker.js +35 -35
  150. package/lib/module/components/MFMarker.js.map +1 -1
  151. package/lib/module/components/MFPOI.js +20 -20
  152. package/lib/module/components/MFPOI.js.map +1 -1
  153. package/lib/module/components/MFPolygon.js +22 -22
  154. package/lib/module/components/MFPolygon.js.map +1 -1
  155. package/lib/module/components/MFPolyline.js +18 -18
  156. package/lib/module/components/MFPolyline.js.map +1 -1
  157. package/lib/module/components/MFTileOverlay.js +9 -9
  158. package/lib/module/components/MFTileOverlay.js.map +1 -1
  159. package/lib/module/components/Map4dMapView.js.map +1 -1
  160. package/lib/module/components/extends/AreaFocusManager.js +193 -0
  161. package/lib/module/components/extends/AreaFocusManager.js.map +1 -0
  162. package/lib/module/components/extends/AreaFocuser.js +21 -259
  163. package/lib/module/components/extends/AreaFocuser.js.map +1 -1
  164. package/lib/module/components/extends/BoundHelper.js +29 -0
  165. package/lib/module/components/extends/BoundHelper.js.map +1 -0
  166. package/lib/module/components/extends/area/AreaFocusAreas.js +156 -0
  167. package/lib/module/components/extends/area/AreaFocusAreas.js.map +1 -0
  168. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js +153 -0
  169. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js.map +1 -0
  170. package/lib/module/components/extends/area/AreaFocusSession.js +93 -0
  171. package/lib/module/components/extends/area/AreaFocusSession.js.map +1 -0
  172. package/lib/module/components/extends/area/AreaFocusTypes.js +33 -0
  173. package/lib/module/components/extends/area/AreaFocusTypes.js.map +1 -0
  174. package/lib/module/components/internal/DefaultRoadmapStyle.js +2281 -0
  175. package/lib/module/components/internal/DefaultRoadmapStyle.js.map +1 -0
  176. package/lib/module/components/internal/GeojsonStyleUtils.js +130 -0
  177. package/lib/module/components/internal/GeojsonStyleUtils.js.map +1 -0
  178. package/lib/module/index.js +2 -1
  179. package/lib/module/index.js.map +1 -1
  180. package/lib/typescript/components/Map4dMapView.d.ts +7 -7
  181. package/package.json +152 -152
  182. package/react-native-map4d-map.podspec +20 -20
  183. package/src/components/MFBanDoSo.js +124 -0
  184. package/src/components/MFBuilding.js +187 -187
  185. package/src/components/MFCircle.js +173 -173
  186. package/src/components/MFDirectionsRenderer.js +237 -237
  187. package/src/components/MFMapView.js +464 -447
  188. package/src/components/MFMarker.js +246 -246
  189. package/src/components/MFPOI.js +184 -184
  190. package/src/components/MFPolygon.js +186 -186
  191. package/src/components/MFPolyline.js +172 -172
  192. package/src/components/MFTileOverlay.js +45 -45
  193. package/src/components/Map4dMapView.tsx +26 -26
  194. package/src/components/extends/AreaFocusManager.js +196 -0
  195. package/src/components/extends/AreaFocuser.js +61 -338
  196. package/src/components/extends/BoundHelper.js +32 -0
  197. package/src/components/extends/area/AreaFocusAreas.js +164 -0
  198. package/src/components/extends/area/AreaFocusGeometryUtils.js +164 -0
  199. package/src/components/extends/area/AreaFocusSession.js +100 -0
  200. package/src/components/extends/area/AreaFocusTypes.js +36 -0
  201. package/src/components/internal/DefaultRoadmapStyle.js +3365 -0
  202. package/src/components/internal/GeojsonStyleUtils.js +143 -0
  203. package/src/index.js +25 -23
  204. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  205. package/android/.gradle/8.9/checksums/md5-checksums.bin +0 -0
  206. package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
  207. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  208. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  209. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  210. package/android/.gradle/8.9/gc.properties +0 -0
  211. package/android/.gradle/9.0-milestone-1/checksums/checksums.lock +0 -0
  212. package/android/.gradle/9.0-milestone-1/checksums/md5-checksums.bin +0 -0
  213. package/android/.gradle/9.0-milestone-1/checksums/sha1-checksums.bin +0 -0
  214. package/android/.gradle/9.0-milestone-1/fileChanges/last-build.bin +0 -0
  215. package/android/.gradle/9.0-milestone-1/fileHashes/fileHashes.lock +0 -0
  216. package/android/.gradle/9.0-milestone-1/gc.properties +0 -0
  217. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  218. package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
  219. package/android/.gradle/config.properties +0 -2
  220. package/android/.gradle/vcs-1/gc.properties +0 -0
  221. package/android/.idea/AndroidProjectSystem.xml +0 -6
  222. package/android/.idea/caches/deviceStreaming.xml +0 -1570
  223. package/android/.idea/copilot.data.migration.ask2agent.xml +0 -6
  224. package/android/.idea/gradle.xml +0 -12
  225. package/android/.idea/migrations.xml +0 -10
  226. package/android/.idea/misc.xml +0 -10
  227. package/android/.idea/runConfigurations.xml +0 -17
  228. package/android/.idea/vcs.xml +0 -6
  229. package/android/local.properties +0 -8
@@ -1 +1 @@
1
- {"version":3,"names":["PropTypes","React","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","Image","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","coordinate","shape","latitude","number","isRequired","longitude","title","string","titleColor","subtitle","poiType","icon","uri","any","zIndex","userData","object","onPress","func","MFPOI","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","poi","setCoordinate","_runCommand","setTitle","setTitleColor","color","setSubTitle","setPoiType","type","setIcon","resolveAssetSource","setZIndex","setUserData","_getHandle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFPOI"],"sources":["MFPOI.js"],"sourcesContent":["import PropTypes from 'prop-types';\r\nimport React from 'react';\r\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\r\nimport {\r\n requireNativeComponent,\r\n Platform,\r\n Image,\r\n NativeModules,\r\n findNodeHandle,\r\n processColor\r\n} from 'react-native';\r\n\r\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\r\nconst viewPropTypes = ViewPropTypes || View.propTypes;\r\n\r\nconst propTypes = {\r\n ...viewPropTypes,\r\n\r\n /**\r\n * The coordinate for the POI.\r\n */\r\n coordinate: PropTypes.shape({\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n }).isRequired,\r\n\r\n /**\r\n * The title of the POI.\r\n */\r\n title: PropTypes.string,\r\n\r\n /**\r\n * The color of the title.\r\n */\r\n titleColor: ColorPropType,\r\n\r\n /**\r\n * The subtile of the POI.\r\n */\r\n subtitle: PropTypes.string,\r\n\r\n /**\r\n * The type of POI\r\n */\r\n //poiType: PropTypes.oneOf(['cafe', 'atm', 'bank']),\r\n poiType: PropTypes.string,\r\n\r\n /**\r\n * POI icon to render.\r\n */\r\n icon: PropTypes.shape({\r\n uri: PropTypes.any.isRequired\r\n }),\r\n\r\n /**\r\n * zIndex\r\n */\r\n zIndex: PropTypes.number,\r\n\r\n /**\r\n * visible\r\n */\r\n //TODO\r\n // visible: PropTypes.bool,\r\n\r\n /**\r\n * userData\r\n */\r\n userData:PropTypes.object,\r\n\r\n /**\r\n * Callback that is called when the user presses on the POI\r\n */\r\n onPress: PropTypes.func,\r\n};\r\n\r\nclass MFPOI extends React.Component {\r\n constructor(props) {\r\n super(props);\r\n this._onPress = this._onPress.bind(this)\r\n this._ref = this._ref.bind(this)\r\n }\r\n\r\n _onPress(event) {\r\n event.stopPropagation();\r\n if (this.props.onPress) {\r\n this.props.onPress(event);\r\n }\r\n }\r\n\r\n _ref(ref) {\r\n this.poi = ref;\r\n }\r\n\r\n setCoordinate(coordinate) {\r\n this._runCommand(\"setCoordinate\", [coordinate])\r\n }\r\n setTitle(title) {\r\n this._runCommand(\"setTitle\", [title])\r\n }\r\n setTitleColor(color) {\r\n this._runCommand(\"setTitleColor\", [processColor(color)])\r\n }\r\n setSubTitle(subtitle) {\r\n this._runCommand(\"setSubTitle\", [subtitle])\r\n }\r\n setPoiType(type) {\r\n this._runCommand(\"setPoiType\", [type])\r\n }\r\n setIcon(icon) {\r\n let uri = Image.resolveAssetSource(icon.uri) || { uri: icon.uri }\r\n this._runCommand(\"setIcon\", [ { uri: uri.uri } ])\r\n }\r\n setZIndex(zIndex) {\r\n this._runCommand(\"setZIndex\", [zIndex])\r\n }\r\n // setVisible(visible) {\r\n // this._runCommand(\"setVisible\", [visible])\r\n // }\r\n setUserData(userData) {\r\n this._runCommand(\"setUserData\", [userData])\r\n }\r\n\r\n _getHandle() {\r\n return findNodeHandle(this.poi);\r\n }\r\n\r\n\r\n _runCommand(name, args) {\r\n switch (Platform.OS) {\r\n case 'android':\r\n NativeModules.UIManager.dispatchViewManagerCommand(\r\n this._getHandle(),\r\n this._uiManagerCommand(name),\r\n args\r\n );\r\n break;\r\n\r\n case 'ios':\r\n this._mapManagerCommand(name)(this._getHandle(), ...args);\r\n break;\r\n\r\n default:\r\n break;\r\n }\r\n }\r\n\r\n _uiManagerCommand(name) {\r\n const UIManager = NativeModules.UIManager;\r\n const componentName = \"RMFPOI\";\r\n\r\n if (!UIManager.getViewManagerConfig) {\r\n // RN < 0.58\r\n return UIManager[componentName].Commands[name];\r\n }\r\n\r\n // RN >= 0.58 \r\n return UIManager.getViewManagerConfig(componentName).Commands[name];\r\n }\r\n \r\n _mapManagerCommand(name) {\r\n return NativeModules[`RMFPOI`][name];\r\n }\r\n\r\n render() {\r\n let icon = {}\r\n if (this.props.icon) {\r\n let uri = Image.resolveAssetSource(this.props.icon.uri) || {uri: this.props.icon.uri}\r\n icon = { uri: uri.uri }\r\n }\r\n return <RMFPOI\r\n {...this.props}\r\n icon={icon}\r\n ref={this._ref}\r\n onPress={this._onPress}\r\n />;\r\n }\r\n}\r\n\r\nMFPOI.propTypes = propTypes;\r\n\r\nvar RMFPOI = requireNativeComponent(`RMFPOI`, MFPOI);\r\n\r\nexport {MFPOI}\r\n"],"mappings":"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"}
1
+ {"version":3,"names":["PropTypes","React","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","Image","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","coordinate","shape","latitude","number","isRequired","longitude","title","string","titleColor","subtitle","poiType","icon","uri","any","zIndex","userData","object","onPress","func","MFPOI","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","poi","setCoordinate","_runCommand","setTitle","setTitleColor","color","setSubTitle","setPoiType","type","setIcon","resolveAssetSource","setZIndex","setUserData","_getHandle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFPOI"],"sources":["MFPOI.js"],"sourcesContent":["import PropTypes from 'prop-types';\nimport React from 'react';\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\nimport {\n requireNativeComponent,\n Platform,\n Image,\n NativeModules,\n findNodeHandle,\n processColor\n} from 'react-native';\n\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\nconst viewPropTypes = ViewPropTypes || View.propTypes;\n\nconst propTypes = {\n ...viewPropTypes,\n\n /**\n * The coordinate for the POI.\n */\n coordinate: PropTypes.shape({\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n }).isRequired,\n\n /**\n * The title of the POI.\n */\n title: PropTypes.string,\n\n /**\n * The color of the title.\n */\n titleColor: ColorPropType,\n\n /**\n * The subtile of the POI.\n */\n subtitle: PropTypes.string,\n\n /**\n * The type of POI\n */\n //poiType: PropTypes.oneOf(['cafe', 'atm', 'bank']),\n poiType: PropTypes.string,\n\n /**\n * POI icon to render.\n */\n icon: PropTypes.shape({\n uri: PropTypes.any.isRequired\n }),\n\n /**\n * zIndex\n */\n zIndex: PropTypes.number,\n\n /**\n * visible\n */\n //TODO\n // visible: PropTypes.bool,\n\n /**\n * userData\n */\n userData:PropTypes.object,\n\n /**\n * Callback that is called when the user presses on the POI\n */\n onPress: PropTypes.func,\n};\n\nclass MFPOI extends React.Component {\n constructor(props) {\n super(props);\n this._onPress = this._onPress.bind(this)\n this._ref = this._ref.bind(this)\n }\n\n _onPress(event) {\n event.stopPropagation();\n if (this.props.onPress) {\n this.props.onPress(event);\n }\n }\n\n _ref(ref) {\n this.poi = ref;\n }\n\n setCoordinate(coordinate) {\n this._runCommand(\"setCoordinate\", [coordinate])\n }\n setTitle(title) {\n this._runCommand(\"setTitle\", [title])\n }\n setTitleColor(color) {\n this._runCommand(\"setTitleColor\", [processColor(color)])\n }\n setSubTitle(subtitle) {\n this._runCommand(\"setSubTitle\", [subtitle])\n }\n setPoiType(type) {\n this._runCommand(\"setPoiType\", [type])\n }\n setIcon(icon) {\n let uri = Image.resolveAssetSource(icon.uri) || { uri: icon.uri }\n this._runCommand(\"setIcon\", [ { uri: uri.uri } ])\n }\n setZIndex(zIndex) {\n this._runCommand(\"setZIndex\", [zIndex])\n }\n // setVisible(visible) {\n // this._runCommand(\"setVisible\", [visible])\n // }\n setUserData(userData) {\n this._runCommand(\"setUserData\", [userData])\n }\n\n _getHandle() {\n return findNodeHandle(this.poi);\n }\n\n\n _runCommand(name, args) {\n switch (Platform.OS) {\n case 'android':\n NativeModules.UIManager.dispatchViewManagerCommand(\n this._getHandle(),\n this._uiManagerCommand(name),\n args\n );\n break;\n\n case 'ios':\n this._mapManagerCommand(name)(this._getHandle(), ...args);\n break;\n\n default:\n break;\n }\n }\n\n _uiManagerCommand(name) {\n const UIManager = NativeModules.UIManager;\n const componentName = \"RMFPOI\";\n\n if (!UIManager.getViewManagerConfig) {\n // RN < 0.58\n return UIManager[componentName].Commands[name];\n }\n\n // RN >= 0.58 \n return UIManager.getViewManagerConfig(componentName).Commands[name];\n }\n \n _mapManagerCommand(name) {\n return NativeModules[`RMFPOI`][name];\n }\n\n render() {\n let icon = {}\n if (this.props.icon) {\n let uri = Image.resolveAssetSource(this.props.icon.uri) || {uri: this.props.icon.uri}\n icon = { uri: uri.uri }\n }\n return <RMFPOI\n {...this.props}\n icon={icon}\n ref={this._ref}\n onPress={this._onPress}\n />;\n }\n}\n\nMFPOI.propTypes = propTypes;\n\nvar RMFPOI = requireNativeComponent(`RMFPOI`, MFPOI);\n\nexport {MFPOI}\n"],"mappings":"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"}
@@ -8,60 +8,60 @@ import { requireNativeComponent, Platform, NativeModules, findNodeHandle, proces
8
8
  const viewPropTypes = ViewPropTypes || View.propTypes;
9
9
  const propTypes = { ...viewPropTypes,
10
10
 
11
- /**
12
- * An array of coordinates to describe the polygon
11
+ /**
12
+ * An array of coordinates to describe the polygon
13
13
  */
14
14
  coordinates: PropTypes.arrayOf(PropTypes.shape({
15
- /**
16
- * Latitude/Longitude coordinates
15
+ /**
16
+ * Latitude/Longitude coordinates
17
17
  */
18
18
  latitude: PropTypes.number.isRequired,
19
19
  longitude: PropTypes.number.isRequired
20
20
  })),
21
21
 
22
- /**
23
- * An array of array of coordinates to describe the polygon holes
22
+ /**
23
+ * An array of array of coordinates to describe the polygon holes
24
24
  */
25
25
  holes: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.shape({
26
- /**
27
- * Latitude/Longitude coordinates
26
+ /**
27
+ * Latitude/Longitude coordinates
28
28
  */
29
29
  latitude: PropTypes.number.isRequired,
30
30
  longitude: PropTypes.number.isRequired
31
31
  }))),
32
32
 
33
- /**
34
- * The color to use for the polygon.
33
+ /**
34
+ * The color to use for the polygon.
35
35
  */
36
36
  fillColor: ColorPropType,
37
37
 
38
- /**
39
- * The color to use for the polygon stroke.
38
+ /**
39
+ * The color to use for the polygon stroke.
40
40
  */
41
41
  strokeColor: ColorPropType,
42
42
 
43
- /**
44
- * The stroke width to use for the polygon.
43
+ /**
44
+ * The stroke width to use for the polygon.
45
45
  */
46
46
  strokeWidth: PropTypes.number,
47
47
 
48
- /**
49
- * zIndex
48
+ /**
49
+ * zIndex
50
50
  */
51
51
  zIndex: PropTypes.number,
52
52
 
53
- /**
54
- * visible
53
+ /**
54
+ * visible
55
55
  */
56
56
  visible: PropTypes.bool,
57
57
 
58
- /**
59
- * userData
58
+ /**
59
+ * userData
60
60
  */
61
61
  userData: PropTypes.object,
62
62
 
63
- /**
64
- * Callback that is called when the user presses on the polygon
63
+ /**
64
+ * Callback that is called when the user presses on the polygon
65
65
  */
66
66
  onPress: PropTypes.func
67
67
  };
@@ -1 +1 @@
1
- {"version":3,"names":["React","PropTypes","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","coordinates","arrayOf","shape","latitude","number","isRequired","longitude","holes","fillColor","strokeColor","strokeWidth","zIndex","visible","bool","userData","object","onPress","func","MFPolygon","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","polygon","setCoordinates","_runCommand","setHoles","setFillColor","color","setStrokeColor","setStrokeWidth","width","setVisible","setZIndex","setUserData","_getHandle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFPolygon"],"sources":["MFPolygon.js"],"sourcesContent":["import React from 'react';\r\nimport PropTypes from 'prop-types';\r\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\r\nimport {\r\n requireNativeComponent,\r\n Platform,\r\n NativeModules,\r\n findNodeHandle,\r\n processColor\r\n} from 'react-native';\r\n\r\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\r\nconst viewPropTypes = ViewPropTypes || View.propTypes;\r\n\r\nconst propTypes = {\r\n ...viewPropTypes,\r\n\r\n /**\r\n * An array of coordinates to describe the polygon\r\n */\r\n coordinates: PropTypes.arrayOf(\r\n PropTypes.shape({\r\n /**\r\n * Latitude/Longitude coordinates\r\n */\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n })\r\n ),\r\n\r\n /**\r\n * An array of array of coordinates to describe the polygon holes\r\n */\r\n holes: PropTypes.arrayOf(\r\n PropTypes.arrayOf(\r\n PropTypes.shape({\r\n /**\r\n * Latitude/Longitude coordinates\r\n */\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n })\r\n )\r\n ),\r\n\r\n /**\r\n * The color to use for the polygon.\r\n */\r\n fillColor: ColorPropType,\r\n\r\n /**\r\n * The color to use for the polygon stroke.\r\n */\r\n strokeColor: ColorPropType,\r\n\r\n /**\r\n * The stroke width to use for the polygon.\r\n */\r\n strokeWidth: PropTypes.number,\r\n\r\n /**\r\n * zIndex\r\n */\r\n zIndex: PropTypes.number,\r\n\r\n /**\r\n * visible\r\n */\r\n visible: PropTypes.bool,\r\n\r\n /**\r\n * userData\r\n */\r\n userData:PropTypes.object,\r\n\r\n /**\r\n * Callback that is called when the user presses on the polygon\r\n */\r\n onPress: PropTypes.func,\r\n};\r\n\r\n\r\nclass MFPolygon extends React.Component {\r\n constructor(props) {\r\n super(props);\r\n this._onPress = this._onPress.bind(this)\r\n this._ref = this._ref.bind(this)\r\n }\r\n\r\n _onPress(event) {\r\n event.stopPropagation();\r\n if (this.props.onPress) {\r\n this.props.onPress(event);\r\n }\r\n }\r\n\r\n _ref(ref) {\r\n this.polygon = ref;\r\n }\r\n\r\n setCoordinates(coordinates) {\r\n this._runCommand(\"setCoordinates\", [coordinates])\r\n }\r\n\r\n setHoles(holes) {\r\n this._runCommand(\"setHoles\", [holes])\r\n }\r\n\r\n setFillColor(color) {\r\n this._runCommand(\"setFillColor\", [processColor(color)])\r\n }\r\n\r\n setStrokeColor(color) {\r\n this._runCommand(\"setStrokeColor\", [processColor(color)])\r\n }\r\n\r\n setStrokeWidth(width) {\r\n this._runCommand(\"setStrokeWidth\", [width])\r\n }\r\n\r\n setVisible(visible) {\r\n this._runCommand(\"setVisible\", [visible])\r\n }\r\n\r\n setZIndex(zIndex) {\r\n this._runCommand(\"setZIndex\", [zIndex])\r\n }\r\n\r\n setUserData(userData) {\r\n this._runCommand(\"setUserData\", [userData])\r\n }\r\n\r\n _getHandle() {\r\n return findNodeHandle(this.polygon);\r\n }\r\n\r\n _runCommand(name, args) {\r\n switch (Platform.OS) {\r\n case 'android':\r\n NativeModules.UIManager.dispatchViewManagerCommand(\r\n this._getHandle(),\r\n this._uiManagerCommand(name),\r\n args\r\n );\r\n break;\r\n\r\n case 'ios':\r\n this._mapManagerCommand(name)(this._getHandle(), ...args);\r\n break;\r\n\r\n default:\r\n break;\r\n }\r\n }\r\n\r\n _uiManagerCommand(name) {\r\n const UIManager = NativeModules.UIManager;\r\n const componentName = \"RMFPolygon\";\r\n\r\n if (!UIManager.getViewManagerConfig) {\r\n // RN < 0.58\r\n return UIManager[componentName].Commands[name];\r\n }\r\n\r\n // RN >= 0.58 \r\n return UIManager.getViewManagerConfig(componentName).Commands[name];\r\n }\r\n\r\n _mapManagerCommand(name) {\r\n return NativeModules[`RMFPolygon`][name];\r\n }\r\n\r\n render() {\r\n return <RMFPolygon\r\n {...this.props}\r\n ref={this._ref}\r\n onPress={this._onPress}\r\n />;\r\n }\r\n}\r\n\r\nMFPolygon.propTypes = propTypes;\r\n\r\nvar RMFPolygon = requireNativeComponent(`RMFPolygon`, MFPolygon);\r\n\r\nexport { MFPolygon }\r\n"],"mappings":"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"}
1
+ {"version":3,"names":["React","PropTypes","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","coordinates","arrayOf","shape","latitude","number","isRequired","longitude","holes","fillColor","strokeColor","strokeWidth","zIndex","visible","bool","userData","object","onPress","func","MFPolygon","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","polygon","setCoordinates","_runCommand","setHoles","setFillColor","color","setStrokeColor","setStrokeWidth","width","setVisible","setZIndex","setUserData","_getHandle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFPolygon"],"sources":["MFPolygon.js"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\nimport {\n requireNativeComponent,\n Platform,\n NativeModules,\n findNodeHandle,\n processColor\n} from 'react-native';\n\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\nconst viewPropTypes = ViewPropTypes || View.propTypes;\n\nconst propTypes = {\n ...viewPropTypes,\n\n /**\n * An array of coordinates to describe the polygon\n */\n coordinates: PropTypes.arrayOf(\n PropTypes.shape({\n /**\n * Latitude/Longitude coordinates\n */\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n })\n ),\n\n /**\n * An array of array of coordinates to describe the polygon holes\n */\n holes: PropTypes.arrayOf(\n PropTypes.arrayOf(\n PropTypes.shape({\n /**\n * Latitude/Longitude coordinates\n */\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n })\n )\n ),\n\n /**\n * The color to use for the polygon.\n */\n fillColor: ColorPropType,\n\n /**\n * The color to use for the polygon stroke.\n */\n strokeColor: ColorPropType,\n\n /**\n * The stroke width to use for the polygon.\n */\n strokeWidth: PropTypes.number,\n\n /**\n * zIndex\n */\n zIndex: PropTypes.number,\n\n /**\n * visible\n */\n visible: PropTypes.bool,\n\n /**\n * userData\n */\n userData:PropTypes.object,\n\n /**\n * Callback that is called when the user presses on the polygon\n */\n onPress: PropTypes.func,\n};\n\n\nclass MFPolygon extends React.Component {\n constructor(props) {\n super(props);\n this._onPress = this._onPress.bind(this)\n this._ref = this._ref.bind(this)\n }\n\n _onPress(event) {\n event.stopPropagation();\n if (this.props.onPress) {\n this.props.onPress(event);\n }\n }\n\n _ref(ref) {\n this.polygon = ref;\n }\n\n setCoordinates(coordinates) {\n this._runCommand(\"setCoordinates\", [coordinates])\n }\n\n setHoles(holes) {\n this._runCommand(\"setHoles\", [holes])\n }\n\n setFillColor(color) {\n this._runCommand(\"setFillColor\", [processColor(color)])\n }\n\n setStrokeColor(color) {\n this._runCommand(\"setStrokeColor\", [processColor(color)])\n }\n\n setStrokeWidth(width) {\n this._runCommand(\"setStrokeWidth\", [width])\n }\n\n setVisible(visible) {\n this._runCommand(\"setVisible\", [visible])\n }\n\n setZIndex(zIndex) {\n this._runCommand(\"setZIndex\", [zIndex])\n }\n\n setUserData(userData) {\n this._runCommand(\"setUserData\", [userData])\n }\n\n _getHandle() {\n return findNodeHandle(this.polygon);\n }\n\n _runCommand(name, args) {\n switch (Platform.OS) {\n case 'android':\n NativeModules.UIManager.dispatchViewManagerCommand(\n this._getHandle(),\n this._uiManagerCommand(name),\n args\n );\n break;\n\n case 'ios':\n this._mapManagerCommand(name)(this._getHandle(), ...args);\n break;\n\n default:\n break;\n }\n }\n\n _uiManagerCommand(name) {\n const UIManager = NativeModules.UIManager;\n const componentName = \"RMFPolygon\";\n\n if (!UIManager.getViewManagerConfig) {\n // RN < 0.58\n return UIManager[componentName].Commands[name];\n }\n\n // RN >= 0.58 \n return UIManager.getViewManagerConfig(componentName).Commands[name];\n }\n\n _mapManagerCommand(name) {\n return NativeModules[`RMFPolygon`][name];\n }\n\n render() {\n return <RMFPolygon\n {...this.props}\n ref={this._ref}\n onPress={this._onPress}\n />;\n }\n}\n\nMFPolygon.propTypes = propTypes;\n\nvar RMFPolygon = requireNativeComponent(`RMFPolygon`, MFPolygon);\n\nexport { MFPolygon }\n"],"mappings":"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"}
@@ -8,49 +8,49 @@ import { requireNativeComponent, Platform, NativeModules, findNodeHandle, proces
8
8
  const viewPropTypes = ViewPropTypes || View.propTypes;
9
9
  const propTypes = { ...viewPropTypes,
10
10
 
11
- /**
12
- * An array of coordinates to describe the polyline
11
+ /**
12
+ * An array of coordinates to describe the polyline
13
13
  */
14
14
  coordinates: PropTypes.arrayOf(PropTypes.shape({
15
- /**
16
- * Latitude/Longitude coordinates
15
+ /**
16
+ * Latitude/Longitude coordinates
17
17
  */
18
18
  latitude: PropTypes.number.isRequired,
19
19
  longitude: PropTypes.number.isRequired
20
20
  })),
21
21
 
22
- /**
23
- * The color to use for the path.
22
+ /**
23
+ * The color to use for the path.
24
24
  */
25
25
  color: ColorPropType,
26
26
 
27
- /**
28
- * The stroke width to use for the path.
27
+ /**
28
+ * The stroke width to use for the path.
29
29
  */
30
30
  width: PropTypes.number,
31
31
 
32
- /**
33
- * The default style is `solid`.
32
+ /**
33
+ * The default style is `solid`.
34
34
  */
35
35
  lineStyle: PropTypes.oneOf(['solid', 'dotted']),
36
36
 
37
- /**
38
- * zIndex
37
+ /**
38
+ * zIndex
39
39
  */
40
40
  zIndex: PropTypes.number,
41
41
 
42
- /**
43
- * visible
42
+ /**
43
+ * visible
44
44
  */
45
45
  visible: PropTypes.bool,
46
46
 
47
- /**
48
- * userData
47
+ /**
48
+ * userData
49
49
  */
50
50
  userData: PropTypes.object,
51
51
 
52
- /**
53
- * Callback that is called when the user presses on the polyline
52
+ /**
53
+ * Callback that is called when the user presses on the polyline
54
54
  */
55
55
  onPress: PropTypes.func
56
56
  };
@@ -1 +1 @@
1
- {"version":3,"names":["React","PropTypes","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","coordinates","arrayOf","shape","latitude","number","isRequired","longitude","color","width","lineStyle","oneOf","zIndex","visible","bool","userData","object","onPress","func","MFPolyline","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","polyline","setCoordinates","_runCommand","setWidth","setColor","setVisible","setTouchable","touchable","setZIndex","setLineStyle","style","setUserData","_getHandle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFPolyline"],"sources":["MFPolyline.js"],"sourcesContent":["import React from 'react';\r\nimport PropTypes from 'prop-types';\r\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\r\nimport {\r\n requireNativeComponent,\r\n Platform,\r\n NativeModules,\r\n findNodeHandle,\r\n processColor\r\n} from 'react-native';\r\n\r\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\r\nconst viewPropTypes = ViewPropTypes || View.propTypes;\r\n\r\nconst propTypes = {\r\n ...viewPropTypes,\r\n\r\n /**\r\n * An array of coordinates to describe the polyline\r\n */\r\n coordinates: PropTypes.arrayOf(\r\n PropTypes.shape({\r\n /**\r\n * Latitude/Longitude coordinates\r\n */\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n })\r\n ),\r\n\r\n /**\r\n * The color to use for the path.\r\n */\r\n color: ColorPropType,\r\n\r\n /**\r\n * The stroke width to use for the path.\r\n */\r\n width: PropTypes.number,\r\n\r\n /**\r\n * The default style is `solid`.\r\n */\r\n lineStyle: PropTypes.oneOf(['solid', 'dotted']),\r\n\r\n /**\r\n * zIndex\r\n */\r\n zIndex: PropTypes.number,\r\n\r\n /**\r\n * visible\r\n */\r\n visible: PropTypes.bool,\r\n\r\n /**\r\n * userData\r\n */\r\n userData:PropTypes.object,\r\n\r\n /**\r\n * Callback that is called when the user presses on the polyline\r\n */\r\n onPress: PropTypes.func,\r\n};\r\n\r\n\r\nclass MFPolyline extends React.Component {\r\n constructor(props) {\r\n super(props);\r\n this._onPress = this._onPress.bind(this)\r\n this._ref = this._ref.bind(this)\r\n }\r\n\r\n _onPress(event) {\r\n event.stopPropagation();\r\n if (this.props.onPress) {\r\n this.props.onPress(event);\r\n }\r\n }\r\n\r\n _ref(ref) {\r\n this.polyline = ref;\r\n }\r\n\r\n // TODO - bug\r\n setCoordinates(coordinates) {\r\n this._runCommand(\"setCoordinates\", [coordinates])\r\n }\r\n\r\n setWidth(width) {\r\n this._runCommand(\"setWidth\", [width])\r\n }\r\n\r\n setColor(color) {\r\n this._runCommand(\"setColor\", [processColor(color)])\r\n }\r\n\r\n setVisible(visible) {\r\n this._runCommand(\"setVisible\", [visible])\r\n }\r\n\r\n setTouchable(touchable) {\r\n this._runCommand(\"setTouchable\", [touchable])\r\n }\r\n\r\n setZIndex(zIndex) {\r\n this._runCommand(\"setZIndex\", [zIndex])\r\n }\r\n\r\n setLineStyle(style) {\r\n this._runCommand(\"setLineStyle\", [style])\r\n }\r\n\r\n setUserData(userData) {\r\n this._runCommand(\"setUserData\", [userData])\r\n }\r\n\r\n _getHandle() {\r\n return findNodeHandle(this.polyline);\r\n }\r\n\r\n _runCommand(name, args) {\r\n switch (Platform.OS) {\r\n case 'android':\r\n NativeModules.UIManager.dispatchViewManagerCommand(\r\n this._getHandle(),\r\n this._uiManagerCommand(name),\r\n args\r\n );\r\n break;\r\n\r\n case 'ios':\r\n this._mapManagerCommand(name)(this._getHandle(), ...args);\r\n break;\r\n\r\n default:\r\n break;\r\n }\r\n }\r\n\r\n _uiManagerCommand(name) {\r\n const UIManager = NativeModules.UIManager;\r\n const componentName = \"RMFPolyline\";\r\n\r\n if (!UIManager.getViewManagerConfig) {\r\n // RN < 0.58\r\n return UIManager[componentName].Commands[name];\r\n }\r\n\r\n // RN >= 0.58 \r\n return UIManager.getViewManagerConfig(componentName).Commands[name];\r\n }\r\n\r\n _mapManagerCommand(name) {\r\n return NativeModules[`RMFPolyline`][name];\r\n }\r\n\r\n render() {\r\n return <RMFPolyline\r\n {...this.props}\r\n ref={this._ref}\r\n onPress={this._onPress}\r\n />;\r\n }\r\n}\r\n\r\nMFPolyline.propTypes = propTypes;\r\n\r\nvar RMFPolyline = requireNativeComponent(`RMFPolyline`, MFPolyline);\r\n\r\nexport { MFPolyline }\r\n"],"mappings":"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"}
1
+ {"version":3,"names":["React","PropTypes","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","coordinates","arrayOf","shape","latitude","number","isRequired","longitude","color","width","lineStyle","oneOf","zIndex","visible","bool","userData","object","onPress","func","MFPolyline","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","polyline","setCoordinates","_runCommand","setWidth","setColor","setVisible","setTouchable","touchable","setZIndex","setLineStyle","style","setUserData","_getHandle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFPolyline"],"sources":["MFPolyline.js"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\nimport {\n requireNativeComponent,\n Platform,\n NativeModules,\n findNodeHandle,\n processColor\n} from 'react-native';\n\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\nconst viewPropTypes = ViewPropTypes || View.propTypes;\n\nconst propTypes = {\n ...viewPropTypes,\n\n /**\n * An array of coordinates to describe the polyline\n */\n coordinates: PropTypes.arrayOf(\n PropTypes.shape({\n /**\n * Latitude/Longitude coordinates\n */\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n })\n ),\n\n /**\n * The color to use for the path.\n */\n color: ColorPropType,\n\n /**\n * The stroke width to use for the path.\n */\n width: PropTypes.number,\n\n /**\n * The default style is `solid`.\n */\n lineStyle: PropTypes.oneOf(['solid', 'dotted']),\n\n /**\n * zIndex\n */\n zIndex: PropTypes.number,\n\n /**\n * visible\n */\n visible: PropTypes.bool,\n\n /**\n * userData\n */\n userData:PropTypes.object,\n\n /**\n * Callback that is called when the user presses on the polyline\n */\n onPress: PropTypes.func,\n};\n\n\nclass MFPolyline extends React.Component {\n constructor(props) {\n super(props);\n this._onPress = this._onPress.bind(this)\n this._ref = this._ref.bind(this)\n }\n\n _onPress(event) {\n event.stopPropagation();\n if (this.props.onPress) {\n this.props.onPress(event);\n }\n }\n\n _ref(ref) {\n this.polyline = ref;\n }\n\n // TODO - bug\n setCoordinates(coordinates) {\n this._runCommand(\"setCoordinates\", [coordinates])\n }\n\n setWidth(width) {\n this._runCommand(\"setWidth\", [width])\n }\n\n setColor(color) {\n this._runCommand(\"setColor\", [processColor(color)])\n }\n\n setVisible(visible) {\n this._runCommand(\"setVisible\", [visible])\n }\n\n setTouchable(touchable) {\n this._runCommand(\"setTouchable\", [touchable])\n }\n\n setZIndex(zIndex) {\n this._runCommand(\"setZIndex\", [zIndex])\n }\n\n setLineStyle(style) {\n this._runCommand(\"setLineStyle\", [style])\n }\n\n setUserData(userData) {\n this._runCommand(\"setUserData\", [userData])\n }\n\n _getHandle() {\n return findNodeHandle(this.polyline);\n }\n\n _runCommand(name, args) {\n switch (Platform.OS) {\n case 'android':\n NativeModules.UIManager.dispatchViewManagerCommand(\n this._getHandle(),\n this._uiManagerCommand(name),\n args\n );\n break;\n\n case 'ios':\n this._mapManagerCommand(name)(this._getHandle(), ...args);\n break;\n\n default:\n break;\n }\n }\n\n _uiManagerCommand(name) {\n const UIManager = NativeModules.UIManager;\n const componentName = \"RMFPolyline\";\n\n if (!UIManager.getViewManagerConfig) {\n // RN < 0.58\n return UIManager[componentName].Commands[name];\n }\n\n // RN >= 0.58 \n return UIManager.getViewManagerConfig(componentName).Commands[name];\n }\n\n _mapManagerCommand(name) {\n return NativeModules[`RMFPolyline`][name];\n }\n\n render() {\n return <RMFPolyline\n {...this.props}\n ref={this._ref}\n onPress={this._onPress}\n />;\n }\n}\n\nMFPolyline.propTypes = propTypes;\n\nvar RMFPolyline = requireNativeComponent(`RMFPolyline`, MFPolyline);\n\nexport { MFPolyline }\n"],"mappings":"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"}
@@ -6,21 +6,21 @@ import { requireNativeComponent, View } from 'react-native'; // if ViewPropTypes
6
6
  const viewPropTypes = ViewPropTypes || View.propTypes;
7
7
  const propTypes = { ...viewPropTypes,
8
8
 
9
- /**
10
- * The url template of the tile server. The patterns {x} {y} {z} will be replaced at runtime
11
- * For example, https://tile.openstreetmap.de/{z}/{x}/{y}.png
9
+ /**
10
+ * The url template of the tile server. The patterns {x} {y} {z} will be replaced at runtime
11
+ * For example, https://tile.openstreetmap.de/{z}/{x}/{y}.png
12
12
  */
13
13
  urlTemplate: PropTypes.string.isRequired,
14
14
 
15
- /**
16
- * visible
15
+ /**
16
+ * visible
17
17
  */
18
18
  visible: PropTypes.bool,
19
19
 
20
- /**
21
- * The order in which this tile overlay is drawn with respect to other overlays. An overlay
22
- * with a larger z-index is drawn over overlays with smaller z-indices. The order of overlays
23
- * with the same z-index is arbitrary. The default zIndex is 0.
20
+ /**
21
+ * The order in which this tile overlay is drawn with respect to other overlays. An overlay
22
+ * with a larger z-index is drawn over overlays with smaller z-indices. The order of overlays
23
+ * with the same z-index is arbitrary. The default zIndex is 0.
24
24
  */
25
25
  zIndex: PropTypes.number
26
26
  };
@@ -1 +1 @@
1
- {"version":3,"names":["PropTypes","React","ViewPropTypes","requireNativeComponent","View","viewPropTypes","propTypes","urlTemplate","string","isRequired","visible","bool","zIndex","number","MFTileOverlay","Component","render","props","RMFTileOverlay"],"sources":["MFTileOverlay.js"],"sourcesContent":["import PropTypes from \"prop-types\";\r\nimport React from 'react';\r\nimport {ViewPropTypes} from 'deprecated-react-native-prop-types';\r\nimport {\r\n requireNativeComponent,\r\n View,\r\n} from 'react-native';\r\n\r\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\r\nconst viewPropTypes = ViewPropTypes || View.propTypes;\r\nconst propTypes = {\r\n ...viewPropTypes,\r\n\r\n /**\r\n * The url template of the tile server. The patterns {x} {y} {z} will be replaced at runtime\r\n * For example, https://tile.openstreetmap.de/{z}/{x}/{y}.png\r\n */\r\n urlTemplate: PropTypes.string.isRequired,\r\n\r\n /**\r\n * visible\r\n */\r\n visible: PropTypes.bool,\r\n\r\n /**\r\n * The order in which this tile overlay is drawn with respect to other overlays. An overlay\r\n * with a larger z-index is drawn over overlays with smaller z-indices. The order of overlays\r\n * with the same z-index is arbitrary. The default zIndex is 0.\r\n */\r\n zIndex: PropTypes.number,\r\n};\r\n\r\nclass MFTileOverlay extends React.Component {\r\n render() {\r\n return <RMFTileOverlay\r\n {...this.props}\r\n />;\r\n }\r\n}\r\n\r\nMFTileOverlay.propTypes = propTypes;\r\n\r\nvar RMFTileOverlay = requireNativeComponent(`RMFTileOverlay`, MFTileOverlay);\r\n\r\nexport { MFTileOverlay }\r\n"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,YAAtB;AACA,OAAOC,KAAP,MAAkB,OAAlB;AACA,SAAQC,aAAR,QAA4B,oCAA5B;AACA,SACEC,sBADF,EAEEC,IAFF,QAGO,cAHP,C,CAKA;;AACA,MAAMC,aAAa,GAAGH,aAAa,IAAIE,IAAI,CAACE,SAA5C;AACA,MAAMA,SAAS,GAAG,EAChB,GAAGD,aADa;;EAGhB;AACF;AACA;AACA;EACEE,WAAW,EAAEP,SAAS,CAACQ,MAAV,CAAiBC,UAPd;;EAShB;AACF;AACA;EACEC,OAAO,EAAEV,SAAS,CAACW,IAZH;;EAchB;AACF;AACA;AACA;AACA;EACEC,MAAM,EAAEZ,SAAS,CAACa;AAnBF,CAAlB;;AAsBA,MAAMC,aAAN,SAA4Bb,KAAK,CAACc,SAAlC,CAA4C;EAC1CC,MAAM,GAAG;IACP,oBAAO,oBAAC,cAAD,EACD,KAAKC,KADJ,CAAP;EAGD;;AALyC;;AAQ5CH,aAAa,CAACR,SAAd,GAA0BA,SAA1B;AAEA,IAAIY,cAAc,GAAGf,sBAAsB,CAAE,gBAAF,EAAmBW,aAAnB,CAA3C;AAEA,SAASA,aAAT"}
1
+ {"version":3,"names":["PropTypes","React","ViewPropTypes","requireNativeComponent","View","viewPropTypes","propTypes","urlTemplate","string","isRequired","visible","bool","zIndex","number","MFTileOverlay","Component","render","props","RMFTileOverlay"],"sources":["MFTileOverlay.js"],"sourcesContent":["import PropTypes from \"prop-types\";\nimport React from 'react';\nimport {ViewPropTypes} from 'deprecated-react-native-prop-types';\nimport {\n requireNativeComponent,\n View,\n} from 'react-native';\n\n// if ViewPropTypes is not defined fall back to View.propType (to support RN < 0.44)\nconst viewPropTypes = ViewPropTypes || View.propTypes;\nconst propTypes = {\n ...viewPropTypes,\n\n /**\n * The url template of the tile server. The patterns {x} {y} {z} will be replaced at runtime\n * For example, https://tile.openstreetmap.de/{z}/{x}/{y}.png\n */\n urlTemplate: PropTypes.string.isRequired,\n\n /**\n * visible\n */\n visible: PropTypes.bool,\n\n /**\n * The order in which this tile overlay is drawn with respect to other overlays. An overlay\n * with a larger z-index is drawn over overlays with smaller z-indices. The order of overlays\n * with the same z-index is arbitrary. The default zIndex is 0.\n */\n zIndex: PropTypes.number,\n};\n\nclass MFTileOverlay extends React.Component {\n render() {\n return <RMFTileOverlay\n {...this.props}\n />;\n }\n}\n\nMFTileOverlay.propTypes = propTypes;\n\nvar RMFTileOverlay = requireNativeComponent(`RMFTileOverlay`, MFTileOverlay);\n\nexport { MFTileOverlay }\n"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,YAAtB;AACA,OAAOC,KAAP,MAAkB,OAAlB;AACA,SAAQC,aAAR,QAA4B,oCAA5B;AACA,SACEC,sBADF,EAEEC,IAFF,QAGO,cAHP,C,CAKA;;AACA,MAAMC,aAAa,GAAGH,aAAa,IAAIE,IAAI,CAACE,SAA5C;AACA,MAAMA,SAAS,GAAG,EAChB,GAAGD,aADa;;EAGhB;AACF;AACA;AACA;EACEE,WAAW,EAAEP,SAAS,CAACQ,MAAV,CAAiBC,UAPd;;EAShB;AACF;AACA;EACEC,OAAO,EAAEV,SAAS,CAACW,IAZH;;EAchB;AACF;AACA;AACA;AACA;EACEC,MAAM,EAAEZ,SAAS,CAACa;AAnBF,CAAlB;;AAsBA,MAAMC,aAAN,SAA4Bb,KAAK,CAACc,SAAlC,CAA4C;EAC1CC,MAAM,GAAG;IACP,oBAAO,oBAAC,cAAD,EACD,KAAKC,KADJ,CAAP;EAGD;;AALyC;;AAQ5CH,aAAa,CAACR,SAAd,GAA0BA,SAA1B;AAEA,IAAIY,cAAc,GAAGf,sBAAsB,CAAE,gBAAF,EAAmBW,aAAnB,CAA3C;AAEA,SAASA,aAAT"}
@@ -1 +1 @@
1
- {"version":3,"names":["requireNativeComponent","UIManager","Platform","LINKING_ERROR","select","ios","default","ComponentName","Map4dMapView","getViewManagerConfig","Error"],"sources":["Map4dMapView.tsx"],"sourcesContent":["import {\r\n requireNativeComponent,\r\n UIManager,\r\n Platform,\r\n ViewStyle,\r\n } from 'react-native';\r\n \r\n const LINKING_ERROR =\r\n `The package 'react-native-map4d-map' doesn't seem to be linked. Make sure: \\n\\n` +\r\n Platform.select({ ios: \"- You have run 'pod install'\\n\", default: '' }) +\r\n '- You rebuilt the app after installing the package\\n' +\r\n '- You are not using Expo managed workflow\\n';\r\n \r\n type Map4dMapProps = {\r\n color: string;\r\n style: ViewStyle;\r\n };\r\n \r\n const ComponentName = 'Map4dMapView';\r\n \r\n export const Map4dMapView =\r\n UIManager.getViewManagerConfig(ComponentName) != null\r\n ? requireNativeComponent<Map4dMapProps>(ComponentName)\r\n : () => {\r\n throw new Error(LINKING_ERROR);\r\n };\r\n "],"mappings":"AAAA,SACIA,sBADJ,EAEIC,SAFJ,EAGIC,QAHJ,QAKS,cALT;AAOE,MAAMC,aAAa,GAChB,iFAAD,GACAD,QAAQ,CAACE,MAAT,CAAgB;EAAEC,GAAG,EAAE,gCAAP;EAAyCC,OAAO,EAAE;AAAlD,CAAhB,CADA,GAEA,sDAFA,GAGA,6CAJF;AAWA,MAAMC,aAAa,GAAG,cAAtB;AAEA,OAAO,MAAMC,YAAY,GACvBP,SAAS,CAACQ,oBAAV,CAA+BF,aAA/B,KAAiD,IAAjD,GACIP,sBAAsB,CAAgBO,aAAhB,CAD1B,GAEI,MAAM;EACJ,MAAM,IAAIG,KAAJ,CAAUP,aAAV,CAAN;AACD,CALA"}
1
+ {"version":3,"names":["requireNativeComponent","UIManager","Platform","LINKING_ERROR","select","ios","default","ComponentName","Map4dMapView","getViewManagerConfig","Error"],"sources":["Map4dMapView.tsx"],"sourcesContent":["import {\n requireNativeComponent,\n UIManager,\n Platform,\n ViewStyle,\n } from 'react-native';\n \n const LINKING_ERROR =\n `The package 'react-native-map4d-map' doesn't seem to be linked. Make sure: \\n\\n` +\n Platform.select({ ios: \"- You have run 'pod install'\\n\", default: '' }) +\n '- You rebuilt the app after installing the package\\n' +\n '- You are not using Expo managed workflow\\n';\n \n type Map4dMapProps = {\n color: string;\n style: ViewStyle;\n };\n \n const ComponentName = 'Map4dMapView';\n \n export const Map4dMapView =\n UIManager.getViewManagerConfig(ComponentName) != null\n ? requireNativeComponent<Map4dMapProps>(ComponentName)\n : () => {\n throw new Error(LINKING_ERROR);\n };\n "],"mappings":"AAAA,SACIA,sBADJ,EAEIC,SAFJ,EAGIC,QAHJ,QAKS,cALT;AAOE,MAAMC,aAAa,GAChB,iFAAD,GACAD,QAAQ,CAACE,MAAT,CAAgB;EAAEC,GAAG,EAAE,gCAAP;EAAyCC,OAAO,EAAE;AAAlD,CAAhB,CADA,GAEA,sDAFA,GAGA,6CAJF;AAWA,MAAMC,aAAa,GAAG,cAAtB;AAEA,OAAO,MAAMC,YAAY,GACvBP,SAAS,CAACQ,oBAAV,CAA+BF,aAA/B,KAAiD,IAAjD,GACIP,sBAAsB,CAAgBO,aAAhB,CAD1B,GAEI,MAAM;EACJ,MAAM,IAAIG,KAAJ,CAAUP,aAAV,CAAN;AACD,CALA"}
@@ -0,0 +1,193 @@
1
+ import { AreaFocusSession } from './area/AreaFocusSession';
2
+ import { ProvinceArea, IndustrialEconomicArea } from './area/AreaFocusAreas';
3
+ import { IndustrialEconomicType } from './area/AreaFocusTypes';
4
+ /**
5
+ * @typedef {'normal' | 'highlight'} FocusDisplay
6
+ */
7
+
8
+ /**
9
+ * @typedef {{left?: number, right?: number, top?: number, bottom?: number}} FocusPadding
10
+ */
11
+
12
+ /**
13
+ * @typedef {'province' | 'industrialZone' | 'economicZone' | 'ecoIndustrialZone' | 'freeTradeZone' | 'nonTariffZone' | 'otherZoneModel' | number} FocusType
14
+ */
15
+
16
+ /**
17
+ * @typedef {Object} FocusOptions
18
+ * @property {FocusType} type
19
+ * @property {number=} id
20
+ * @property {string=} name
21
+ * @property {FocusDisplay=} display
22
+ * @property {FocusPadding=} padding
23
+ */
24
+
25
+ const VIETNAM_MAINLAND_BOUNDS = {
26
+ minLat: 8.18,
27
+ minLng: 102.14,
28
+ maxLat: 23.4,
29
+ maxLng: 109.47
30
+ };
31
+ const FOCUS_TYPE_TO_INDUSTRIAL_ECONOMIC_TYPE = {
32
+ industrialZone: IndustrialEconomicType.INDUSTRIAL_ZONE,
33
+ economicZone: IndustrialEconomicType.ECONOMIC_ZONE,
34
+ ecoIndustrialZone: IndustrialEconomicType.ECO_INDUSTRIAL_ZONE,
35
+ freeTradeZone: IndustrialEconomicType.FREE_TRADE_ZONE,
36
+ nonTariffZone: IndustrialEconomicType.NON_TARIFF_ZONE,
37
+ otherZoneModel: IndustrialEconomicType.OTHER_ZONE_MODEL
38
+ };
39
+ export class AreaFocusManager {
40
+ constructor(mapView) {
41
+ this.mapView = mapView;
42
+ this.currentSession = null;
43
+ }
44
+
45
+ async _focusArea(area, options) {
46
+ this.clear();
47
+
48
+ if (!area) {
49
+ return null;
50
+ }
51
+
52
+ try {
53
+ if (!(await area.load())) {
54
+ return null;
55
+ }
56
+
57
+ const focusOptions = { ...(options || {})
58
+ };
59
+ const bounds = area.getBounds() || VIETNAM_MAINLAND_BOUNDS;
60
+
61
+ this._fitBounds(bounds, focusOptions);
62
+
63
+ this.currentSession = new AreaFocusSession(this.mapView, area, focusOptions);
64
+ this.currentSession.render();
65
+ return this.currentSession;
66
+ } catch (error) {
67
+ console.error('Cannot focus area:', error);
68
+ return null;
69
+ }
70
+ }
71
+
72
+ async _focusProvince(options) {
73
+ const provinceId = this._getProvinceId(options);
74
+
75
+ const provinceName = this._getProvinceName(options);
76
+
77
+ if (provinceId == null && !provinceName) {
78
+ this.clear();
79
+ return null;
80
+ }
81
+
82
+ const area = provinceId != null ? new ProvinceArea(provinceId) : ProvinceArea.fromName(provinceName);
83
+ const display = options && options.display === 'highlight' ? 'highlight' : 'normal';
84
+ return this._focusArea(area, {
85
+ display,
86
+ padding: options ? options.padding : undefined
87
+ });
88
+ }
89
+ /**
90
+ * @param {FocusOptions | null | undefined} focusOptions
91
+ * @returns {Promise<AreaFocusSession | null>}
92
+ */
93
+
94
+
95
+ async focus(focusOptions) {
96
+ if (focusOptions == null) {
97
+ this.clear();
98
+ return null;
99
+ }
100
+
101
+ if (focusOptions.type === 'province') {
102
+ return this._focusProvince(focusOptions);
103
+ }
104
+
105
+ if (focusOptions.id == null) {
106
+ console.warn('Focus options must include an id for non-province types:', focusOptions);
107
+ this.clear();
108
+ return null;
109
+ }
110
+
111
+ const industrialEconomicType = this._getIndustrialEconomicType(focusOptions.type);
112
+
113
+ if (industrialEconomicType != null) {
114
+ return this._focusArea(new IndustrialEconomicArea(industrialEconomicType, focusOptions.id), {
115
+ display: focusOptions.display,
116
+ padding: focusOptions.padding
117
+ });
118
+ }
119
+
120
+ console.warn('Unsupported focus type:', focusOptions.type);
121
+ return null;
122
+ }
123
+
124
+ _getIndustrialEconomicType(type) {
125
+ if (typeof type === 'number') {
126
+ const values = Object.values(IndustrialEconomicType);
127
+ return values.includes(type) ? type : null;
128
+ }
129
+
130
+ if (typeof type !== 'string') {
131
+ return null;
132
+ }
133
+
134
+ return FOCUS_TYPE_TO_INDUSTRIAL_ECONOMIC_TYPE[type] || null;
135
+ }
136
+
137
+ clear() {
138
+ if (this.currentSession) {
139
+ this.currentSession.destroy();
140
+ this.currentSession = null;
141
+ }
142
+ }
143
+
144
+ _fitBounds(bounds, options) {
145
+ if (!this.mapView || typeof this.mapView.fitBounds !== 'function' || !bounds) {
146
+ return;
147
+ }
148
+
149
+ this.mapView.fitBounds({
150
+ bounds: {
151
+ southWest: {
152
+ latitude: bounds.minLat,
153
+ longitude: bounds.minLng
154
+ },
155
+ northEast: {
156
+ latitude: bounds.maxLat,
157
+ longitude: bounds.maxLng
158
+ }
159
+ },
160
+ padding: options ? options.padding : undefined
161
+ });
162
+ }
163
+
164
+ _getProvinceName(options) {
165
+ if (options == null || typeof options !== 'object') {
166
+ return null;
167
+ }
168
+
169
+ if (typeof options.name === 'string') {
170
+ const name = options.name.trim();
171
+ return name.length > 0 ? name : null;
172
+ }
173
+
174
+ const optionKeys = Object.keys(options);
175
+ const unsupportedKeys = optionKeys.filter(key => key !== 'type' && key !== 'id' && key !== 'name' && key !== 'display' && key !== 'padding');
176
+
177
+ if (unsupportedKeys.length > 0) {
178
+ console.warn(`[AreaFocusManager] focusProvince expects options like { type: 'province', name: 'Ha Noi', display: 'highlight' }. Unsupported keys: ${unsupportedKeys.join(', ')}`);
179
+ }
180
+
181
+ return null;
182
+ }
183
+
184
+ _getProvinceId(options) {
185
+ if (options == null || typeof options !== 'object') {
186
+ return null;
187
+ }
188
+
189
+ return typeof options.id === 'number' ? options.id : null;
190
+ }
191
+
192
+ }
193
+ //# sourceMappingURL=AreaFocusManager.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["AreaFocusSession","ProvinceArea","IndustrialEconomicArea","IndustrialEconomicType","VIETNAM_MAINLAND_BOUNDS","minLat","minLng","maxLat","maxLng","FOCUS_TYPE_TO_INDUSTRIAL_ECONOMIC_TYPE","industrialZone","INDUSTRIAL_ZONE","economicZone","ECONOMIC_ZONE","ecoIndustrialZone","ECO_INDUSTRIAL_ZONE","freeTradeZone","FREE_TRADE_ZONE","nonTariffZone","NON_TARIFF_ZONE","otherZoneModel","OTHER_ZONE_MODEL","AreaFocusManager","constructor","mapView","currentSession","_focusArea","area","options","clear","load","focusOptions","bounds","getBounds","_fitBounds","render","error","console","_focusProvince","provinceId","_getProvinceId","provinceName","_getProvinceName","fromName","display","padding","undefined","focus","type","id","warn","industrialEconomicType","_getIndustrialEconomicType","values","Object","includes","destroy","fitBounds","southWest","latitude","longitude","northEast","name","trim","length","optionKeys","keys","unsupportedKeys","filter","key","join"],"sources":["AreaFocusManager.js"],"sourcesContent":["import {AreaFocusSession} from './area/AreaFocusSession'\nimport {ProvinceArea, IndustrialEconomicArea} from './area/AreaFocusAreas'\nimport {IndustrialEconomicType} from './area/AreaFocusTypes'\n\n/**\n * @typedef {'normal' | 'highlight'} FocusDisplay\n */\n\n/**\n * @typedef {{left?: number, right?: number, top?: number, bottom?: number}} FocusPadding\n */\n\n/**\n * @typedef {'province' | 'industrialZone' | 'economicZone' | 'ecoIndustrialZone' | 'freeTradeZone' | 'nonTariffZone' | 'otherZoneModel' | number} FocusType\n */\n\n/**\n * @typedef {Object} FocusOptions\n * @property {FocusType} type\n * @property {number=} id\n * @property {string=} name\n * @property {FocusDisplay=} display\n * @property {FocusPadding=} padding\n */\n\nconst VIETNAM_MAINLAND_BOUNDS = {\n minLat: 8.18,\n minLng: 102.14,\n maxLat: 23.4,\n maxLng: 109.47,\n}\n\nconst FOCUS_TYPE_TO_INDUSTRIAL_ECONOMIC_TYPE = {\n industrialZone: IndustrialEconomicType.INDUSTRIAL_ZONE,\n economicZone: IndustrialEconomicType.ECONOMIC_ZONE,\n ecoIndustrialZone: IndustrialEconomicType.ECO_INDUSTRIAL_ZONE,\n freeTradeZone: IndustrialEconomicType.FREE_TRADE_ZONE,\n nonTariffZone: IndustrialEconomicType.NON_TARIFF_ZONE,\n otherZoneModel: IndustrialEconomicType.OTHER_ZONE_MODEL,\n}\n\nexport class AreaFocusManager {\n constructor(mapView) {\n this.mapView = mapView\n this.currentSession = null\n }\n\n async _focusArea(area, options) {\n this.clear()\n\n if (!area) {\n return null\n }\n\n try {\n if (!(await area.load())) {\n return null\n }\n\n const focusOptions = {...(options || {})}\n const bounds = area.getBounds() || VIETNAM_MAINLAND_BOUNDS\n\n this._fitBounds(bounds, focusOptions)\n\n this.currentSession = new AreaFocusSession(this.mapView, area, focusOptions)\n this.currentSession.render()\n\n return this.currentSession\n }\n catch (error) {\n console.error('Cannot focus area:', error)\n return null\n }\n }\n\n async _focusProvince(options) {\n const provinceId = this._getProvinceId(options)\n const provinceName = this._getProvinceName(options)\n\n if (provinceId == null && !provinceName) {\n this.clear()\n return null\n }\n\n const area = provinceId != null ? new ProvinceArea(provinceId) : ProvinceArea.fromName(provinceName)\n const display = options && options.display === 'highlight' ? 'highlight' : 'normal'\n\n return this._focusArea(area, {\n display,\n padding: options ? options.padding : undefined,\n })\n }\n\n /**\n * @param {FocusOptions | null | undefined} focusOptions\n * @returns {Promise<AreaFocusSession | null>}\n */\n async focus(focusOptions) {\n if (focusOptions == null) {\n this.clear()\n return null\n }\n\n if (focusOptions.type === 'province') {\n return this._focusProvince(focusOptions)\n }\n\n if (focusOptions.id == null) {\n console.warn('Focus options must include an id for non-province types:', focusOptions)\n this.clear()\n return null\n }\n\n const industrialEconomicType = this._getIndustrialEconomicType(focusOptions.type)\n\n if (industrialEconomicType != null) {\n return this._focusArea(new IndustrialEconomicArea(industrialEconomicType, focusOptions.id), {\n display: focusOptions.display,\n padding: focusOptions.padding,\n })\n }\n\n console.warn('Unsupported focus type:', focusOptions.type)\n return null\n }\n\n _getIndustrialEconomicType(type) {\n if (typeof type === 'number') {\n const values = Object.values(IndustrialEconomicType)\n return values.includes(type) ? type : null\n }\n\n if (typeof type !== 'string') {\n return null\n }\n\n return FOCUS_TYPE_TO_INDUSTRIAL_ECONOMIC_TYPE[type] || null\n }\n\n clear() {\n if (this.currentSession) {\n this.currentSession.destroy()\n this.currentSession = null\n }\n }\n\n _fitBounds(bounds, options) {\n if (!this.mapView || typeof this.mapView.fitBounds !== 'function' || !bounds) {\n return\n }\n\n this.mapView.fitBounds({\n bounds: {\n southWest: {\n latitude: bounds.minLat,\n longitude: bounds.minLng,\n },\n northEast: {\n latitude: bounds.maxLat,\n longitude: bounds.maxLng,\n },\n },\n padding: options ? options.padding : undefined,\n })\n }\n\n _getProvinceName(options) {\n if (options == null || typeof options !== 'object') {\n return null\n }\n\n if (typeof options.name === 'string') {\n const name = options.name.trim()\n return name.length > 0 ? name : null\n }\n\n const optionKeys = Object.keys(options)\n const unsupportedKeys = optionKeys.filter((key) => key !== 'type' && key !== 'id' && key !== 'name' && key !== 'display' && key !== 'padding')\n\n if (unsupportedKeys.length > 0) {\n console.warn(\n `[AreaFocusManager] focusProvince expects options like { type: 'province', name: 'Ha Noi', display: 'highlight' }. Unsupported keys: ${unsupportedKeys.join(', ')}`\n )\n }\n\n return null\n }\n\n _getProvinceId(options) {\n if (options == null || typeof options !== 'object') {\n return null\n }\n\n return typeof options.id === 'number' ? options.id : null\n }\n}\n"],"mappings":"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"}