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

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 (183) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +88 -41
  3. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  4. package/android/.gradle/8.9/checksums/md5-checksums.bin +0 -0
  5. package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
  6. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  7. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  8. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  9. package/android/.gradle/8.9/gc.properties +0 -0
  10. package/android/.gradle/9.0-milestone-1/checksums/checksums.lock +0 -0
  11. package/android/.gradle/9.0-milestone-1/checksums/md5-checksums.bin +0 -0
  12. package/android/.gradle/9.0-milestone-1/checksums/sha1-checksums.bin +0 -0
  13. package/android/.gradle/9.0-milestone-1/fileChanges/last-build.bin +0 -0
  14. package/android/.gradle/9.0-milestone-1/fileHashes/fileHashes.lock +0 -0
  15. package/android/.gradle/9.0-milestone-1/gc.properties +0 -0
  16. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  17. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  18. package/android/.gradle/config.properties +2 -0
  19. package/android/.gradle/vcs-1/gc.properties +0 -0
  20. package/android/.idea/AndroidProjectSystem.xml +6 -0
  21. package/android/.idea/caches/deviceStreaming.xml +1570 -0
  22. package/android/.idea/copilot.data.migration.ask2agent.xml +6 -0
  23. package/android/.idea/gradle.xml +12 -0
  24. package/android/.idea/migrations.xml +10 -0
  25. package/android/.idea/misc.xml +10 -0
  26. package/android/.idea/runConfigurations.xml +17 -0
  27. package/android/.idea/vcs.xml +6 -0
  28. package/android/build.gradle +60 -60
  29. package/android/local.properties +8 -0
  30. package/android/src/main/AndroidManifest.xml +4 -4
  31. package/android/src/main/java/com/reactnativemap4dmap/ImageUtils.java +87 -87
  32. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapModule.java +298 -298
  33. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapPackage.java +35 -35
  34. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapViewManager.java +31 -31
  35. package/android/src/main/java/com/reactnativemap4dmap/RMFBuilding.java +167 -167
  36. package/android/src/main/java/com/reactnativemap4dmap/RMFBuildingManager.java +121 -121
  37. package/android/src/main/java/com/reactnativemap4dmap/RMFCircle.java +105 -105
  38. package/android/src/main/java/com/reactnativemap4dmap/RMFCircleManager.java +121 -121
  39. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRenderer.java +502 -502
  40. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRendererManager.java +143 -143
  41. package/android/src/main/java/com/reactnativemap4dmap/RMFFeature.java +17 -17
  42. package/android/src/main/java/com/reactnativemap4dmap/RMFMapView.java +1172 -1172
  43. package/android/src/main/java/com/reactnativemap4dmap/RMFMapViewManager.java +226 -226
  44. package/android/src/main/java/com/reactnativemap4dmap/RMFMarker.java +412 -412
  45. package/android/src/main/java/com/reactnativemap4dmap/RMFMarkerManager.java +211 -211
  46. package/android/src/main/java/com/reactnativemap4dmap/RMFPOI.java +222 -222
  47. package/android/src/main/java/com/reactnativemap4dmap/RMFPOIManager.java +119 -119
  48. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygon.java +172 -172
  49. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygonManager.java +147 -147
  50. package/android/src/main/java/com/reactnativemap4dmap/RMFPolyline.java +146 -146
  51. package/android/src/main/java/com/reactnativemap4dmap/RMFPolylineManager.java +137 -137
  52. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlay.java +95 -95
  53. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlayManager.java +64 -64
  54. package/android/src/main/java/com/reactnativemap4dmap/SizeReportingShadowNode.java +31 -31
  55. package/android/src/main/java/com/reactnativemap4dmap/ViewAttacherGroup.java +31 -31
  56. package/android/src/main/java/com/reactnativemap4dmap/ViewChangesTracker.java +70 -70
  57. package/android/src/main/java/vn/map4d/map/annotations/RMFBitmapDescriptor.java +9 -9
  58. package/ios/Map4dMap.h +7 -7
  59. package/ios/Map4dMap.m +14 -14
  60. package/ios/Map4dMapViewManager.m +34 -34
  61. package/ios/RCTConvert+Map4dMap.h +33 -33
  62. package/ios/RCTConvert+Map4dMap.m +112 -112
  63. package/ios/RMFCircle.h +37 -37
  64. package/ios/RMFCircle.m +100 -100
  65. package/ios/RMFCircleManager.h +18 -18
  66. package/ios/RMFCircleManager.m +155 -155
  67. package/ios/RMFCircleMap4d.h +23 -23
  68. package/ios/RMFCircleMap4d.m +13 -13
  69. package/ios/RMFCoordinate.h +22 -22
  70. package/ios/RMFCoordinate.m +13 -13
  71. package/ios/RMFDirectionsMarkerOptions.h +24 -24
  72. package/ios/RMFDirectionsMarkerOptions.m +23 -23
  73. package/ios/RMFDirectionsRenderer.h +47 -47
  74. package/ios/RMFDirectionsRenderer.m +182 -182
  75. package/ios/RMFDirectionsRendererManager.h +17 -17
  76. package/ios/RMFDirectionsRendererManager.m +84 -84
  77. package/ios/RMFDirectionsRendererMap4d.h +21 -21
  78. package/ios/RMFDirectionsRendererMap4d.m +12 -12
  79. package/ios/RMFDummyView.h +6 -6
  80. package/ios/RMFDummyView.m +12 -12
  81. package/ios/RMFEventResponse.h +39 -39
  82. package/ios/RMFEventResponse.m +98 -98
  83. package/ios/RMFIcon.h +24 -24
  84. package/ios/RMFIcon.m +35 -35
  85. package/ios/RMFMapView.h +84 -84
  86. package/ios/RMFMapView.m +376 -376
  87. package/ios/RMFMapViewManager.h +17 -17
  88. package/ios/RMFMapViewManager.m +493 -493
  89. package/ios/RMFMarker.h +57 -57
  90. package/ios/RMFMarker.m +267 -267
  91. package/ios/RMFMarkerManager.h +17 -17
  92. package/ios/RMFMarkerManager.m +156 -156
  93. package/ios/RMFMarkerMap4d.h +19 -19
  94. package/ios/RMFMarkerMap4d.m +13 -13
  95. package/ios/RMFPOI.h +38 -38
  96. package/ios/RMFPOI.m +123 -123
  97. package/ios/RMFPOIManager.h +18 -18
  98. package/ios/RMFPOIManager.m +168 -168
  99. package/ios/RMFPOIMap4d.h +22 -22
  100. package/ios/RMFPOIMap4d.m +12 -12
  101. package/ios/RMFPolygon.h +41 -41
  102. package/ios/RMFPolygon.m +106 -106
  103. package/ios/RMFPolygonManager.h +18 -18
  104. package/ios/RMFPolygonManager.m +141 -141
  105. package/ios/RMFPolygonMap4d.h +23 -23
  106. package/ios/RMFPolygonMap4d.m +15 -15
  107. package/ios/RMFPolyline.h +38 -38
  108. package/ios/RMFPolyline.m +101 -101
  109. package/ios/RMFPolylineManager.h +18 -18
  110. package/ios/RMFPolylineManager.m +139 -139
  111. package/ios/RMFPolylineMap4d.h +22 -22
  112. package/ios/RMFPolylineMap4d.m +15 -15
  113. package/ios/building/RMFBuilding.h +41 -41
  114. package/ios/building/RMFBuilding.m +104 -104
  115. package/ios/building/RMFBuildingManager.h +19 -19
  116. package/ios/building/RMFBuildingManager.m +133 -133
  117. package/ios/building/RMFBuildingMap4d.h +23 -23
  118. package/ios/building/RMFBuildingMap4d.m +15 -15
  119. package/ios/overlays/RMFTileOverlay.h +36 -36
  120. package/ios/overlays/RMFTileOverlay.m +64 -64
  121. package/ios/overlays/RMFTileOverlayManager.h +17 -17
  122. package/ios/overlays/RMFTileOverlayManager.m +27 -27
  123. package/lib/commonjs/components/MFBuilding.js +26 -26
  124. package/lib/commonjs/components/MFBuilding.js.map +1 -1
  125. package/lib/commonjs/components/MFCircle.js +20 -20
  126. package/lib/commonjs/components/MFCircle.js.map +1 -1
  127. package/lib/commonjs/components/MFDirectionsRenderer.js +32 -32
  128. package/lib/commonjs/components/MFDirectionsRenderer.js.map +1 -1
  129. package/lib/commonjs/components/MFMapView.js +133 -71
  130. package/lib/commonjs/components/MFMapView.js.map +1 -1
  131. package/lib/commonjs/components/MFMarker.js +35 -35
  132. package/lib/commonjs/components/MFMarker.js.map +1 -1
  133. package/lib/commonjs/components/MFPOI.js +20 -20
  134. package/lib/commonjs/components/MFPOI.js.map +1 -1
  135. package/lib/commonjs/components/MFPolygon.js +22 -22
  136. package/lib/commonjs/components/MFPolygon.js.map +1 -1
  137. package/lib/commonjs/components/MFPolyline.js +18 -18
  138. package/lib/commonjs/components/MFPolyline.js.map +1 -1
  139. package/lib/commonjs/components/MFTileOverlay.js +9 -9
  140. package/lib/commonjs/components/MFTileOverlay.js.map +1 -1
  141. package/lib/commonjs/components/Map4dMapView.js.map +1 -1
  142. package/lib/commonjs/components/extends/AreaFocuser.js +311 -0
  143. package/lib/commonjs/components/extends/AreaFocuser.js.map +1 -0
  144. package/lib/commonjs/index.js +8 -0
  145. package/lib/commonjs/index.js.map +1 -1
  146. package/lib/module/components/MFBuilding.js +26 -26
  147. package/lib/module/components/MFBuilding.js.map +1 -1
  148. package/lib/module/components/MFCircle.js +20 -20
  149. package/lib/module/components/MFCircle.js.map +1 -1
  150. package/lib/module/components/MFDirectionsRenderer.js +32 -32
  151. package/lib/module/components/MFDirectionsRenderer.js.map +1 -1
  152. package/lib/module/components/MFMapView.js +131 -71
  153. package/lib/module/components/MFMapView.js.map +1 -1
  154. package/lib/module/components/MFMarker.js +35 -35
  155. package/lib/module/components/MFMarker.js.map +1 -1
  156. package/lib/module/components/MFPOI.js +20 -20
  157. package/lib/module/components/MFPOI.js.map +1 -1
  158. package/lib/module/components/MFPolygon.js +22 -22
  159. package/lib/module/components/MFPolygon.js.map +1 -1
  160. package/lib/module/components/MFPolyline.js +18 -18
  161. package/lib/module/components/MFPolyline.js.map +1 -1
  162. package/lib/module/components/MFTileOverlay.js +9 -9
  163. package/lib/module/components/MFTileOverlay.js.map +1 -1
  164. package/lib/module/components/Map4dMapView.js.map +1 -1
  165. package/lib/module/components/extends/AreaFocuser.js +302 -0
  166. package/lib/module/components/extends/AreaFocuser.js.map +1 -0
  167. package/lib/module/index.js +2 -1
  168. package/lib/module/index.js.map +1 -1
  169. package/lib/typescript/components/Map4dMapView.d.ts +7 -7
  170. package/package.json +152 -152
  171. package/react-native-map4d-map.podspec +20 -20
  172. package/src/components/MFBuilding.js +187 -187
  173. package/src/components/MFCircle.js +173 -173
  174. package/src/components/MFDirectionsRenderer.js +237 -237
  175. package/src/components/MFMapView.js +447 -373
  176. package/src/components/MFMarker.js +246 -246
  177. package/src/components/MFPOI.js +184 -184
  178. package/src/components/MFPolygon.js +186 -186
  179. package/src/components/MFPolyline.js +172 -172
  180. package/src/components/MFTileOverlay.js +45 -45
  181. package/src/components/Map4dMapView.tsx +26 -26
  182. package/src/components/extends/AreaFocuser.js +339 -0
  183. package/src/index.js +23 -21
@@ -7,70 +7,70 @@ import { requireNativeComponent, Platform, Image, NativeModules, findNodeHandle,
7
7
  const viewPropTypes = ViewPropTypes || View.propTypes;
8
8
  const propTypes = { ...viewPropTypes,
9
9
 
10
- /**
11
- * The directions to display on the map,
12
- * retrieved as an array of array of coordinates to describe the routes.
13
- * Similar to directions prop but has higher priority
10
+ /**
11
+ * The directions to display on the map,
12
+ * retrieved as an array of array of coordinates to describe the routes.
13
+ * Similar to directions prop but has higher priority
14
14
  */
15
15
  routes: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.shape({
16
16
  latitude: PropTypes.number.isRequired,
17
17
  longitude: PropTypes.number.isRequired
18
18
  }))),
19
19
 
20
- /**
21
- * The directions to display on the map,
22
- * retrieved as a json string from Get route Map4D API (/sdk/route).
23
- * Similar to routes prop but with lower priority
20
+ /**
21
+ * The directions to display on the map,
22
+ * retrieved as a json string from Get route Map4D API (/sdk/route).
23
+ * Similar to routes prop but with lower priority
24
24
  */
25
25
  directions: PropTypes.string,
26
26
 
27
- /**
28
- * The index of the main route, default value is 0.
27
+ /**
28
+ * The index of the main route, default value is 0.
29
29
  */
30
30
  activedIndex: PropTypes.number,
31
31
 
32
- /**
33
- * The active route stroke width.
32
+ /**
33
+ * The active route stroke width.
34
34
  */
35
35
  activeStrokeWidth: PropTypes.number,
36
36
 
37
- /**
38
- * The active route color.
37
+ /**
38
+ * The active route color.
39
39
  */
40
40
  activeStrokeColor: ColorPropType,
41
41
 
42
- /**
43
- * The active route outline stroke width.
42
+ /**
43
+ * The active route outline stroke width.
44
44
  */
45
45
  activeOutlineWidth: PropTypes.number,
46
46
 
47
- /**
48
- * The active route outline color.
47
+ /**
48
+ * The active route outline color.
49
49
  */
50
50
  activeOutlineColor: ColorPropType,
51
51
 
52
- /**
53
- * The inactive route stroke width.
52
+ /**
53
+ * The inactive route stroke width.
54
54
  */
55
55
  inactiveStrokeWidth: PropTypes.number,
56
56
 
57
- /**
58
- * The inactive route color.
57
+ /**
58
+ * The inactive route color.
59
59
  */
60
60
  inactiveStrokeColor: ColorPropType,
61
61
 
62
- /**
63
- * The inactive route outline stroke width.
62
+ /**
63
+ * The inactive route outline stroke width.
64
64
  */
65
65
  inactiveOutlineWidth: PropTypes.number,
66
66
 
67
- /**
68
- * The inactive route outline color.
67
+ /**
68
+ * The inactive route outline color.
69
69
  */
70
70
  inactiveOutlineColor: ColorPropType,
71
71
 
72
- /**
73
- * The options of the origin POI.
72
+ /**
73
+ * The options of the origin POI.
74
74
  */
75
75
  originPOIOptions: PropTypes.shape({
76
76
  coordinate: PropTypes.shape({
@@ -85,8 +85,8 @@ const propTypes = { ...viewPropTypes,
85
85
  visible: PropTypes.bool
86
86
  }),
87
87
 
88
- /**
89
- * The options of the destination POI.
88
+ /**
89
+ * The options of the destination POI.
90
90
  */
91
91
  destinationPOIOptions: PropTypes.shape({
92
92
  coordinate: PropTypes.shape({
@@ -101,8 +101,8 @@ const propTypes = { ...viewPropTypes,
101
101
  visible: PropTypes.bool
102
102
  }),
103
103
 
104
- /**
105
- * Callback that is called when the user presses on the routes.
104
+ /**
105
+ * Callback that is called when the user presses on the routes.
106
106
  */
107
107
  onPress: PropTypes.func
108
108
  };
@@ -1 +1 @@
1
- {"version":3,"names":["React","PropTypes","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","Image","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","routes","arrayOf","shape","latitude","number","isRequired","longitude","directions","string","activedIndex","activeStrokeWidth","activeStrokeColor","activeOutlineWidth","activeOutlineColor","inactiveStrokeWidth","inactiveStrokeColor","inactiveOutlineWidth","inactiveOutlineColor","originPOIOptions","coordinate","icon","uri","any","title","titleColor","visible","bool","destinationPOIOptions","onPress","func","MFDirectionsRenderer","Component","constructor","props","_ref","bind","_onPress","setActivedIndex","index","_runCommand","setRoutes","setDirections","render","resolveAssetSource","ref","renderer","event","stopPropagation","name","args","OS","UIManager","dispatchViewManagerCommand","_getHandle","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","RMFDirectionsRenderer"],"sources":["MFDirectionsRenderer.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 Image,\n NativeModules,\n findNodeHandle,\n processColor\n} from 'react-native';\n\nconst viewPropTypes = ViewPropTypes || View.propTypes;\n\nconst propTypes = {\n ...viewPropTypes,\n\n /**\n * The directions to display on the map,\n * retrieved as an array of array of coordinates to describe the routes.\n * Similar to directions prop but has higher priority\n */\n routes: PropTypes.arrayOf(\n PropTypes.arrayOf(\n PropTypes.shape({\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n })\n )\n ),\n\n /**\n * The directions to display on the map,\n * retrieved as a json string from Get route Map4D API (/sdk/route).\n * Similar to routes prop but with lower priority\n */\n directions: PropTypes.string,\n\n /**\n * The index of the main route, default value is 0.\n */\n activedIndex: PropTypes.number,\n\n /**\n * The active route stroke width.\n */\n activeStrokeWidth: PropTypes.number,\n\n /**\n * The active route color.\n */\n activeStrokeColor: ColorPropType,\n\n /**\n * The active route outline stroke width.\n */\n activeOutlineWidth: PropTypes.number,\n\n /**\n * The active route outline color.\n */\n activeOutlineColor: ColorPropType,\n\n /**\n * The inactive route stroke width.\n */\n inactiveStrokeWidth: PropTypes.number,\n\n /**\n * The inactive route color.\n */\n inactiveStrokeColor: ColorPropType,\n\n /**\n * The inactive route outline stroke width.\n */\n inactiveOutlineWidth: PropTypes.number,\n\n /**\n * The inactive route outline color.\n */\n inactiveOutlineColor: ColorPropType,\n\n /**\n * The options of the origin POI.\n */\n originPOIOptions: PropTypes.shape({\n coordinate: PropTypes.shape({\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n }),\n\n icon: PropTypes.shape({\n uri: PropTypes.any.isRequired\n }),\n\n title: PropTypes.string,\n\n titleColor: ColorPropType,\n\n visible: PropTypes.bool,\n }),\n\n /**\n * The options of the destination POI.\n */\n destinationPOIOptions: PropTypes.shape({\n coordinate: PropTypes.shape({\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n }),\n\n icon: PropTypes.shape({\n uri: PropTypes.any.isRequired\n }),\n\n title: PropTypes.string,\n\n titleColor: ColorPropType,\n\n visible: PropTypes.bool,\n }),\n\n /**\n * Callback that is called when the user presses on the routes.\n */\n onPress: PropTypes.func,\n};\n\nclass MFDirectionsRenderer extends React.Component {\n constructor(props) {\n super(props)\n this._ref = this._ref.bind(this)\n this._onPress = this._onPress.bind(this)\n }\n\n setActivedIndex(index) {\n this._runCommand(\"setActivedIndex\", [index])\n }\n\n setRoutes(routes) {\n this._runCommand(\"setRoutes\", [routes])\n }\n\n setDirections(directions) {\n this._runCommand(\"setDirections\", [directions])\n }\n\n render() {\n let originPOIOptions = this.props.originPOIOptions\n if (originPOIOptions) {\n if (originPOIOptions.titleColor) {\n originPOIOptions.titleColor = processColor(originPOIOptions.titleColor)\n }\n if (originPOIOptions.icon) {\n let uri = Image.resolveAssetSource(originPOIOptions.icon.uri) || {uri: originPOIOptions.icon.uri};\n originPOIOptions.icon = {uri: uri.uri}\n }\n }\n\n let destinationPOIOptions = this.props.destinationPOIOptions\n if (destinationPOIOptions) {\n if (destinationPOIOptions.titleColor) {\n destinationPOIOptions.titleColor = processColor(destinationPOIOptions.titleColor)\n }\n if (destinationPOIOptions.icon) {\n let uri = Image.resolveAssetSource(destinationPOIOptions.icon.uri) || {uri: destinationPOIOptions.icon.uri};\n destinationPOIOptions.icon = {uri: uri.uri}\n }\n }\n\n return <RMFDirectionsRenderer\n {...this.props}\n originPOIOptions={originPOIOptions}\n destinationPOIOptions={destinationPOIOptions}\n ref={this._ref}\n onPress={this._onPress}\n />;\n }\n\n _ref(ref) {\n this.renderer = ref;\n }\n\n _onPress(event) {\n event.stopPropagation();\n if (this.props.onPress) {\n this.props.onPress(event);\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 _getHandle() {\n return findNodeHandle(this.renderer);\n }\n\n _uiManagerCommand(name) {\n const UIManager = NativeModules.UIManager;\n const componentName = \"RMFDirectionsRenderer\";\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[`RMFDirectionsRenderer`][name];\n }\n}\n\nMFDirectionsRenderer.propTypes = propTypes;\n\nvar RMFDirectionsRenderer = requireNativeComponent(`RMFDirectionsRenderer`, MFDirectionsRenderer);\n\nexport { MFDirectionsRenderer }\n"],"mappings":";;AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,SAAP,MAAsB,YAAtB;AACA,SAAQC,aAAR,EAAuBC,aAAvB,QAA2C,oCAA3C;AACA,SACEC,sBADF,EAEEC,QAFF,EAGEC,KAHF,EAIEC,aAJF,EAKEC,cALF,EAMEC,YANF,QAOO,cAPP;AASA,MAAMC,aAAa,GAAGR,aAAa,IAAIS,IAAI,CAACC,SAA5C;AAEA,MAAMA,SAAS,GAAG,EAChB,GAAGF,aADa;;EAGhB;AACF;AACA;AACA;AACA;EACEG,MAAM,EAAEZ,SAAS,CAACa,OAAV,CACNb,SAAS,CAACa,OAAV,CACEb,SAAS,CAACc,KAAV,CAAgB;IACdC,QAAQ,EAAEf,SAAS,CAACgB,MAAV,CAAiBC,UADb;IAEdC,SAAS,EAAElB,SAAS,CAACgB,MAAV,CAAiBC;EAFd,CAAhB,CADF,CADM,CARQ;;EAiBhB;AACF;AACA;AACA;AACA;EACEE,UAAU,EAAEnB,SAAS,CAACoB,MAtBN;;EAwBhB;AACF;AACA;EACEC,YAAY,EAAErB,SAAS,CAACgB,MA3BR;;EA6BhB;AACF;AACA;EACEM,iBAAiB,EAAEtB,SAAS,CAACgB,MAhCb;;EAkChB;AACF;AACA;EACEO,iBAAiB,EAAErB,aArCH;;EAuChB;AACF;AACA;EACEsB,kBAAkB,EAAExB,SAAS,CAACgB,MA1Cd;;EA4ChB;AACF;AACA;EACES,kBAAkB,EAAEvB,aA/CJ;;EAiDhB;AACF;AACA;EACEwB,mBAAmB,EAAE1B,SAAS,CAACgB,MApDf;;EAsDhB;AACF;AACA;EACEW,mBAAmB,EAAEzB,aAzDL;;EA2DhB;AACF;AACA;EACE0B,oBAAoB,EAAE5B,SAAS,CAACgB,MA9DhB;;EAgEhB;AACF;AACA;EACEa,oBAAoB,EAAE3B,aAnEN;;EAqEhB;AACF;AACA;EACE4B,gBAAgB,EAAE9B,SAAS,CAACc,KAAV,CAAgB;IAChCiB,UAAU,EAAE/B,SAAS,CAACc,KAAV,CAAgB;MAC1BC,QAAQ,EAAEf,SAAS,CAACgB,MAAV,CAAiBC,UADD;MAE1BC,SAAS,EAAElB,SAAS,CAACgB,MAAV,CAAiBC;IAFF,CAAhB,CADoB;IAMhCe,IAAI,EAAEhC,SAAS,CAACc,KAAV,CAAgB;MACpBmB,GAAG,EAAEjC,SAAS,CAACkC,GAAV,CAAcjB;IADC,CAAhB,CAN0B;IAUhCkB,KAAK,EAAEnC,SAAS,CAACoB,MAVe;IAYhCgB,UAAU,EAAElC,aAZoB;IAchCmC,OAAO,EAAErC,SAAS,CAACsC;EAda,CAAhB,CAxEF;;EAyFhB;AACF;AACA;EACEC,qBAAqB,EAAEvC,SAAS,CAACc,KAAV,CAAgB;IACrCiB,UAAU,EAAE/B,SAAS,CAACc,KAAV,CAAgB;MAC1BC,QAAQ,EAAEf,SAAS,CAACgB,MAAV,CAAiBC,UADD;MAE1BC,SAAS,EAAElB,SAAS,CAACgB,MAAV,CAAiBC;IAFF,CAAhB,CADyB;IAMrCe,IAAI,EAAEhC,SAAS,CAACc,KAAV,CAAgB;MACpBmB,GAAG,EAAEjC,SAAS,CAACkC,GAAV,CAAcjB;IADC,CAAhB,CAN+B;IAUrCkB,KAAK,EAAEnC,SAAS,CAACoB,MAVoB;IAYrCgB,UAAU,EAAElC,aAZyB;IAcrCmC,OAAO,EAAErC,SAAS,CAACsC;EAdkB,CAAhB,CA5FP;;EA6GhB;AACF;AACA;EACEE,OAAO,EAAExC,SAAS,CAACyC;AAhHH,CAAlB;;AAmHA,MAAMC,oBAAN,SAAmC3C,KAAK,CAAC4C,SAAzC,CAAmD;EACjDC,WAAW,CAACC,KAAD,EAAQ;IACjB,MAAMA,KAAN;IACA,KAAKC,IAAL,GAAY,KAAKA,IAAL,CAAUC,IAAV,CAAe,IAAf,CAAZ;IACA,KAAKC,QAAL,GAAgB,KAAKA,QAAL,CAAcD,IAAd,CAAmB,IAAnB,CAAhB;EACD;;EAEDE,eAAe,CAACC,KAAD,EAAQ;IACrB,KAAKC,WAAL,CAAiB,iBAAjB,EAAoC,CAACD,KAAD,CAApC;EACD;;EAEDE,SAAS,CAACxC,MAAD,EAAS;IAChB,KAAKuC,WAAL,CAAiB,WAAjB,EAA8B,CAACvC,MAAD,CAA9B;EACD;;EAEDyC,aAAa,CAAClC,UAAD,EAAa;IACxB,KAAKgC,WAAL,CAAiB,eAAjB,EAAkC,CAAChC,UAAD,CAAlC;EACD;;EAEDmC,MAAM,GAAG;IACP,IAAIxB,gBAAgB,GAAG,KAAKe,KAAL,CAAWf,gBAAlC;;IACA,IAAIA,gBAAJ,EAAsB;MACpB,IAAIA,gBAAgB,CAACM,UAArB,EAAiC;QAC/BN,gBAAgB,CAACM,UAAjB,GAA8B5B,YAAY,CAACsB,gBAAgB,CAACM,UAAlB,CAA1C;MACD;;MACD,IAAIN,gBAAgB,CAACE,IAArB,EAA2B;QACzB,IAAIC,GAAG,GAAG5B,KAAK,CAACkD,kBAAN,CAAyBzB,gBAAgB,CAACE,IAAjB,CAAsBC,GAA/C,KAAuD;UAACA,GAAG,EAAEH,gBAAgB,CAACE,IAAjB,CAAsBC;QAA5B,CAAjE;QACAH,gBAAgB,CAACE,IAAjB,GAAwB;UAACC,GAAG,EAAEA,GAAG,CAACA;QAAV,CAAxB;MACD;IACF;;IAED,IAAIM,qBAAqB,GAAG,KAAKM,KAAL,CAAWN,qBAAvC;;IACA,IAAIA,qBAAJ,EAA2B;MACzB,IAAIA,qBAAqB,CAACH,UAA1B,EAAsC;QACpCG,qBAAqB,CAACH,UAAtB,GAAmC5B,YAAY,CAAC+B,qBAAqB,CAACH,UAAvB,CAA/C;MACD;;MACD,IAAIG,qBAAqB,CAACP,IAA1B,EAAgC;QAC9B,IAAIC,GAAG,GAAG5B,KAAK,CAACkD,kBAAN,CAAyBhB,qBAAqB,CAACP,IAAtB,CAA2BC,GAApD,KAA4D;UAACA,GAAG,EAAEM,qBAAqB,CAACP,IAAtB,CAA2BC;QAAjC,CAAtE;QACAM,qBAAqB,CAACP,IAAtB,GAA6B;UAACC,GAAG,EAAEA,GAAG,CAACA;QAAV,CAA7B;MACD;IACF;;IAED,oBAAO,oBAAC,qBAAD,eACD,KAAKY,KADJ;MAEL,gBAAgB,EAAEf,gBAFb;MAGL,qBAAqB,EAAES,qBAHlB;MAIL,GAAG,EAAE,KAAKO,IAJL;MAKL,OAAO,EAAE,KAAKE;IALT,GAAP;EAOD;;EAEDF,IAAI,CAACU,GAAD,EAAM;IACR,KAAKC,QAAL,GAAgBD,GAAhB;EACD;;EAEDR,QAAQ,CAACU,KAAD,EAAQ;IACdA,KAAK,CAACC,eAAN;;IACE,IAAI,KAAKd,KAAL,CAAWL,OAAf,EAAwB;MACtB,KAAKK,KAAL,CAAWL,OAAX,CAAmBkB,KAAnB;IACH;EACF;;EAEDP,WAAW,CAACS,IAAD,EAAOC,IAAP,EAAa;IACtB,QAAQzD,QAAQ,CAAC0D,EAAjB;MACE,KAAK,SAAL;QACExD,aAAa,CAACyD,SAAd,CAAwBC,0BAAxB,CACE,KAAKC,UAAL,EADF,EAEE,KAAKC,iBAAL,CAAuBN,IAAvB,CAFF,EAGEC,IAHF;QAKA;;MAEF,KAAK,KAAL;QACE,KAAKM,kBAAL,CAAwBP,IAAxB,EAA8B,KAAKK,UAAL,EAA9B,EAAiD,GAAGJ,IAApD;;QACA;;MAEF;QACE;IAdJ;EAgBD;;EAEDI,UAAU,GAAG;IACX,OAAO1D,cAAc,CAAC,KAAKkD,QAAN,CAArB;EACD;;EAEDS,iBAAiB,CAACN,IAAD,EAAO;IACtB,MAAMG,SAAS,GAAGzD,aAAa,CAACyD,SAAhC;IACA,MAAMK,aAAa,GAAG,uBAAtB;;IAEA,IAAI,CAACL,SAAS,CAACM,oBAAf,EAAqC;MACnC;MACA,OAAON,SAAS,CAACK,aAAD,CAAT,CAAyBE,QAAzB,CAAkCV,IAAlC,CAAP;IACD,CAPqB,CAStB;;;IACA,OAAOG,SAAS,CAACM,oBAAV,CAA+BD,aAA/B,EAA8CE,QAA9C,CAAuDV,IAAvD,CAAP;EACD;;EAEDO,kBAAkB,CAACP,IAAD,EAAO;IACvB,OAAOtD,aAAa,CAAE,uBAAF,CAAb,CAAuCsD,IAAvC,CAAP;EACD;;AApGgD;;AAuGnDlB,oBAAoB,CAAC/B,SAArB,GAAiCA,SAAjC;AAEA,IAAI4D,qBAAqB,GAAGpE,sBAAsB,CAAE,uBAAF,EAA0BuC,oBAA1B,CAAlD;AAEA,SAASA,oBAAT"}
1
+ {"version":3,"names":["React","PropTypes","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","Image","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","routes","arrayOf","shape","latitude","number","isRequired","longitude","directions","string","activedIndex","activeStrokeWidth","activeStrokeColor","activeOutlineWidth","activeOutlineColor","inactiveStrokeWidth","inactiveStrokeColor","inactiveOutlineWidth","inactiveOutlineColor","originPOIOptions","coordinate","icon","uri","any","title","titleColor","visible","bool","destinationPOIOptions","onPress","func","MFDirectionsRenderer","Component","constructor","props","_ref","bind","_onPress","setActivedIndex","index","_runCommand","setRoutes","setDirections","render","resolveAssetSource","ref","renderer","event","stopPropagation","name","args","OS","UIManager","dispatchViewManagerCommand","_getHandle","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","RMFDirectionsRenderer"],"sources":["MFDirectionsRenderer.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 Image,\r\n NativeModules,\r\n findNodeHandle,\r\n processColor\r\n} from 'react-native';\r\n\r\nconst viewPropTypes = ViewPropTypes || View.propTypes;\r\n\r\nconst propTypes = {\r\n ...viewPropTypes,\r\n\r\n /**\r\n * The directions to display on the map,\r\n * retrieved as an array of array of coordinates to describe the routes.\r\n * Similar to directions prop but has higher priority\r\n */\r\n routes: PropTypes.arrayOf(\r\n PropTypes.arrayOf(\r\n PropTypes.shape({\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 directions to display on the map,\r\n * retrieved as a json string from Get route Map4D API (/sdk/route).\r\n * Similar to routes prop but with lower priority\r\n */\r\n directions: PropTypes.string,\r\n\r\n /**\r\n * The index of the main route, default value is 0.\r\n */\r\n activedIndex: PropTypes.number,\r\n\r\n /**\r\n * The active route stroke width.\r\n */\r\n activeStrokeWidth: PropTypes.number,\r\n\r\n /**\r\n * The active route color.\r\n */\r\n activeStrokeColor: ColorPropType,\r\n\r\n /**\r\n * The active route outline stroke width.\r\n */\r\n activeOutlineWidth: PropTypes.number,\r\n\r\n /**\r\n * The active route outline color.\r\n */\r\n activeOutlineColor: ColorPropType,\r\n\r\n /**\r\n * The inactive route stroke width.\r\n */\r\n inactiveStrokeWidth: PropTypes.number,\r\n\r\n /**\r\n * The inactive route color.\r\n */\r\n inactiveStrokeColor: ColorPropType,\r\n\r\n /**\r\n * The inactive route outline stroke width.\r\n */\r\n inactiveOutlineWidth: PropTypes.number,\r\n\r\n /**\r\n * The inactive route outline color.\r\n */\r\n inactiveOutlineColor: ColorPropType,\r\n\r\n /**\r\n * The options of the origin POI.\r\n */\r\n originPOIOptions: PropTypes.shape({\r\n coordinate: PropTypes.shape({\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n }),\r\n\r\n icon: PropTypes.shape({\r\n uri: PropTypes.any.isRequired\r\n }),\r\n\r\n title: PropTypes.string,\r\n\r\n titleColor: ColorPropType,\r\n\r\n visible: PropTypes.bool,\r\n }),\r\n\r\n /**\r\n * The options of the destination POI.\r\n */\r\n destinationPOIOptions: PropTypes.shape({\r\n coordinate: PropTypes.shape({\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n }),\r\n\r\n icon: PropTypes.shape({\r\n uri: PropTypes.any.isRequired\r\n }),\r\n\r\n title: PropTypes.string,\r\n\r\n titleColor: ColorPropType,\r\n\r\n visible: PropTypes.bool,\r\n }),\r\n\r\n /**\r\n * Callback that is called when the user presses on the routes.\r\n */\r\n onPress: PropTypes.func,\r\n};\r\n\r\nclass MFDirectionsRenderer extends React.Component {\r\n constructor(props) {\r\n super(props)\r\n this._ref = this._ref.bind(this)\r\n this._onPress = this._onPress.bind(this)\r\n }\r\n\r\n setActivedIndex(index) {\r\n this._runCommand(\"setActivedIndex\", [index])\r\n }\r\n\r\n setRoutes(routes) {\r\n this._runCommand(\"setRoutes\", [routes])\r\n }\r\n\r\n setDirections(directions) {\r\n this._runCommand(\"setDirections\", [directions])\r\n }\r\n\r\n render() {\r\n let originPOIOptions = this.props.originPOIOptions\r\n if (originPOIOptions) {\r\n if (originPOIOptions.titleColor) {\r\n originPOIOptions.titleColor = processColor(originPOIOptions.titleColor)\r\n }\r\n if (originPOIOptions.icon) {\r\n let uri = Image.resolveAssetSource(originPOIOptions.icon.uri) || {uri: originPOIOptions.icon.uri};\r\n originPOIOptions.icon = {uri: uri.uri}\r\n }\r\n }\r\n\r\n let destinationPOIOptions = this.props.destinationPOIOptions\r\n if (destinationPOIOptions) {\r\n if (destinationPOIOptions.titleColor) {\r\n destinationPOIOptions.titleColor = processColor(destinationPOIOptions.titleColor)\r\n }\r\n if (destinationPOIOptions.icon) {\r\n let uri = Image.resolveAssetSource(destinationPOIOptions.icon.uri) || {uri: destinationPOIOptions.icon.uri};\r\n destinationPOIOptions.icon = {uri: uri.uri}\r\n }\r\n }\r\n\r\n return <RMFDirectionsRenderer\r\n {...this.props}\r\n originPOIOptions={originPOIOptions}\r\n destinationPOIOptions={destinationPOIOptions}\r\n ref={this._ref}\r\n onPress={this._onPress}\r\n />;\r\n }\r\n\r\n _ref(ref) {\r\n this.renderer = ref;\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 _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 _getHandle() {\r\n return findNodeHandle(this.renderer);\r\n }\r\n\r\n _uiManagerCommand(name) {\r\n const UIManager = NativeModules.UIManager;\r\n const componentName = \"RMFDirectionsRenderer\";\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[`RMFDirectionsRenderer`][name];\r\n }\r\n}\r\n\r\nMFDirectionsRenderer.propTypes = propTypes;\r\n\r\nvar RMFDirectionsRenderer = requireNativeComponent(`RMFDirectionsRenderer`, MFDirectionsRenderer);\r\n\r\nexport { MFDirectionsRenderer }\r\n"],"mappings":";;AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,SAAP,MAAsB,YAAtB;AACA,SAAQC,aAAR,EAAuBC,aAAvB,QAA2C,oCAA3C;AACA,SACEC,sBADF,EAEEC,QAFF,EAGEC,KAHF,EAIEC,aAJF,EAKEC,cALF,EAMEC,YANF,QAOO,cAPP;AASA,MAAMC,aAAa,GAAGR,aAAa,IAAIS,IAAI,CAACC,SAA5C;AAEA,MAAMA,SAAS,GAAG,EAChB,GAAGF,aADa;;EAGhB;AACF;AACA;AACA;AACA;EACEG,MAAM,EAAEZ,SAAS,CAACa,OAAV,CACNb,SAAS,CAACa,OAAV,CACEb,SAAS,CAACc,KAAV,CAAgB;IACdC,QAAQ,EAAEf,SAAS,CAACgB,MAAV,CAAiBC,UADb;IAEdC,SAAS,EAAElB,SAAS,CAACgB,MAAV,CAAiBC;EAFd,CAAhB,CADF,CADM,CARQ;;EAiBhB;AACF;AACA;AACA;AACA;EACEE,UAAU,EAAEnB,SAAS,CAACoB,MAtBN;;EAwBhB;AACF;AACA;EACEC,YAAY,EAAErB,SAAS,CAACgB,MA3BR;;EA6BhB;AACF;AACA;EACEM,iBAAiB,EAAEtB,SAAS,CAACgB,MAhCb;;EAkChB;AACF;AACA;EACEO,iBAAiB,EAAErB,aArCH;;EAuChB;AACF;AACA;EACEsB,kBAAkB,EAAExB,SAAS,CAACgB,MA1Cd;;EA4ChB;AACF;AACA;EACES,kBAAkB,EAAEvB,aA/CJ;;EAiDhB;AACF;AACA;EACEwB,mBAAmB,EAAE1B,SAAS,CAACgB,MApDf;;EAsDhB;AACF;AACA;EACEW,mBAAmB,EAAEzB,aAzDL;;EA2DhB;AACF;AACA;EACE0B,oBAAoB,EAAE5B,SAAS,CAACgB,MA9DhB;;EAgEhB;AACF;AACA;EACEa,oBAAoB,EAAE3B,aAnEN;;EAqEhB;AACF;AACA;EACE4B,gBAAgB,EAAE9B,SAAS,CAACc,KAAV,CAAgB;IAChCiB,UAAU,EAAE/B,SAAS,CAACc,KAAV,CAAgB;MAC1BC,QAAQ,EAAEf,SAAS,CAACgB,MAAV,CAAiBC,UADD;MAE1BC,SAAS,EAAElB,SAAS,CAACgB,MAAV,CAAiBC;IAFF,CAAhB,CADoB;IAMhCe,IAAI,EAAEhC,SAAS,CAACc,KAAV,CAAgB;MACpBmB,GAAG,EAAEjC,SAAS,CAACkC,GAAV,CAAcjB;IADC,CAAhB,CAN0B;IAUhCkB,KAAK,EAAEnC,SAAS,CAACoB,MAVe;IAYhCgB,UAAU,EAAElC,aAZoB;IAchCmC,OAAO,EAAErC,SAAS,CAACsC;EAda,CAAhB,CAxEF;;EAyFhB;AACF;AACA;EACEC,qBAAqB,EAAEvC,SAAS,CAACc,KAAV,CAAgB;IACrCiB,UAAU,EAAE/B,SAAS,CAACc,KAAV,CAAgB;MAC1BC,QAAQ,EAAEf,SAAS,CAACgB,MAAV,CAAiBC,UADD;MAE1BC,SAAS,EAAElB,SAAS,CAACgB,MAAV,CAAiBC;IAFF,CAAhB,CADyB;IAMrCe,IAAI,EAAEhC,SAAS,CAACc,KAAV,CAAgB;MACpBmB,GAAG,EAAEjC,SAAS,CAACkC,GAAV,CAAcjB;IADC,CAAhB,CAN+B;IAUrCkB,KAAK,EAAEnC,SAAS,CAACoB,MAVoB;IAYrCgB,UAAU,EAAElC,aAZyB;IAcrCmC,OAAO,EAAErC,SAAS,CAACsC;EAdkB,CAAhB,CA5FP;;EA6GhB;AACF;AACA;EACEE,OAAO,EAAExC,SAAS,CAACyC;AAhHH,CAAlB;;AAmHA,MAAMC,oBAAN,SAAmC3C,KAAK,CAAC4C,SAAzC,CAAmD;EACjDC,WAAW,CAACC,KAAD,EAAQ;IACjB,MAAMA,KAAN;IACA,KAAKC,IAAL,GAAY,KAAKA,IAAL,CAAUC,IAAV,CAAe,IAAf,CAAZ;IACA,KAAKC,QAAL,GAAgB,KAAKA,QAAL,CAAcD,IAAd,CAAmB,IAAnB,CAAhB;EACD;;EAEDE,eAAe,CAACC,KAAD,EAAQ;IACrB,KAAKC,WAAL,CAAiB,iBAAjB,EAAoC,CAACD,KAAD,CAApC;EACD;;EAEDE,SAAS,CAACxC,MAAD,EAAS;IAChB,KAAKuC,WAAL,CAAiB,WAAjB,EAA8B,CAACvC,MAAD,CAA9B;EACD;;EAEDyC,aAAa,CAAClC,UAAD,EAAa;IACxB,KAAKgC,WAAL,CAAiB,eAAjB,EAAkC,CAAChC,UAAD,CAAlC;EACD;;EAEDmC,MAAM,GAAG;IACP,IAAIxB,gBAAgB,GAAG,KAAKe,KAAL,CAAWf,gBAAlC;;IACA,IAAIA,gBAAJ,EAAsB;MACpB,IAAIA,gBAAgB,CAACM,UAArB,EAAiC;QAC/BN,gBAAgB,CAACM,UAAjB,GAA8B5B,YAAY,CAACsB,gBAAgB,CAACM,UAAlB,CAA1C;MACD;;MACD,IAAIN,gBAAgB,CAACE,IAArB,EAA2B;QACzB,IAAIC,GAAG,GAAG5B,KAAK,CAACkD,kBAAN,CAAyBzB,gBAAgB,CAACE,IAAjB,CAAsBC,GAA/C,KAAuD;UAACA,GAAG,EAAEH,gBAAgB,CAACE,IAAjB,CAAsBC;QAA5B,CAAjE;QACAH,gBAAgB,CAACE,IAAjB,GAAwB;UAACC,GAAG,EAAEA,GAAG,CAACA;QAAV,CAAxB;MACD;IACF;;IAED,IAAIM,qBAAqB,GAAG,KAAKM,KAAL,CAAWN,qBAAvC;;IACA,IAAIA,qBAAJ,EAA2B;MACzB,IAAIA,qBAAqB,CAACH,UAA1B,EAAsC;QACpCG,qBAAqB,CAACH,UAAtB,GAAmC5B,YAAY,CAAC+B,qBAAqB,CAACH,UAAvB,CAA/C;MACD;;MACD,IAAIG,qBAAqB,CAACP,IAA1B,EAAgC;QAC9B,IAAIC,GAAG,GAAG5B,KAAK,CAACkD,kBAAN,CAAyBhB,qBAAqB,CAACP,IAAtB,CAA2BC,GAApD,KAA4D;UAACA,GAAG,EAAEM,qBAAqB,CAACP,IAAtB,CAA2BC;QAAjC,CAAtE;QACAM,qBAAqB,CAACP,IAAtB,GAA6B;UAACC,GAAG,EAAEA,GAAG,CAACA;QAAV,CAA7B;MACD;IACF;;IAED,oBAAO,oBAAC,qBAAD,eACD,KAAKY,KADJ;MAEL,gBAAgB,EAAEf,gBAFb;MAGL,qBAAqB,EAAES,qBAHlB;MAIL,GAAG,EAAE,KAAKO,IAJL;MAKL,OAAO,EAAE,KAAKE;IALT,GAAP;EAOD;;EAEDF,IAAI,CAACU,GAAD,EAAM;IACR,KAAKC,QAAL,GAAgBD,GAAhB;EACD;;EAEDR,QAAQ,CAACU,KAAD,EAAQ;IACdA,KAAK,CAACC,eAAN;;IACE,IAAI,KAAKd,KAAL,CAAWL,OAAf,EAAwB;MACtB,KAAKK,KAAL,CAAWL,OAAX,CAAmBkB,KAAnB;IACH;EACF;;EAEDP,WAAW,CAACS,IAAD,EAAOC,IAAP,EAAa;IACtB,QAAQzD,QAAQ,CAAC0D,EAAjB;MACE,KAAK,SAAL;QACExD,aAAa,CAACyD,SAAd,CAAwBC,0BAAxB,CACE,KAAKC,UAAL,EADF,EAEE,KAAKC,iBAAL,CAAuBN,IAAvB,CAFF,EAGEC,IAHF;QAKA;;MAEF,KAAK,KAAL;QACE,KAAKM,kBAAL,CAAwBP,IAAxB,EAA8B,KAAKK,UAAL,EAA9B,EAAiD,GAAGJ,IAApD;;QACA;;MAEF;QACE;IAdJ;EAgBD;;EAEDI,UAAU,GAAG;IACX,OAAO1D,cAAc,CAAC,KAAKkD,QAAN,CAArB;EACD;;EAEDS,iBAAiB,CAACN,IAAD,EAAO;IACtB,MAAMG,SAAS,GAAGzD,aAAa,CAACyD,SAAhC;IACA,MAAMK,aAAa,GAAG,uBAAtB;;IAEA,IAAI,CAACL,SAAS,CAACM,oBAAf,EAAqC;MACnC;MACA,OAAON,SAAS,CAACK,aAAD,CAAT,CAAyBE,QAAzB,CAAkCV,IAAlC,CAAP;IACD,CAPqB,CAStB;;;IACA,OAAOG,SAAS,CAACM,oBAAV,CAA+BD,aAA/B,EAA8CE,QAA9C,CAAuDV,IAAvD,CAAP;EACD;;EAEDO,kBAAkB,CAACP,IAAD,EAAO;IACvB,OAAOtD,aAAa,CAAE,uBAAF,CAAb,CAAuCsD,IAAvC,CAAP;EACD;;AApGgD;;AAuGnDlB,oBAAoB,CAAC/B,SAArB,GAAiCA,SAAjC;AAEA,IAAI4D,qBAAqB,GAAGpE,sBAAsB,CAAE,uBAAF,EAA0BuC,oBAA1B,CAAlD;AAEA,SAASA,oBAAT"}
@@ -3,6 +3,8 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
3
3
  import PropTypes from 'prop-types';
4
4
  import React from 'react';
5
5
  import { ViewPropTypes, ColorPropType } from 'deprecated-react-native-prop-types';
6
+ import { AreaFocuser } from './extends/AreaFocuser';
7
+ import { MFPolygon } from './MFPolygon';
6
8
  import { requireNativeComponent, Platform, NativeModules, findNodeHandle } from 'react-native';
7
9
  const CameraShape = PropTypes.shape({
8
10
  target: PropTypes.shape({
@@ -17,122 +19,122 @@ const CameraShape = PropTypes.shape({
17
19
  const viewPropTypes = ViewPropTypes || View.propTypes;
18
20
  const propTypes = { ...viewPropTypes,
19
21
 
20
- /**
21
- * An opaque identifier for a custom map configuration.
22
+ /**
23
+ * An opaque identifier for a custom map configuration.
22
24
  */
23
25
  mapID: PropTypes.string,
24
26
 
25
- /**
26
- * Map style by string for a custom map configuration.
27
+ /**
28
+ * Map style by string for a custom map configuration.
27
29
  */
28
30
  mapStyle: PropTypes.string,
29
31
 
30
- /**
31
- * If `false` hide the button to move map to the current user's location.
32
- * Default value is `false`.
32
+ /**
33
+ * If `false` hide the button to move map to the current user's location.
34
+ * Default value is `false`.
33
35
  */
34
36
  showsMyLocationButton: PropTypes.bool,
35
37
 
36
- /**
37
- * If `true` the app will ask for the user's location.
38
- * Default value is `false`.
38
+ /**
39
+ * If `true` the app will ask for the user's location.
40
+ * Default value is `false`.
39
41
  */
40
42
  showsMyLocation: PropTypes.bool,
41
43
 
42
- /**
43
- * A Boolean indicating whether the map displays buildings.
44
- * Default value is `true`.
44
+ /**
45
+ * A Boolean indicating whether the map displays buildings.
46
+ * Default value is `true`.
45
47
  */
46
48
  showsBuildings: PropTypes.bool,
47
49
 
48
- /**
49
- * A Boolean indicating whether the map displays POIs.
50
- * Default value is `true`.
50
+ /**
51
+ * A Boolean indicating whether the map displays POIs.
52
+ * Default value is `true`.
51
53
  */
52
54
  showsPOIs: PropTypes.bool,
53
55
 
54
- /**
55
- * If `false` the user won't be able to zoom the map.
56
- * Default value is `true`.
56
+ /**
57
+ * If `false` the user won't be able to zoom the map.
58
+ * Default value is `true`.
57
59
  */
58
60
  zoomGesturesEnabled: PropTypes.bool,
59
61
 
60
- /**
61
- * If `false` the user won't be able to scroll the map.
62
- * Default value is `true`.
62
+ /**
63
+ * If `false` the user won't be able to scroll the map.
64
+ * Default value is `true`.
63
65
  */
64
66
  scrollGesturesEnabled: PropTypes.bool,
65
67
 
66
- /**
67
- * If `false` the user won't be able to pinch/rotate the map.
68
- * Default value is `true`.
68
+ /**
69
+ * If `false` the user won't be able to pinch/rotate the map.
70
+ * Default value is `true`.
69
71
  */
70
72
  rotateGesturesEnabled: PropTypes.bool,
71
73
 
72
- /**
73
- * If `false` the user won't be able to tilt the map.
74
- * Default value is `true`.
74
+ /**
75
+ * If `false` the user won't be able to tilt the map.
76
+ * Default value is `true`.
75
77
  */
76
78
  tiltGesturesEnabled: PropTypes.bool,
77
79
 
78
- /**
79
- * The camera view position.
80
+ /**
81
+ * The camera view position.
80
82
  */
81
83
  camera: CameraShape,
82
84
 
83
- /**
84
- * Type of map tiles to be rendered.
85
+ /**
86
+ * Type of map tiles to be rendered.
85
87
  */
86
88
  mapType: PropTypes.oneOf(['roadmap', 'satellite', 'hybrid']),
87
89
 
88
- /**
89
- * Callback that is called once the map is fully loaded.
90
- * @platform android
90
+ /**
91
+ * Callback that is called once the map is fully loaded.
92
+ * @platform android
91
93
  */
92
94
  onMapReady: PropTypes.func,
93
95
 
94
- /**
95
- * Callback that is called when user taps on the map.
96
+ /**
97
+ * Callback that is called when user taps on the map.
96
98
  */
97
99
  onPress: PropTypes.func,
98
100
 
99
- /**
100
- * Callback that is called when user taps on the POIs
101
+ /**
102
+ * Callback that is called when user taps on the POIs
101
103
  */
102
104
  onPoiPress: PropTypes.func,
103
105
 
104
- /**
105
- * Callback that is called when user taps on the Buildings
106
+ /**
107
+ * Callback that is called when user taps on the Buildings
106
108
  */
107
109
  onBuildingPress: PropTypes.func,
108
110
 
109
- /**
110
- * Callback that is called when user taps on the Places
111
+ /**
112
+ * Callback that is called when user taps on the Places
111
113
  */
112
114
  onPlacePress: PropTypes.func,
113
115
 
114
- /**
115
- * Callback that is called when user taps on the Data Source Features
116
+ /**
117
+ * Callback that is called when user taps on the Data Source Features
116
118
  */
117
119
  onDataSourceFeaturePress: PropTypes.func,
118
120
 
119
- /**
120
- * Callback that is called when moving camera
121
+ /**
122
+ * Callback that is called when moving camera
121
123
  */
122
124
  onCameraMove: PropTypes.func,
123
125
 
124
- /**
125
- * Callback that is called when camera start moving
126
+ /**
127
+ * Callback that is called when camera start moving
126
128
  */
127
129
  onCameraMoveStart: PropTypes.func,
128
130
 
129
- /**
130
- * Callback that is called when camera idle
131
+ /**
132
+ * Callback that is called when camera idle
131
133
  */
132
134
  onCameraIdle: PropTypes.func,
133
135
 
134
- /**
135
- * Callback that is called when user taps on location Button
136
+ /**
137
+ * Callback that is called when user taps on location Button
136
138
  */
137
139
  onMyLocationButtonPress: PropTypes.func
138
140
  };
@@ -140,13 +142,57 @@ const propTypes = { ...viewPropTypes,
140
142
  class MFMapView extends React.Component {
141
143
  constructor(props) {
142
144
  super(props);
145
+ this.areaFocuser = new AreaFocuser(this);
143
146
  this.state = {
144
- isReady: Platform.OS === 'ios'
147
+ isReady: Platform.OS === 'ios',
148
+ managedPolygons: {}
145
149
  };
146
150
  this._onMapReady = this._onMapReady.bind(this);
147
151
  this._ref = this._ref.bind(this);
148
152
  }
149
153
 
154
+ _addPolygon(polygon) {
155
+ if (polygon == null || typeof polygon !== 'object') {
156
+ return null;
157
+ }
158
+
159
+ const id = typeof polygon.id === 'string' && polygon.id.trim().length > 0 ? polygon.id : 'polygon-highlight-id-default';
160
+ const _polygon = { ...polygon,
161
+ id
162
+ };
163
+ this.setState(prevState => ({
164
+ managedPolygons: { ...prevState.managedPolygons,
165
+ [id]: _polygon
166
+ }
167
+ }));
168
+ return id;
169
+ }
170
+
171
+ _removePolygon(id) {
172
+ if (typeof id !== 'string' || id.trim().length === 0) {
173
+ return;
174
+ }
175
+
176
+ this.setState(prevState => {
177
+ if (!prevState.managedPolygons[id]) {
178
+ return null;
179
+ }
180
+
181
+ const managedPolygons = { ...prevState.managedPolygons
182
+ };
183
+ delete managedPolygons[id];
184
+ return {
185
+ managedPolygons
186
+ };
187
+ });
188
+ }
189
+
190
+ _clearManagedPolygons() {
191
+ this.setState({
192
+ managedPolygons: {}
193
+ });
194
+ }
195
+
150
196
  _onMapReady() {
151
197
  const {
152
198
  onMapReady
@@ -257,14 +303,14 @@ class MFMapView extends React.Component {
257
303
 
258
304
  return Promise.reject('cameraForBounds not supported on this platform');
259
305
  }
260
- /**
261
- * Convert a map coordinate to screen point
262
- *
263
- * @param coordinate Coordinate
264
- * @param [coordinate.latitude] Latitude
265
- * @param [coordinate.longitude] Longitude
266
- *
267
- * @return Promise Promise with the point ({ x: Number, y: Number })
306
+ /**
307
+ * Convert a map coordinate to screen point
308
+ *
309
+ * @param coordinate Coordinate
310
+ * @param [coordinate.latitude] Latitude
311
+ * @param [coordinate.longitude] Longitude
312
+ *
313
+ * @return Promise Promise with the point ({ x: Number, y: Number })
268
314
  */
269
315
 
270
316
 
@@ -277,14 +323,14 @@ class MFMapView extends React.Component {
277
323
 
278
324
  return Promise.reject('pointForCoordinate not supported on this platform');
279
325
  }
280
- /**
281
- * Convert a screen point to a map coordinate
282
- *
283
- * @param point Point
284
- * @param [point.x] X
285
- * @param [point.x] Y
286
- *
287
- * @return Promise Promise with the coordinate ({ latitude: Number, longitude: Number })
326
+ /**
327
+ * Convert a screen point to a map coordinate
328
+ *
329
+ * @param point Point
330
+ * @param [point.x] X
331
+ * @param [point.x] Y
332
+ *
333
+ * @return Promise Promise with the coordinate ({ latitude: Number, longitude: Number })
288
334
  */
289
335
 
290
336
 
@@ -334,12 +380,26 @@ class MFMapView extends React.Component {
334
380
 
335
381
  render() {
336
382
  let props;
383
+ const {
384
+ children,
385
+ ...restProps
386
+ } = this.props;
387
+ const managedPolygons = Object.values(this.state.managedPolygons);
337
388
 
338
389
  if (this.state.isReady) {
339
390
  props = {
340
391
  style: this.props.style,
341
392
  onMapReady: this._onMapReady,
342
- ...this.props
393
+ ...restProps,
394
+ children: /*#__PURE__*/React.createElement(React.Fragment, null, children, managedPolygons.map(polygon => /*#__PURE__*/React.createElement(MFPolygon, {
395
+ key: polygon.id,
396
+ coordinates: polygon.coordinates,
397
+ holes: polygon.holes,
398
+ fillColor: polygon.fillColor,
399
+ strokeColor: polygon.strokeColor,
400
+ strokeWidth: polygon.strokeWidth,
401
+ zIndex: polygon.zIndex
402
+ })))
343
403
  };
344
404
  } else {
345
405
  props = {
@@ -1 +1 @@
1
- {"version":3,"names":["PropTypes","React","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","NativeModules","findNodeHandle","CameraShape","shape","target","latitude","number","isRequired","longitude","zoom","bearing","tilt","viewPropTypes","View","propTypes","mapID","string","mapStyle","showsMyLocationButton","bool","showsMyLocation","showsBuildings","showsPOIs","zoomGesturesEnabled","scrollGesturesEnabled","rotateGesturesEnabled","tiltGesturesEnabled","camera","mapType","oneOf","onMapReady","func","onPress","onPoiPress","onBuildingPress","onPlacePress","onDataSourceFeaturePress","onCameraMove","onCameraMoveStart","onCameraIdle","onMyLocationButtonPress","MFMapView","Component","constructor","props","state","isReady","OS","_onMapReady","bind","_ref","setState","ref","map","getCamera","Map4dMap","_getHandle","_runCommand","Promise","reject","getBounds","getMyLocation","animateCamera","moveCamera","setMyLocationEnabled","enable","setPOIsEnabled","setZoomGesturesEnabled","setScrollGesturesEnabled","setRotateGesturesEnabled","setTiltGesturesEnabled","setAllGesturesEnabled","setTime","time","t","Date","parse","isNaN","console","log","fitBounds","boundsData","cameraForBounds","pointForCoordinate","coordinate","coordinateForPoint","point","name","args","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","style","RMFMapView"],"sources":["MFMapView.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 NativeModules,\n findNodeHandle\n} from 'react-native';\n\nconst CameraShape = PropTypes.shape({\n target: PropTypes.shape({\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n }),\n zoom: PropTypes.number.isRequired,\n bearing: PropTypes.number.isRequired,\n tilt: PropTypes.number.isRequired,\n});\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 opaque identifier for a custom map configuration.\n */\n mapID: PropTypes.string,\n\n /**\n * Map style by string for a custom map configuration.\n */\n mapStyle: PropTypes.string,\n\n /**\n * If `false` hide the button to move map to the current user's location.\n * Default value is `false`.\n */\n showsMyLocationButton: PropTypes.bool,\n\n /**\n * If `true` the app will ask for the user's location.\n * Default value is `false`.\n */\n showsMyLocation: PropTypes.bool,\n\n /**\n * A Boolean indicating whether the map displays buildings.\n * Default value is `true`.\n */\n showsBuildings: PropTypes.bool,\n\n /**\n * A Boolean indicating whether the map displays POIs.\n * Default value is `true`.\n */\n showsPOIs: PropTypes.bool,\n\n /**\n * If `false` the user won't be able to zoom the map.\n * Default value is `true`.\n */\n zoomGesturesEnabled: PropTypes.bool,\n\n /**\n * If `false` the user won't be able to scroll the map.\n * Default value is `true`.\n */\n scrollGesturesEnabled: PropTypes.bool,\n\n /**\n * If `false` the user won't be able to pinch/rotate the map.\n * Default value is `true`.\n */\n rotateGesturesEnabled: PropTypes.bool,\n\n /**\n * If `false` the user won't be able to tilt the map.\n * Default value is `true`.\n */\n tiltGesturesEnabled: PropTypes.bool,\n\n /**\n * The camera view position.\n */\n camera: CameraShape,\n\n /**\n * Type of map tiles to be rendered.\n */\n mapType: PropTypes.oneOf(['roadmap', 'satellite', 'hybrid']),\n\n /**\n * Callback that is called once the map is fully loaded.\n * @platform android\n */\n onMapReady: PropTypes.func,\n\n /**\n * Callback that is called when user taps on the map.\n */\n onPress: PropTypes.func,\n\n /**\n * Callback that is called when user taps on the POIs\n */\n onPoiPress: PropTypes.func,\n\n /**\n * Callback that is called when user taps on the Buildings\n */\n onBuildingPress: PropTypes.func,\n\n /**\n * Callback that is called when user taps on the Places\n */\n onPlacePress: PropTypes.func,\n\n /**\n * Callback that is called when user taps on the Data Source Features\n */\n onDataSourceFeaturePress: PropTypes.func,\n\n /**\n * Callback that is called when moving camera\n */\n onCameraMove: PropTypes.func,\n\n /**\n * Callback that is called when camera start moving\n */\n onCameraMoveStart: PropTypes.func,\n\n /**\n * Callback that is called when camera idle\n */\n onCameraIdle: PropTypes.func,\n\n /**\n * Callback that is called when user taps on location Button\n */\n onMyLocationButtonPress: PropTypes.func,\n};\n\n\nclass MFMapView extends React.Component {\n constructor(props) {\n super(props);\n this.state = {\n isReady: Platform.OS === 'ios',\n };\n\n this._onMapReady = this._onMapReady.bind(this);\n this._ref = this._ref.bind(this);\n }\n\n _onMapReady() {\n const { onMapReady } = this.props;\n this.setState({ isReady: true }, () => {\n if (onMapReady) {\n onMapReady();\n }\n });\n }\n\n _ref(ref) {\n this.map = ref;\n }\n\n getCamera() {\n if (Platform.OS === 'android') {\n return NativeModules.Map4dMap.getCamera(this._getHandle());\n } else if (Platform.OS === 'ios') {\n return this._runCommand('getCamera', []);\n }\n return Promise.reject('Function not supported on this platform');\n }\n\n getBounds() {\n if (Platform.OS === 'android') {\n return NativeModules.Map4dMap.getBounds(this._getHandle());\n } else if (Platform.OS === 'ios') {\n return this._runCommand('getBounds', []);\n }\n return Promise.reject('Function not supported on this platform');\n }\n\n getMyLocation() {\n if (Platform.OS === 'android') {\n return NativeModules.Map4dMap.getMyLocation(this._getHandle());\n } else if (Platform.OS === 'ios') {\n return this._runCommand('getMyLocation', []);\n }\n return Promise.reject('Function not supported on this platform');\n }\n\n animateCamera(camera) {\n this._runCommand('animateCamera', [camera]);\n }\n\n moveCamera(camera) {\n this._runCommand('moveCamera', [camera]);\n }\n\n setMyLocationEnabled(enable) {\n this._runCommand('setMyLocationEnabled', [enable]);\n }\n\n showsMyLocationButton(enable) {\n this._runCommand('showsMyLocationButton', [enable]);\n }\n\n setPOIsEnabled(enable) {\n this._runCommand('setPOIsEnabled', [enable]);\n }\n\n setZoomGesturesEnabled(enable) {\n this._runCommand('setZoomGesturesEnabled', [enable]);\n }\n\n setScrollGesturesEnabled(enable) {\n this._runCommand('setScrollGesturesEnabled', [enable]);\n }\n\n setRotateGesturesEnabled(enable) {\n this._runCommand('setRotateGesturesEnabled', [enable]);\n }\n\n setTiltGesturesEnabled(enable) {\n this._runCommand('setTiltGesturesEnabled', [enable]);\n }\n\n setAllGesturesEnabled(enable) {\n this._runCommand('setAllGesturesEnabled', [enable]);\n }\n\n setTime(time) {\n let t = Date.parse(time)\n if (isNaN(t)) {\n console.log('time invalid')\n }\n else {\n this._runCommand('setTime', [t]);\n }\n }\n\n fitBounds(boundsData) {\n this._runCommand(\"fitBounds\", [boundsData])\n }\n\n cameraForBounds(boundsData) {\n if (Platform.OS === 'android') {\n return NativeModules.Map4dMap.cameraForBounds(\n this._getHandle(),\n boundsData\n );\n } else if (Platform.OS === 'ios') {\n return this._runCommand('cameraForBounds', [boundsData]);\n }\n return Promise.reject('cameraForBounds not supported on this platform');\n }\n\n\n /**\n * Convert a map coordinate to screen point\n *\n * @param coordinate Coordinate\n * @param [coordinate.latitude] Latitude\n * @param [coordinate.longitude] Longitude\n *\n * @return Promise Promise with the point ({ x: Number, y: Number })\n */\n pointForCoordinate(coordinate) {\n if (Platform.OS === 'android') {\n return NativeModules.Map4dMap.pointForCoordinate(\n this._getHandle(),\n coordinate\n );\n } else if (Platform.OS === 'ios') {\n return this._runCommand('pointForCoordinate', [coordinate]);\n }\n return Promise.reject('pointForCoordinate not supported on this platform');\n }\n\n /**\n * Convert a screen point to a map coordinate\n *\n * @param point Point\n * @param [point.x] X\n * @param [point.x] Y\n *\n * @return Promise Promise with the coordinate ({ latitude: Number, longitude: Number })\n */\n coordinateForPoint(point) {\n if (Platform.OS === 'android') {\n return NativeModules.Map4dMap.coordinateForPoint(\n this._getHandle(),\n point\n );\n } else if (Platform.OS === 'ios') {\n return this._runCommand('coordinateForPoint', [point]);\n }\n return Promise.reject('coordinateForPoint not supported on this platform');\n }\n\n _getHandle() {\n return findNodeHandle(this.map);\n }\n\n _runCommand(name, args) {\n switch (Platform.OS) {\n case 'android':\n return NativeModules.UIManager.dispatchViewManagerCommand(\n this._getHandle(),\n this._uiManagerCommand(name),\n args\n );\n\n case 'ios':\n return this._mapManagerCommand(name)(this._getHandle(), ...args);\n\n default:\n return Promise.reject(`Invalid platform was passed: ${Platform.OS}`);\n }\n }\n\n _uiManagerCommand(name) {\n const UIManager = NativeModules.UIManager;\n const componentName = \"RMFMapView\";\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[`RMFMapView`][name];\n }\n\n\n render() {\n let props;\n\n if (this.state.isReady) {\n props = {\n style: this.props.style,\n onMapReady: this._onMapReady,\n ...this.props,\n };\n } else {\n props = {\n style: this.props.style,\n onMapReady: this._onMapReady\n };\n }\n\n return <RMFMapView\n {...props}\n ref={this._ref}\n />;\n }\n}\n\nMFMapView.propTypes = propTypes;\nvar RMFMapView = requireNativeComponent(`RMFMapView`, MFMapView);\n\n\nexport { MFMapView }"],"mappings":"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"}
1
+ {"version":3,"names":["PropTypes","React","ViewPropTypes","ColorPropType","AreaFocuser","MFPolygon","requireNativeComponent","Platform","NativeModules","findNodeHandle","CameraShape","shape","target","latitude","number","isRequired","longitude","zoom","bearing","tilt","viewPropTypes","View","propTypes","mapID","string","mapStyle","showsMyLocationButton","bool","showsMyLocation","showsBuildings","showsPOIs","zoomGesturesEnabled","scrollGesturesEnabled","rotateGesturesEnabled","tiltGesturesEnabled","camera","mapType","oneOf","onMapReady","func","onPress","onPoiPress","onBuildingPress","onPlacePress","onDataSourceFeaturePress","onCameraMove","onCameraMoveStart","onCameraIdle","onMyLocationButtonPress","MFMapView","Component","constructor","props","areaFocuser","state","isReady","OS","managedPolygons","_onMapReady","bind","_ref","_addPolygon","polygon","id","trim","length","_polygon","setState","prevState","_removePolygon","_clearManagedPolygons","ref","map","getCamera","Map4dMap","_getHandle","_runCommand","Promise","reject","getBounds","getMyLocation","animateCamera","moveCamera","setMyLocationEnabled","enable","setPOIsEnabled","setZoomGesturesEnabled","setScrollGesturesEnabled","setRotateGesturesEnabled","setTiltGesturesEnabled","setAllGesturesEnabled","setTime","time","t","Date","parse","isNaN","console","log","fitBounds","boundsData","cameraForBounds","pointForCoordinate","coordinate","coordinateForPoint","point","name","args","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","children","restProps","Object","values","style","coordinates","holes","fillColor","strokeColor","strokeWidth","zIndex","RMFMapView"],"sources":["MFMapView.js"],"sourcesContent":["import PropTypes from 'prop-types';\r\nimport React from 'react';\r\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\r\nimport {AreaFocuser} from './extends/AreaFocuser';\r\nimport {MFPolygon} from './MFPolygon';\r\nimport {\r\n requireNativeComponent,\r\n Platform,\r\n NativeModules,\r\n findNodeHandle\r\n} from 'react-native';\r\n\r\nconst CameraShape = PropTypes.shape({\r\n target: PropTypes.shape({\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n }),\r\n zoom: PropTypes.number.isRequired,\r\n bearing: PropTypes.number.isRequired,\r\n tilt: PropTypes.number.isRequired,\r\n});\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 opaque identifier for a custom map configuration.\r\n */\r\n mapID: PropTypes.string,\r\n\r\n /**\r\n * Map style by string for a custom map configuration.\r\n */\r\n mapStyle: PropTypes.string,\r\n\r\n /**\r\n * If `false` hide the button to move map to the current user's location.\r\n * Default value is `false`.\r\n */\r\n showsMyLocationButton: PropTypes.bool,\r\n\r\n /**\r\n * If `true` the app will ask for the user's location.\r\n * Default value is `false`.\r\n */\r\n showsMyLocation: PropTypes.bool,\r\n\r\n /**\r\n * A Boolean indicating whether the map displays buildings.\r\n * Default value is `true`.\r\n */\r\n showsBuildings: PropTypes.bool,\r\n\r\n /**\r\n * A Boolean indicating whether the map displays POIs.\r\n * Default value is `true`.\r\n */\r\n showsPOIs: PropTypes.bool,\r\n\r\n /**\r\n * If `false` the user won't be able to zoom the map.\r\n * Default value is `true`.\r\n */\r\n zoomGesturesEnabled: PropTypes.bool,\r\n\r\n /**\r\n * If `false` the user won't be able to scroll the map.\r\n * Default value is `true`.\r\n */\r\n scrollGesturesEnabled: PropTypes.bool,\r\n\r\n /**\r\n * If `false` the user won't be able to pinch/rotate the map.\r\n * Default value is `true`.\r\n */\r\n rotateGesturesEnabled: PropTypes.bool,\r\n\r\n /**\r\n * If `false` the user won't be able to tilt the map.\r\n * Default value is `true`.\r\n */\r\n tiltGesturesEnabled: PropTypes.bool,\r\n\r\n /**\r\n * The camera view position.\r\n */\r\n camera: CameraShape,\r\n\r\n /**\r\n * Type of map tiles to be rendered.\r\n */\r\n mapType: PropTypes.oneOf(['roadmap', 'satellite', 'hybrid']),\r\n\r\n /**\r\n * Callback that is called once the map is fully loaded.\r\n * @platform android\r\n */\r\n onMapReady: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when user taps on the map.\r\n */\r\n onPress: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when user taps on the POIs\r\n */\r\n onPoiPress: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when user taps on the Buildings\r\n */\r\n onBuildingPress: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when user taps on the Places\r\n */\r\n onPlacePress: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when user taps on the Data Source Features\r\n */\r\n onDataSourceFeaturePress: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when moving camera\r\n */\r\n onCameraMove: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when camera start moving\r\n */\r\n onCameraMoveStart: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when camera idle\r\n */\r\n onCameraIdle: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when user taps on location Button\r\n */\r\n onMyLocationButtonPress: PropTypes.func,\r\n};\r\n\r\n\r\nclass MFMapView extends React.Component {\r\n constructor(props) {\r\n super(props);\r\n this.areaFocuser = new AreaFocuser(this);\r\n this.state = {\r\n isReady: Platform.OS === 'ios',\r\n managedPolygons: {},\r\n };\r\n\r\n this._onMapReady = this._onMapReady.bind(this);\r\n this._ref = this._ref.bind(this);\r\n }\r\n\r\n _addPolygon(polygon) {\r\n if (polygon == null || typeof polygon !== 'object') {\r\n return null;\r\n }\r\n\r\n const id =\r\n typeof polygon.id === 'string' && polygon.id.trim().length > 0\r\n ? polygon.id\r\n : 'polygon-highlight-id-default';\r\n\r\n const _polygon = {\r\n ...polygon,\r\n id,\r\n };\r\n\r\n this.setState((prevState) => ({\r\n managedPolygons: {\r\n ...prevState.managedPolygons,\r\n [id]: _polygon,\r\n },\r\n }));\r\n\r\n return id;\r\n }\r\n\r\n _removePolygon(id) {\r\n if (typeof id !== 'string' || id.trim().length === 0) {\r\n return;\r\n }\r\n\r\n this.setState((prevState) => {\r\n if (!prevState.managedPolygons[id]) {\r\n return null;\r\n }\r\n\r\n const managedPolygons = {\r\n ...prevState.managedPolygons,\r\n };\r\n delete managedPolygons[id];\r\n\r\n return {\r\n managedPolygons,\r\n };\r\n });\r\n }\r\n\r\n _clearManagedPolygons() {\r\n this.setState({\r\n managedPolygons: {},\r\n });\r\n }\r\n\r\n _onMapReady() {\r\n const { onMapReady } = this.props;\r\n this.setState({ isReady: true }, () => {\r\n if (onMapReady) {\r\n onMapReady();\r\n }\r\n });\r\n }\r\n\r\n _ref(ref) {\r\n this.map = ref;\r\n }\r\n\r\n getCamera() {\r\n if (Platform.OS === 'android') {\r\n return NativeModules.Map4dMap.getCamera(this._getHandle());\r\n } else if (Platform.OS === 'ios') {\r\n return this._runCommand('getCamera', []);\r\n }\r\n return Promise.reject('Function not supported on this platform');\r\n }\r\n\r\n getBounds() {\r\n if (Platform.OS === 'android') {\r\n return NativeModules.Map4dMap.getBounds(this._getHandle());\r\n } else if (Platform.OS === 'ios') {\r\n return this._runCommand('getBounds', []);\r\n }\r\n return Promise.reject('Function not supported on this platform');\r\n }\r\n\r\n getMyLocation() {\r\n if (Platform.OS === 'android') {\r\n return NativeModules.Map4dMap.getMyLocation(this._getHandle());\r\n } else if (Platform.OS === 'ios') {\r\n return this._runCommand('getMyLocation', []);\r\n }\r\n return Promise.reject('Function not supported on this platform');\r\n }\r\n\r\n animateCamera(camera) {\r\n this._runCommand('animateCamera', [camera]);\r\n }\r\n\r\n moveCamera(camera) {\r\n this._runCommand('moveCamera', [camera]);\r\n }\r\n\r\n setMyLocationEnabled(enable) {\r\n this._runCommand('setMyLocationEnabled', [enable]);\r\n }\r\n\r\n showsMyLocationButton(enable) {\r\n this._runCommand('showsMyLocationButton', [enable]);\r\n }\r\n\r\n setPOIsEnabled(enable) {\r\n this._runCommand('setPOIsEnabled', [enable]);\r\n }\r\n\r\n setZoomGesturesEnabled(enable) {\r\n this._runCommand('setZoomGesturesEnabled', [enable]);\r\n }\r\n\r\n setScrollGesturesEnabled(enable) {\r\n this._runCommand('setScrollGesturesEnabled', [enable]);\r\n }\r\n\r\n setRotateGesturesEnabled(enable) {\r\n this._runCommand('setRotateGesturesEnabled', [enable]);\r\n }\r\n\r\n setTiltGesturesEnabled(enable) {\r\n this._runCommand('setTiltGesturesEnabled', [enable]);\r\n }\r\n\r\n setAllGesturesEnabled(enable) {\r\n this._runCommand('setAllGesturesEnabled', [enable]);\r\n }\r\n\r\n setTime(time) {\r\n let t = Date.parse(time)\r\n if (isNaN(t)) {\r\n console.log('time invalid')\r\n }\r\n else {\r\n this._runCommand('setTime', [t]);\r\n }\r\n }\r\n\r\n fitBounds(boundsData) {\r\n this._runCommand(\"fitBounds\", [boundsData])\r\n }\r\n\r\n cameraForBounds(boundsData) {\r\n if (Platform.OS === 'android') {\r\n return NativeModules.Map4dMap.cameraForBounds(\r\n this._getHandle(),\r\n boundsData\r\n );\r\n } else if (Platform.OS === 'ios') {\r\n return this._runCommand('cameraForBounds', [boundsData]);\r\n }\r\n return Promise.reject('cameraForBounds not supported on this platform');\r\n }\r\n\r\n\r\n /**\r\n * Convert a map coordinate to screen point\r\n *\r\n * @param coordinate Coordinate\r\n * @param [coordinate.latitude] Latitude\r\n * @param [coordinate.longitude] Longitude\r\n *\r\n * @return Promise Promise with the point ({ x: Number, y: Number })\r\n */\r\n pointForCoordinate(coordinate) {\r\n if (Platform.OS === 'android') {\r\n return NativeModules.Map4dMap.pointForCoordinate(\r\n this._getHandle(),\r\n coordinate\r\n );\r\n } else if (Platform.OS === 'ios') {\r\n return this._runCommand('pointForCoordinate', [coordinate]);\r\n }\r\n return Promise.reject('pointForCoordinate not supported on this platform');\r\n }\r\n\r\n /**\r\n * Convert a screen point to a map coordinate\r\n *\r\n * @param point Point\r\n * @param [point.x] X\r\n * @param [point.x] Y\r\n *\r\n * @return Promise Promise with the coordinate ({ latitude: Number, longitude: Number })\r\n */\r\n coordinateForPoint(point) {\r\n if (Platform.OS === 'android') {\r\n return NativeModules.Map4dMap.coordinateForPoint(\r\n this._getHandle(),\r\n point\r\n );\r\n } else if (Platform.OS === 'ios') {\r\n return this._runCommand('coordinateForPoint', [point]);\r\n }\r\n return Promise.reject('coordinateForPoint not supported on this platform');\r\n }\r\n\r\n _getHandle() {\r\n return findNodeHandle(this.map);\r\n }\r\n\r\n _runCommand(name, args) {\r\n switch (Platform.OS) {\r\n case 'android':\r\n return NativeModules.UIManager.dispatchViewManagerCommand(\r\n this._getHandle(),\r\n this._uiManagerCommand(name),\r\n args\r\n );\r\n\r\n case 'ios':\r\n return this._mapManagerCommand(name)(this._getHandle(), ...args);\r\n\r\n default:\r\n return Promise.reject(`Invalid platform was passed: ${Platform.OS}`);\r\n }\r\n }\r\n\r\n _uiManagerCommand(name) {\r\n const UIManager = NativeModules.UIManager;\r\n const componentName = \"RMFMapView\";\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[`RMFMapView`][name];\r\n }\r\n\r\n\r\n render() {\r\n let props;\r\n const { children, ...restProps } = this.props;\r\n const managedPolygons = Object.values(this.state.managedPolygons);\r\n\r\n if (this.state.isReady) {\r\n props = {\r\n style: this.props.style,\r\n onMapReady: this._onMapReady,\r\n ...restProps,\r\n children: (\r\n <React.Fragment>\r\n {children}\r\n {managedPolygons.map((polygon) => (\r\n <MFPolygon\r\n key={polygon.id}\r\n coordinates={polygon.coordinates}\r\n holes={polygon.holes}\r\n fillColor={polygon.fillColor}\r\n strokeColor={polygon.strokeColor}\r\n strokeWidth={polygon.strokeWidth}\r\n zIndex={polygon.zIndex}\r\n />\r\n ))}\r\n </React.Fragment>\r\n ),\r\n };\r\n } else {\r\n props = {\r\n style: this.props.style,\r\n onMapReady: this._onMapReady\r\n };\r\n }\r\n\r\n return <RMFMapView\r\n {...props}\r\n ref={this._ref}\r\n />;\r\n }\r\n}\r\n\r\nMFMapView.propTypes = propTypes;\r\nvar RMFMapView = requireNativeComponent(`RMFMapView`, MFMapView);\r\n\r\n\r\nexport { MFMapView }"],"mappings":";;AAAA,OAAOA,SAAP,MAAsB,YAAtB;AACA,OAAOC,KAAP,MAAkB,OAAlB;AACA,SAAQC,aAAR,EAAuBC,aAAvB,QAA2C,oCAA3C;AACA,SAAQC,WAAR,QAA0B,uBAA1B;AACA,SAAQC,SAAR,QAAwB,aAAxB;AACA,SACEC,sBADF,EAEEC,QAFF,EAGEC,aAHF,EAIEC,cAJF,QAKO,cALP;AAOA,MAAMC,WAAW,GAAGV,SAAS,CAACW,KAAV,CAAgB;EAClCC,MAAM,EAAEZ,SAAS,CAACW,KAAV,CAAgB;IACtBE,QAAQ,EAAEb,SAAS,CAACc,MAAV,CAAiBC,UADL;IAEtBC,SAAS,EAAEhB,SAAS,CAACc,MAAV,CAAiBC;EAFN,CAAhB,CAD0B;EAKlCE,IAAI,EAAEjB,SAAS,CAACc,MAAV,CAAiBC,UALW;EAMlCG,OAAO,EAAElB,SAAS,CAACc,MAAV,CAAiBC,UANQ;EAOlCI,IAAI,EAAEnB,SAAS,CAACc,MAAV,CAAiBC;AAPW,CAAhB,CAApB,C,CAUA;;AACA,MAAMK,aAAa,GAAGlB,aAAa,IAAImB,IAAI,CAACC,SAA5C;AAEA,MAAMA,SAAS,GAAG,EAChB,GAAGF,aADa;;EAGhB;AACF;AACA;EACEG,KAAK,EAAEvB,SAAS,CAACwB,MAND;;EAQhB;AACF;AACA;EACEC,QAAQ,EAAEzB,SAAS,CAACwB,MAXJ;;EAahB;AACF;AACA;AACA;EACEE,qBAAqB,EAAE1B,SAAS,CAAC2B,IAjBjB;;EAmBhB;AACF;AACA;AACA;EACEC,eAAe,EAAE5B,SAAS,CAAC2B,IAvBX;;EAyBhB;AACF;AACA;AACA;EACEE,cAAc,EAAE7B,SAAS,CAAC2B,IA7BV;;EA+BhB;AACF;AACA;AACA;EACEG,SAAS,EAAE9B,SAAS,CAAC2B,IAnCL;;EAqChB;AACF;AACA;AACA;EACEI,mBAAmB,EAAE/B,SAAS,CAAC2B,IAzCf;;EA2ChB;AACF;AACA;AACA;EACEK,qBAAqB,EAAEhC,SAAS,CAAC2B,IA/CjB;;EAiDhB;AACF;AACA;AACA;EACEM,qBAAqB,EAAEjC,SAAS,CAAC2B,IArDjB;;EAuDhB;AACF;AACA;AACA;EACEO,mBAAmB,EAAElC,SAAS,CAAC2B,IA3Df;;EA6DhB;AACF;AACA;EACEQ,MAAM,EAAEzB,WAhEQ;;EAkEhB;AACF;AACA;EACE0B,OAAO,EAAEpC,SAAS,CAACqC,KAAV,CAAgB,CAAC,SAAD,EAAY,WAAZ,EAAyB,QAAzB,CAAhB,CArEO;;EAuEhB;AACF;AACA;AACA;EACEC,UAAU,EAAEtC,SAAS,CAACuC,IA3EN;;EA6EhB;AACF;AACA;EACEC,OAAO,EAAExC,SAAS,CAACuC,IAhFH;;EAkFhB;AACF;AACA;EACEE,UAAU,EAAEzC,SAAS,CAACuC,IArFN;;EAuFhB;AACF;AACA;EACEG,eAAe,EAAE1C,SAAS,CAACuC,IA1FX;;EA4FhB;AACF;AACA;EACEI,YAAY,EAAE3C,SAAS,CAACuC,IA/FR;;EAiGhB;AACF;AACA;EACEK,wBAAwB,EAAE5C,SAAS,CAACuC,IApGpB;;EAsGhB;AACF;AACA;EACEM,YAAY,EAAE7C,SAAS,CAACuC,IAzGR;;EA2GhB;AACF;AACA;EACEO,iBAAiB,EAAE9C,SAAS,CAACuC,IA9Gb;;EAgHhB;AACF;AACA;EACEQ,YAAY,EAAE/C,SAAS,CAACuC,IAnHR;;EAqHhB;AACF;AACA;EACES,uBAAuB,EAAEhD,SAAS,CAACuC;AAxHnB,CAAlB;;AA4HA,MAAMU,SAAN,SAAwBhD,KAAK,CAACiD,SAA9B,CAAwC;EACtCC,WAAW,CAACC,KAAD,EAAQ;IACjB,MAAMA,KAAN;IACA,KAAKC,WAAL,GAAmB,IAAIjD,WAAJ,CAAgB,IAAhB,CAAnB;IACA,KAAKkD,KAAL,GAAa;MACXC,OAAO,EAAEhD,QAAQ,CAACiD,EAAT,KAAgB,KADd;MAEXC,eAAe,EAAE;IAFN,CAAb;IAKA,KAAKC,WAAL,GAAmB,KAAKA,WAAL,CAAiBC,IAAjB,CAAsB,IAAtB,CAAnB;IACA,KAAKC,IAAL,GAAY,KAAKA,IAAL,CAAUD,IAAV,CAAe,IAAf,CAAZ;EACD;;EAEDE,WAAW,CAACC,OAAD,EAAU;IACnB,IAAIA,OAAO,IAAI,IAAX,IAAmB,OAAOA,OAAP,KAAmB,QAA1C,EAAoD;MAClD,OAAO,IAAP;IACD;;IAED,MAAMC,EAAE,GACN,OAAOD,OAAO,CAACC,EAAf,KAAsB,QAAtB,IAAkCD,OAAO,CAACC,EAAR,CAAWC,IAAX,GAAkBC,MAAlB,GAA2B,CAA7D,GACIH,OAAO,CAACC,EADZ,GAEI,8BAHN;IAKA,MAAMG,QAAQ,GAAG,EACf,GAAGJ,OADY;MAEfC;IAFe,CAAjB;IAKA,KAAKI,QAAL,CAAeC,SAAD,KAAgB;MAC5BX,eAAe,EAAE,EACf,GAAGW,SAAS,CAACX,eADE;QAEf,CAACM,EAAD,GAAMG;MAFS;IADW,CAAhB,CAAd;IAOA,OAAOH,EAAP;EACD;;EAEDM,cAAc,CAACN,EAAD,EAAK;IACjB,IAAI,OAAOA,EAAP,KAAc,QAAd,IAA0BA,EAAE,CAACC,IAAH,GAAUC,MAAV,KAAqB,CAAnD,EAAsD;MACpD;IACD;;IAED,KAAKE,QAAL,CAAeC,SAAD,IAAe;MAC3B,IAAI,CAACA,SAAS,CAACX,eAAV,CAA0BM,EAA1B,CAAL,EAAoC;QAClC,OAAO,IAAP;MACD;;MAED,MAAMN,eAAe,GAAG,EACtB,GAAGW,SAAS,CAACX;MADS,CAAxB;MAGA,OAAOA,eAAe,CAACM,EAAD,CAAtB;MAEA,OAAO;QACLN;MADK,CAAP;IAGD,CAbD;EAcD;;EAEDa,qBAAqB,GAAG;IACtB,KAAKH,QAAL,CAAc;MACZV,eAAe,EAAE;IADL,CAAd;EAGD;;EAEDC,WAAW,GAAG;IACZ,MAAM;MAAEpB;IAAF,IAAiB,KAAKc,KAA5B;IACA,KAAKe,QAAL,CAAc;MAAEZ,OAAO,EAAE;IAAX,CAAd,EAAiC,MAAM;MACrC,IAAIjB,UAAJ,EAAgB;QACdA,UAAU;MACX;IACF,CAJD;EAKD;;EAEDsB,IAAI,CAACW,GAAD,EAAM;IACR,KAAKC,GAAL,GAAWD,GAAX;EACD;;EAEDE,SAAS,GAAG;IACV,IAAIlE,QAAQ,CAACiD,EAAT,KAAgB,SAApB,EAA+B;MAC7B,OAAOhD,aAAa,CAACkE,QAAd,CAAuBD,SAAvB,CAAiC,KAAKE,UAAL,EAAjC,CAAP;IACD,CAFD,MAEO,IAAIpE,QAAQ,CAACiD,EAAT,KAAgB,KAApB,EAA2B;MAChC,OAAO,KAAKoB,WAAL,CAAiB,WAAjB,EAA8B,EAA9B,CAAP;IACD;;IACD,OAAOC,OAAO,CAACC,MAAR,CAAe,yCAAf,CAAP;EACD;;EAEDC,SAAS,GAAG;IACV,IAAIxE,QAAQ,CAACiD,EAAT,KAAgB,SAApB,EAA+B;MAC7B,OAAOhD,aAAa,CAACkE,QAAd,CAAuBK,SAAvB,CAAiC,KAAKJ,UAAL,EAAjC,CAAP;IACD,CAFD,MAEO,IAAIpE,QAAQ,CAACiD,EAAT,KAAgB,KAApB,EAA2B;MAChC,OAAO,KAAKoB,WAAL,CAAiB,WAAjB,EAA8B,EAA9B,CAAP;IACD;;IACD,OAAOC,OAAO,CAACC,MAAR,CAAe,yCAAf,CAAP;EACD;;EAEDE,aAAa,GAAG;IACd,IAAIzE,QAAQ,CAACiD,EAAT,KAAgB,SAApB,EAA+B;MAC7B,OAAOhD,aAAa,CAACkE,QAAd,CAAuBM,aAAvB,CAAqC,KAAKL,UAAL,EAArC,CAAP;IACD,CAFD,MAEO,IAAIpE,QAAQ,CAACiD,EAAT,KAAgB,KAApB,EAA2B;MAChC,OAAO,KAAKoB,WAAL,CAAiB,eAAjB,EAAkC,EAAlC,CAAP;IACD;;IACD,OAAOC,OAAO,CAACC,MAAR,CAAe,yCAAf,CAAP;EACD;;EAEDG,aAAa,CAAC9C,MAAD,EAAS;IACpB,KAAKyC,WAAL,CAAiB,eAAjB,EAAkC,CAACzC,MAAD,CAAlC;EACD;;EAED+C,UAAU,CAAC/C,MAAD,EAAS;IACjB,KAAKyC,WAAL,CAAiB,YAAjB,EAA+B,CAACzC,MAAD,CAA/B;EACD;;EAEDgD,oBAAoB,CAACC,MAAD,EAAS;IAC3B,KAAKR,WAAL,CAAiB,sBAAjB,EAAyC,CAACQ,MAAD,CAAzC;EACD;;EAED1D,qBAAqB,CAAC0D,MAAD,EAAS;IAC5B,KAAKR,WAAL,CAAiB,uBAAjB,EAA0C,CAACQ,MAAD,CAA1C;EACD;;EAEDC,cAAc,CAACD,MAAD,EAAS;IACrB,KAAKR,WAAL,CAAiB,gBAAjB,EAAmC,CAACQ,MAAD,CAAnC;EACD;;EAEDE,sBAAsB,CAACF,MAAD,EAAS;IAC7B,KAAKR,WAAL,CAAiB,wBAAjB,EAA2C,CAACQ,MAAD,CAA3C;EACD;;EAEDG,wBAAwB,CAACH,MAAD,EAAS;IAC/B,KAAKR,WAAL,CAAiB,0BAAjB,EAA6C,CAACQ,MAAD,CAA7C;EACD;;EAEDI,wBAAwB,CAACJ,MAAD,EAAS;IAC/B,KAAKR,WAAL,CAAiB,0BAAjB,EAA6C,CAACQ,MAAD,CAA7C;EACD;;EAEDK,sBAAsB,CAACL,MAAD,EAAS;IAC7B,KAAKR,WAAL,CAAiB,wBAAjB,EAA2C,CAACQ,MAAD,CAA3C;EACD;;EAEDM,qBAAqB,CAACN,MAAD,EAAS;IAC5B,KAAKR,WAAL,CAAiB,uBAAjB,EAA0C,CAACQ,MAAD,CAA1C;EACD;;EAEDO,OAAO,CAACC,IAAD,EAAO;IACZ,IAAIC,CAAC,GAAGC,IAAI,CAACC,KAAL,CAAWH,IAAX,CAAR;;IACA,IAAII,KAAK,CAACH,CAAD,CAAT,EAAc;MACZI,OAAO,CAACC,GAAR,CAAY,cAAZ;IACD,CAFD,MAGK;MACH,KAAKtB,WAAL,CAAiB,SAAjB,EAA4B,CAACiB,CAAD,CAA5B;IACD;EACF;;EAEDM,SAAS,CAACC,UAAD,EAAa;IACpB,KAAKxB,WAAL,CAAiB,WAAjB,EAA8B,CAACwB,UAAD,CAA9B;EACD;;EAEDC,eAAe,CAACD,UAAD,EAAa;IAC1B,IAAI7F,QAAQ,CAACiD,EAAT,KAAgB,SAApB,EAA+B;MAC7B,OAAOhD,aAAa,CAACkE,QAAd,CAAuB2B,eAAvB,CACL,KAAK1B,UAAL,EADK,EAELyB,UAFK,CAAP;IAID,CALD,MAKO,IAAI7F,QAAQ,CAACiD,EAAT,KAAgB,KAApB,EAA2B;MAChC,OAAO,KAAKoB,WAAL,CAAiB,iBAAjB,EAAoC,CAACwB,UAAD,CAApC,CAAP;IACD;;IACD,OAAOvB,OAAO,CAACC,MAAR,CAAe,gDAAf,CAAP;EACD;EAGD;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;EACEwB,kBAAkB,CAACC,UAAD,EAAa;IAC7B,IAAIhG,QAAQ,CAACiD,EAAT,KAAgB,SAApB,EAA+B;MAC7B,OAAOhD,aAAa,CAACkE,QAAd,CAAuB4B,kBAAvB,CACL,KAAK3B,UAAL,EADK,EAEL4B,UAFK,CAAP;IAID,CALD,MAKO,IAAIhG,QAAQ,CAACiD,EAAT,KAAgB,KAApB,EAA2B;MAChC,OAAO,KAAKoB,WAAL,CAAiB,oBAAjB,EAAuC,CAAC2B,UAAD,CAAvC,CAAP;IACD;;IACD,OAAO1B,OAAO,CAACC,MAAR,CAAe,mDAAf,CAAP;EACD;EAED;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;EACE0B,kBAAkB,CAACC,KAAD,EAAQ;IACxB,IAAIlG,QAAQ,CAACiD,EAAT,KAAgB,SAApB,EAA+B;MAC7B,OAAOhD,aAAa,CAACkE,QAAd,CAAuB8B,kBAAvB,CACL,KAAK7B,UAAL,EADK,EAEL8B,KAFK,CAAP;IAID,CALD,MAKO,IAAIlG,QAAQ,CAACiD,EAAT,KAAgB,KAApB,EAA2B;MAChC,OAAO,KAAKoB,WAAL,CAAiB,oBAAjB,EAAuC,CAAC6B,KAAD,CAAvC,CAAP;IACD;;IACD,OAAO5B,OAAO,CAACC,MAAR,CAAe,mDAAf,CAAP;EACD;;EAEDH,UAAU,GAAG;IACX,OAAOlE,cAAc,CAAC,KAAK+D,GAAN,CAArB;EACD;;EAEDI,WAAW,CAAC8B,IAAD,EAAOC,IAAP,EAAa;IACtB,QAAQpG,QAAQ,CAACiD,EAAjB;MACE,KAAK,SAAL;QACE,OAAOhD,aAAa,CAACoG,SAAd,CAAwBC,0BAAxB,CACL,KAAKlC,UAAL,EADK,EAEL,KAAKmC,iBAAL,CAAuBJ,IAAvB,CAFK,EAGLC,IAHK,CAAP;;MAMF,KAAK,KAAL;QACE,OAAO,KAAKI,kBAAL,CAAwBL,IAAxB,EAA8B,KAAK/B,UAAL,EAA9B,EAAiD,GAAGgC,IAApD,CAAP;;MAEF;QACE,OAAO9B,OAAO,CAACC,MAAR,CAAgB,gCAA+BvE,QAAQ,CAACiD,EAAG,EAA3D,CAAP;IAZJ;EAcD;;EAEDsD,iBAAiB,CAACJ,IAAD,EAAO;IACtB,MAAME,SAAS,GAAGpG,aAAa,CAACoG,SAAhC;IACA,MAAMI,aAAa,GAAG,YAAtB;;IAEA,IAAI,CAACJ,SAAS,CAACK,oBAAf,EAAqC;MACnC;MACA,OAAOL,SAAS,CAACI,aAAD,CAAT,CAAyBE,QAAzB,CAAkCR,IAAlC,CAAP;IACD,CAPqB,CAStB;;;IACA,OAAOE,SAAS,CAACK,oBAAV,CAA+BD,aAA/B,EAA8CE,QAA9C,CAAuDR,IAAvD,CAAP;EACD;;EAEDK,kBAAkB,CAACL,IAAD,EAAO;IACvB,OAAOlG,aAAa,CAAE,YAAF,CAAb,CAA4BkG,IAA5B,CAAP;EACD;;EAGDS,MAAM,GAAG;IACP,IAAI/D,KAAJ;IACA,MAAM;MAAEgE,QAAF;MAAY,GAAGC;IAAf,IAA6B,KAAKjE,KAAxC;IACA,MAAMK,eAAe,GAAG6D,MAAM,CAACC,MAAP,CAAc,KAAKjE,KAAL,CAAWG,eAAzB,CAAxB;;IAEA,IAAI,KAAKH,KAAL,CAAWC,OAAf,EAAwB;MACtBH,KAAK,GAAG;QACNoE,KAAK,EAAE,KAAKpE,KAAL,CAAWoE,KADZ;QAENlF,UAAU,EAAE,KAAKoB,WAFX;QAGN,GAAG2D,SAHG;QAIND,QAAQ,eACN,oBAAC,KAAD,CAAO,QAAP,QACGA,QADH,EAEG3D,eAAe,CAACe,GAAhB,CAAqBV,OAAD,iBACnB,oBAAC,SAAD;UACE,GAAG,EAAEA,OAAO,CAACC,EADf;UAEE,WAAW,EAAED,OAAO,CAAC2D,WAFvB;UAGE,KAAK,EAAE3D,OAAO,CAAC4D,KAHjB;UAIE,SAAS,EAAE5D,OAAO,CAAC6D,SAJrB;UAKE,WAAW,EAAE7D,OAAO,CAAC8D,WALvB;UAME,WAAW,EAAE9D,OAAO,CAAC+D,WANvB;UAOE,MAAM,EAAE/D,OAAO,CAACgE;QAPlB,EADD,CAFH;MALI,CAAR;IAqBD,CAtBD,MAsBO;MACL1E,KAAK,GAAG;QACNoE,KAAK,EAAE,KAAKpE,KAAL,CAAWoE,KADZ;QAENlF,UAAU,EAAE,KAAKoB;MAFX,CAAR;IAID;;IAED,oBAAO,oBAAC,UAAD,eACDN,KADC;MAEL,GAAG,EAAE,KAAKQ;IAFL,GAAP;EAID;;AAnSqC;;AAsSxCX,SAAS,CAAC3B,SAAV,GAAsBA,SAAtB;AACA,IAAIyG,UAAU,GAAGzH,sBAAsB,CAAE,YAAF,EAAe2C,SAAf,CAAvC;AAGA,SAASA,SAAT"}