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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (210) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +133 -41
  3. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  4. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  5. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  6. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  7. package/android/.gradle/8.9/gc.properties +0 -0
  8. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  9. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  10. package/android/.gradle/vcs-1/gc.properties +0 -0
  11. package/android/build.gradle +60 -60
  12. package/android/src/main/AndroidManifest.xml +4 -4
  13. package/android/src/main/java/com/reactnativemap4dmap/ImageUtils.java +87 -87
  14. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapModule.java +298 -298
  15. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapPackage.java +35 -35
  16. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapViewManager.java +31 -31
  17. package/android/src/main/java/com/reactnativemap4dmap/RMFBuilding.java +167 -167
  18. package/android/src/main/java/com/reactnativemap4dmap/RMFBuildingManager.java +121 -121
  19. package/android/src/main/java/com/reactnativemap4dmap/RMFCircle.java +105 -105
  20. package/android/src/main/java/com/reactnativemap4dmap/RMFCircleManager.java +121 -121
  21. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRenderer.java +502 -502
  22. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRendererManager.java +143 -143
  23. package/android/src/main/java/com/reactnativemap4dmap/RMFFeature.java +17 -17
  24. package/android/src/main/java/com/reactnativemap4dmap/RMFMapView.java +1172 -1172
  25. package/android/src/main/java/com/reactnativemap4dmap/RMFMapViewManager.java +231 -226
  26. package/android/src/main/java/com/reactnativemap4dmap/RMFMarker.java +412 -412
  27. package/android/src/main/java/com/reactnativemap4dmap/RMFMarkerManager.java +211 -211
  28. package/android/src/main/java/com/reactnativemap4dmap/RMFPOI.java +222 -222
  29. package/android/src/main/java/com/reactnativemap4dmap/RMFPOIManager.java +119 -119
  30. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygon.java +172 -172
  31. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygonManager.java +147 -147
  32. package/android/src/main/java/com/reactnativemap4dmap/RMFPolyline.java +146 -146
  33. package/android/src/main/java/com/reactnativemap4dmap/RMFPolylineManager.java +137 -137
  34. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlay.java +95 -95
  35. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlayManager.java +64 -64
  36. package/android/src/main/java/com/reactnativemap4dmap/SizeReportingShadowNode.java +31 -31
  37. package/android/src/main/java/com/reactnativemap4dmap/ViewAttacherGroup.java +31 -31
  38. package/android/src/main/java/com/reactnativemap4dmap/ViewChangesTracker.java +70 -70
  39. package/android/src/main/java/vn/map4d/map/annotations/RMFBitmapDescriptor.java +9 -9
  40. package/ios/Map4dMap.h +7 -7
  41. package/ios/Map4dMap.m +14 -14
  42. package/ios/Map4dMapViewManager.m +34 -34
  43. package/ios/RCTConvert+Map4dMap.h +33 -33
  44. package/ios/RCTConvert+Map4dMap.m +112 -112
  45. package/ios/RMFCircle.h +37 -37
  46. package/ios/RMFCircle.m +100 -100
  47. package/ios/RMFCircleManager.h +18 -18
  48. package/ios/RMFCircleManager.m +155 -155
  49. package/ios/RMFCircleMap4d.h +23 -23
  50. package/ios/RMFCircleMap4d.m +13 -13
  51. package/ios/RMFCoordinate.h +22 -22
  52. package/ios/RMFCoordinate.m +13 -13
  53. package/ios/RMFDirectionsMarkerOptions.h +24 -24
  54. package/ios/RMFDirectionsMarkerOptions.m +23 -23
  55. package/ios/RMFDirectionsRenderer.h +47 -47
  56. package/ios/RMFDirectionsRenderer.m +182 -182
  57. package/ios/RMFDirectionsRendererManager.h +17 -17
  58. package/ios/RMFDirectionsRendererManager.m +84 -84
  59. package/ios/RMFDirectionsRendererMap4d.h +21 -21
  60. package/ios/RMFDirectionsRendererMap4d.m +12 -12
  61. package/ios/RMFDummyView.h +6 -6
  62. package/ios/RMFDummyView.m +12 -12
  63. package/ios/RMFEventResponse.h +39 -39
  64. package/ios/RMFEventResponse.m +98 -98
  65. package/ios/RMFIcon.h +24 -24
  66. package/ios/RMFIcon.m +35 -35
  67. package/ios/RMFMapView.h +84 -84
  68. package/ios/RMFMapView.m +376 -376
  69. package/ios/RMFMapViewManager.h +17 -17
  70. package/ios/RMFMapViewManager.m +508 -493
  71. package/ios/RMFMarker.h +57 -57
  72. package/ios/RMFMarker.m +267 -267
  73. package/ios/RMFMarkerManager.h +17 -17
  74. package/ios/RMFMarkerManager.m +156 -156
  75. package/ios/RMFMarkerMap4d.h +19 -19
  76. package/ios/RMFMarkerMap4d.m +13 -13
  77. package/ios/RMFPOI.h +38 -38
  78. package/ios/RMFPOI.m +123 -123
  79. package/ios/RMFPOIManager.h +18 -18
  80. package/ios/RMFPOIManager.m +168 -168
  81. package/ios/RMFPOIMap4d.h +22 -22
  82. package/ios/RMFPOIMap4d.m +12 -12
  83. package/ios/RMFPolygon.h +41 -41
  84. package/ios/RMFPolygon.m +106 -106
  85. package/ios/RMFPolygonManager.h +18 -18
  86. package/ios/RMFPolygonManager.m +141 -141
  87. package/ios/RMFPolygonMap4d.h +23 -23
  88. package/ios/RMFPolygonMap4d.m +15 -15
  89. package/ios/RMFPolyline.h +38 -38
  90. package/ios/RMFPolyline.m +101 -101
  91. package/ios/RMFPolylineManager.h +18 -18
  92. package/ios/RMFPolylineManager.m +139 -139
  93. package/ios/RMFPolylineMap4d.h +22 -22
  94. package/ios/RMFPolylineMap4d.m +15 -15
  95. package/ios/building/RMFBuilding.h +41 -41
  96. package/ios/building/RMFBuilding.m +104 -104
  97. package/ios/building/RMFBuildingManager.h +19 -19
  98. package/ios/building/RMFBuildingManager.m +133 -133
  99. package/ios/building/RMFBuildingMap4d.h +23 -23
  100. package/ios/building/RMFBuildingMap4d.m +15 -15
  101. package/ios/overlays/RMFTileOverlay.h +36 -36
  102. package/ios/overlays/RMFTileOverlay.m +64 -64
  103. package/ios/overlays/RMFTileOverlayManager.h +17 -17
  104. package/ios/overlays/RMFTileOverlayManager.m +27 -27
  105. package/lib/commonjs/components/MFBanDoSo.js +109 -0
  106. package/lib/commonjs/components/MFBanDoSo.js.map +1 -0
  107. package/lib/commonjs/components/MFBuilding.js +26 -26
  108. package/lib/commonjs/components/MFBuilding.js.map +1 -1
  109. package/lib/commonjs/components/MFCircle.js +20 -20
  110. package/lib/commonjs/components/MFCircle.js.map +1 -1
  111. package/lib/commonjs/components/MFDirectionsRenderer.js +32 -32
  112. package/lib/commonjs/components/MFDirectionsRenderer.js.map +1 -1
  113. package/lib/commonjs/components/MFMapView.js +152 -71
  114. package/lib/commonjs/components/MFMapView.js.map +1 -1
  115. package/lib/commonjs/components/MFMarker.js +35 -35
  116. package/lib/commonjs/components/MFMarker.js.map +1 -1
  117. package/lib/commonjs/components/MFPOI.js +20 -20
  118. package/lib/commonjs/components/MFPOI.js.map +1 -1
  119. package/lib/commonjs/components/MFPolygon.js +22 -22
  120. package/lib/commonjs/components/MFPolygon.js.map +1 -1
  121. package/lib/commonjs/components/MFPolyline.js +18 -18
  122. package/lib/commonjs/components/MFPolyline.js.map +1 -1
  123. package/lib/commonjs/components/MFTileOverlay.js +9 -9
  124. package/lib/commonjs/components/MFTileOverlay.js.map +1 -1
  125. package/lib/commonjs/components/Map4dMapView.js.map +1 -1
  126. package/lib/commonjs/components/extends/AreaFocusManager.js +205 -0
  127. package/lib/commonjs/components/extends/AreaFocusManager.js.map +1 -0
  128. package/lib/commonjs/components/extends/AreaFocuser.js +73 -0
  129. package/lib/commonjs/components/extends/AreaFocuser.js.map +1 -0
  130. package/lib/commonjs/components/extends/BoundHelper.js +36 -0
  131. package/lib/commonjs/components/extends/BoundHelper.js.map +1 -0
  132. package/lib/commonjs/components/extends/area/AreaFocusAreas.js +167 -0
  133. package/lib/commonjs/components/extends/area/AreaFocusAreas.js.map +1 -0
  134. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js +164 -0
  135. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js.map +1 -0
  136. package/lib/commonjs/components/extends/area/AreaFocusSession.js +100 -0
  137. package/lib/commonjs/components/extends/area/AreaFocusSession.js.map +1 -0
  138. package/lib/commonjs/components/extends/area/AreaFocusTypes.js +40 -0
  139. package/lib/commonjs/components/extends/area/AreaFocusTypes.js.map +1 -0
  140. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js +2288 -0
  141. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js.map +1 -0
  142. package/lib/commonjs/components/internal/GeojsonStyleUtils.js +139 -0
  143. package/lib/commonjs/components/internal/GeojsonStyleUtils.js.map +1 -0
  144. package/lib/commonjs/index.js +16 -0
  145. package/lib/commonjs/index.js.map +1 -1
  146. package/lib/module/components/MFBanDoSo.js +92 -0
  147. package/lib/module/components/MFBanDoSo.js.map +1 -0
  148. package/lib/module/components/MFBuilding.js +26 -26
  149. package/lib/module/components/MFBuilding.js.map +1 -1
  150. package/lib/module/components/MFCircle.js +20 -20
  151. package/lib/module/components/MFCircle.js.map +1 -1
  152. package/lib/module/components/MFDirectionsRenderer.js +32 -32
  153. package/lib/module/components/MFDirectionsRenderer.js.map +1 -1
  154. package/lib/module/components/MFMapView.js +149 -71
  155. package/lib/module/components/MFMapView.js.map +1 -1
  156. package/lib/module/components/MFMarker.js +35 -35
  157. package/lib/module/components/MFMarker.js.map +1 -1
  158. package/lib/module/components/MFPOI.js +20 -20
  159. package/lib/module/components/MFPOI.js.map +1 -1
  160. package/lib/module/components/MFPolygon.js +22 -22
  161. package/lib/module/components/MFPolygon.js.map +1 -1
  162. package/lib/module/components/MFPolyline.js +18 -18
  163. package/lib/module/components/MFPolyline.js.map +1 -1
  164. package/lib/module/components/MFTileOverlay.js +9 -9
  165. package/lib/module/components/MFTileOverlay.js.map +1 -1
  166. package/lib/module/components/Map4dMapView.js.map +1 -1
  167. package/lib/module/components/extends/AreaFocusManager.js +193 -0
  168. package/lib/module/components/extends/AreaFocusManager.js.map +1 -0
  169. package/lib/module/components/extends/AreaFocuser.js +64 -0
  170. package/lib/module/components/extends/AreaFocuser.js.map +1 -0
  171. package/lib/module/components/extends/BoundHelper.js +29 -0
  172. package/lib/module/components/extends/BoundHelper.js.map +1 -0
  173. package/lib/module/components/extends/area/AreaFocusAreas.js +156 -0
  174. package/lib/module/components/extends/area/AreaFocusAreas.js.map +1 -0
  175. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js +153 -0
  176. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js.map +1 -0
  177. package/lib/module/components/extends/area/AreaFocusSession.js +93 -0
  178. package/lib/module/components/extends/area/AreaFocusSession.js.map +1 -0
  179. package/lib/module/components/extends/area/AreaFocusTypes.js +33 -0
  180. package/lib/module/components/extends/area/AreaFocusTypes.js.map +1 -0
  181. package/lib/module/components/internal/DefaultRoadmapStyle.js +2281 -0
  182. package/lib/module/components/internal/DefaultRoadmapStyle.js.map +1 -0
  183. package/lib/module/components/internal/GeojsonStyleUtils.js +130 -0
  184. package/lib/module/components/internal/GeojsonStyleUtils.js.map +1 -0
  185. package/lib/module/index.js +3 -1
  186. package/lib/module/index.js.map +1 -1
  187. package/lib/typescript/components/Map4dMapView.d.ts +7 -7
  188. package/package.json +152 -152
  189. package/react-native-map4d-map.podspec +20 -20
  190. package/src/components/MFBanDoSo.js +124 -0
  191. package/src/components/MFBuilding.js +187 -187
  192. package/src/components/MFCircle.js +173 -173
  193. package/src/components/MFDirectionsRenderer.js +237 -237
  194. package/src/components/MFMapView.js +464 -373
  195. package/src/components/MFMarker.js +246 -246
  196. package/src/components/MFPOI.js +184 -184
  197. package/src/components/MFPolygon.js +186 -186
  198. package/src/components/MFPolyline.js +172 -172
  199. package/src/components/MFTileOverlay.js +45 -45
  200. package/src/components/Map4dMapView.tsx +26 -26
  201. package/src/components/extends/AreaFocusManager.js +196 -0
  202. package/src/components/extends/AreaFocuser.js +62 -0
  203. package/src/components/extends/BoundHelper.js +32 -0
  204. package/src/components/extends/area/AreaFocusAreas.js +164 -0
  205. package/src/components/extends/area/AreaFocusGeometryUtils.js +164 -0
  206. package/src/components/extends/area/AreaFocusSession.js +100 -0
  207. package/src/components/extends/area/AreaFocusTypes.js +36 -0
  208. package/src/components/internal/DefaultRoadmapStyle.js +3365 -0
  209. package/src/components/internal/GeojsonStyleUtils.js +143 -0
  210. package/src/index.js +25 -21
@@ -0,0 +1,92 @@
1
+ import PropTypes from 'prop-types';
2
+ import { MFMapView } from './MFMapView';
3
+ import { buildGeojsonStyle, createCategoryItemsSignature } from './internal/GeojsonStyleUtils';
4
+ const FilterStylePropType = PropTypes.shape({
5
+ kind: PropTypes.oneOfType([PropTypes.string, PropTypes.arrayOf(PropTypes.string)]),
6
+ kind_detail: PropTypes.oneOfType([PropTypes.string, PropTypes.arrayOf(PropTypes.string)])
7
+ });
8
+ const DrawLinePropType = PropTypes.shape({
9
+ color: PropTypes.string,
10
+ width: PropTypes.oneOfType([PropTypes.number, PropTypes.array])
11
+ });
12
+ const DrawFillPropType = PropTypes.shape({
13
+ color: PropTypes.string
14
+ });
15
+ const DrawSymbolPropType = PropTypes.shape({
16
+ icon_image: PropTypes.string,
17
+ icon_index: PropTypes.number,
18
+ icon_color: PropTypes.string,
19
+ use_direct_icon_url: PropTypes.bool
20
+ });
21
+ const CategoryStylePropType = PropTypes.shape({
22
+ line: PropTypes.arrayOf(PropTypes.shape({
23
+ layer: PropTypes.string,
24
+ filter: FilterStylePropType,
25
+ draw: DrawLinePropType
26
+ })),
27
+ fill: PropTypes.arrayOf(PropTypes.shape({
28
+ layer: PropTypes.string,
29
+ filter: FilterStylePropType,
30
+ draw: DrawFillPropType
31
+ })),
32
+ symbol: PropTypes.arrayOf(PropTypes.shape({
33
+ layer: PropTypes.string,
34
+ filter: FilterStylePropType,
35
+ draw: DrawSymbolPropType
36
+ }))
37
+ });
38
+ const CategoryItemPropType = PropTypes.shape({
39
+ key: PropTypes.string,
40
+ title: PropTypes.string,
41
+ group: PropTypes.string,
42
+ order: PropTypes.number,
43
+ checked: PropTypes.bool,
44
+ style: CategoryStylePropType
45
+ });
46
+
47
+ class MFBanDoSo extends MFMapView {
48
+ constructor(props) {
49
+ super(props);
50
+ this._appliedGeojsonStyle = null;
51
+ }
52
+
53
+ componentDidMount() {
54
+ this._syncGeojsonStyle();
55
+ }
56
+
57
+ componentDidUpdate(prevProps, prevState) {
58
+ const mapReadyChanged = prevState.isReady !== this.state.isReady;
59
+ const mapStyleChanged = prevProps.mapStyle !== this.props.mapStyle;
60
+ const sourceUrlChanged = prevProps.sourceUrl !== this.props.sourceUrl;
61
+ const itemsChanged = createCategoryItemsSignature(prevProps.items) !== createCategoryItemsSignature(this.props.items);
62
+
63
+ if (mapReadyChanged || mapStyleChanged || sourceUrlChanged || itemsChanged) {
64
+ this._syncGeojsonStyle();
65
+ }
66
+ }
67
+
68
+ _syncGeojsonStyle() {
69
+ if (!this.state.isReady) {
70
+ return;
71
+ }
72
+
73
+ const items = this.props.items || [];
74
+ const geojsonStyle = buildGeojsonStyle(this.props.mapStyle, this.props.sourceUrl, items);
75
+
76
+ if (!geojsonStyle || geojsonStyle === this._appliedGeojsonStyle) {
77
+ return;
78
+ }
79
+
80
+ this._appliedGeojsonStyle = geojsonStyle;
81
+
82
+ this._runCommand('setMapStyle', [geojsonStyle]);
83
+ }
84
+
85
+ }
86
+
87
+ MFBanDoSo.propTypes = { ...MFMapView.propTypes,
88
+ items: PropTypes.arrayOf(CategoryItemPropType),
89
+ sourceUrl: PropTypes.string.isRequired
90
+ };
91
+ export { MFBanDoSo };
92
+ //# sourceMappingURL=MFBanDoSo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["PropTypes","MFMapView","buildGeojsonStyle","createCategoryItemsSignature","FilterStylePropType","shape","kind","oneOfType","string","arrayOf","kind_detail","DrawLinePropType","color","width","number","array","DrawFillPropType","DrawSymbolPropType","icon_image","icon_index","icon_color","use_direct_icon_url","bool","CategoryStylePropType","line","layer","filter","draw","fill","symbol","CategoryItemPropType","key","title","group","order","checked","style","MFBanDoSo","constructor","props","_appliedGeojsonStyle","componentDidMount","_syncGeojsonStyle","componentDidUpdate","prevProps","prevState","mapReadyChanged","isReady","state","mapStyleChanged","mapStyle","sourceUrlChanged","sourceUrl","itemsChanged","items","geojsonStyle","_runCommand","propTypes","isRequired"],"sources":["MFBanDoSo.js"],"sourcesContent":["import PropTypes from 'prop-types';\r\nimport { MFMapView } from './MFMapView';\r\nimport {\r\n buildGeojsonStyle,\r\n createCategoryItemsSignature,\r\n} from './internal/GeojsonStyleUtils';\r\n\r\nconst FilterStylePropType = PropTypes.shape({\r\n kind: PropTypes.oneOfType([\r\n PropTypes.string,\r\n PropTypes.arrayOf(PropTypes.string),\r\n ]),\r\n kind_detail: PropTypes.oneOfType([\r\n PropTypes.string,\r\n PropTypes.arrayOf(PropTypes.string),\r\n ]),\r\n});\r\n\r\nconst DrawLinePropType = PropTypes.shape({\r\n color: PropTypes.string,\r\n width: PropTypes.oneOfType([PropTypes.number, PropTypes.array]),\r\n});\r\n\r\nconst DrawFillPropType = PropTypes.shape({\r\n color: PropTypes.string,\r\n});\r\n\r\nconst DrawSymbolPropType = PropTypes.shape({\r\n icon_image: PropTypes.string,\r\n icon_index: PropTypes.number,\r\n icon_color: PropTypes.string,\r\n use_direct_icon_url: PropTypes.bool,\r\n});\r\n\r\nconst CategoryStylePropType = PropTypes.shape({\r\n line: PropTypes.arrayOf(\r\n PropTypes.shape({\r\n layer: PropTypes.string,\r\n filter: FilterStylePropType,\r\n draw: DrawLinePropType,\r\n })\r\n ),\r\n fill: PropTypes.arrayOf(\r\n PropTypes.shape({\r\n layer: PropTypes.string,\r\n filter: FilterStylePropType,\r\n draw: DrawFillPropType,\r\n })\r\n ),\r\n symbol: PropTypes.arrayOf(\r\n PropTypes.shape({\r\n layer: PropTypes.string,\r\n filter: FilterStylePropType,\r\n draw: DrawSymbolPropType,\r\n })\r\n ),\r\n});\r\n\r\nconst CategoryItemPropType = PropTypes.shape({\r\n key: PropTypes.string,\r\n title: PropTypes.string,\r\n group: PropTypes.string,\r\n order: PropTypes.number,\r\n checked: PropTypes.bool,\r\n style: CategoryStylePropType,\r\n});\r\n\r\nclass MFBanDoSo extends MFMapView {\r\n constructor(props) {\r\n super(props);\r\n this._appliedGeojsonStyle = null;\r\n }\r\n\r\n componentDidMount() {\r\n this._syncGeojsonStyle();\r\n }\r\n\r\n componentDidUpdate(prevProps, prevState) {\r\n const mapReadyChanged = prevState.isReady !== this.state.isReady;\r\n const mapStyleChanged = prevProps.mapStyle !== this.props.mapStyle;\r\n const sourceUrlChanged = prevProps.sourceUrl !== this.props.sourceUrl;\r\n const itemsChanged =\r\n createCategoryItemsSignature(prevProps.items) !==\r\n createCategoryItemsSignature(this.props.items);\r\n\r\n if (\r\n mapReadyChanged ||\r\n mapStyleChanged ||\r\n sourceUrlChanged ||\r\n itemsChanged\r\n ) {\r\n this._syncGeojsonStyle();\r\n }\r\n }\r\n\r\n _syncGeojsonStyle() {\r\n if (!this.state.isReady) {\r\n return;\r\n }\r\n\r\n const items = this.props.items || [];\r\n\r\n const geojsonStyle = buildGeojsonStyle(\r\n this.props.mapStyle,\r\n this.props.sourceUrl,\r\n items\r\n );\r\n\r\n if (!geojsonStyle || geojsonStyle === this._appliedGeojsonStyle) {\r\n return;\r\n }\r\n\r\n this._appliedGeojsonStyle = geojsonStyle;\r\n this._runCommand('setMapStyle', [geojsonStyle]);\r\n }\r\n}\r\n\r\nMFBanDoSo.propTypes = {\r\n ...MFMapView.propTypes,\r\n items: PropTypes.arrayOf(CategoryItemPropType),\r\n sourceUrl: PropTypes.string.isRequired,\r\n};\r\n\r\nexport { MFBanDoSo };\r\n"],"mappings":"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"}
@@ -8,69 +8,69 @@ import { requireNativeComponent, Platform, NativeModules, findNodeHandle } from
8
8
  const viewPropTypes = ViewPropTypes || View.propTypes;
9
9
  const propTypes = { ...viewPropTypes,
10
10
 
11
- /**
12
- * The name of the building.
11
+ /**
12
+ * The name of the building.
13
13
  */
14
14
  name: PropTypes.string,
15
15
 
16
- /**
17
- * The position of the building
16
+ /**
17
+ * The position of the building
18
18
  */
19
19
  coordinate: PropTypes.shape({
20
- /**
21
- * Position for the building.
20
+ /**
21
+ * Position for the building.
22
22
  */
23
23
  latitude: PropTypes.number.isRequired,
24
24
  longitude: PropTypes.number.isRequired
25
25
  }),
26
26
 
27
- /**
28
- * The model URL for the building.
27
+ /**
28
+ * The model URL for the building.
29
29
  */
30
30
  modelUrl: PropTypes.string,
31
31
 
32
- /**
33
- * The texture URL for the building.
32
+ /**
33
+ * The texture URL for the building.
34
34
  */
35
35
  textureUrl: PropTypes.string,
36
36
 
37
- /**
38
- * The scale of the building.
37
+ /**
38
+ * The scale of the building.
39
39
  */
40
40
  scale: PropTypes.number,
41
41
 
42
- /**
43
- * The bearing of the building.
42
+ /**
43
+ * The bearing of the building.
44
44
  */
45
45
  bearing: PropTypes.number,
46
46
 
47
- /**
48
- * The elevation of the building.
47
+ /**
48
+ * The elevation of the building.
49
49
  */
50
50
  elevation: PropTypes.number,
51
51
 
52
- /**
53
- * Is the building selectable by the user ?
52
+ /**
53
+ * Is the building selectable by the user ?
54
54
  */
55
55
  selected: PropTypes.bool,
56
56
 
57
- /**
58
- * touchable
57
+ /**
58
+ * touchable
59
59
  */
60
60
  touchable: PropTypes.bool,
61
61
 
62
- /**
63
- * visible
62
+ /**
63
+ * visible
64
64
  */
65
65
  visible: PropTypes.bool,
66
66
 
67
- /**
68
- * userData
67
+ /**
68
+ * userData
69
69
  */
70
70
  userData: PropTypes.object,
71
71
 
72
- /**
73
- * Callback that is called when the user presses on the building
72
+ /**
73
+ * Callback that is called when the user presses on the building
74
74
  */
75
75
  onPress: PropTypes.func
76
76
  };
@@ -1 +1 @@
1
- {"version":3,"names":["React","PropTypes","ViewPropTypes","requireNativeComponent","Platform","NativeModules","findNodeHandle","viewPropTypes","View","propTypes","name","string","coordinate","shape","latitude","number","isRequired","longitude","modelUrl","textureUrl","scale","bearing","elevation","selected","bool","touchable","visible","userData","object","onPress","func","MFBuilding","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","building","setName","_runCommand","setScale","setBearing","setElevation","setSelected","setTouchable","setVisible","setUserData","_getHandle","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFBuilding"],"sources":["MFBuilding.js"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport {ViewPropTypes} from 'deprecated-react-native-prop-types';\nimport {\n requireNativeComponent,\n Platform,\n NativeModules,\n findNodeHandle\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 name of the building.\n */\n name: PropTypes.string,\n\n /**\n * The position of the building\n */\n coordinate: PropTypes.shape({\n /**\n * Position for the building.\n */\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n }),\n\n /**\n * The model URL for the building.\n */\n modelUrl: PropTypes.string,\n\n /**\n * The texture URL for the building.\n */\n textureUrl: PropTypes.string,\n\n /**\n * The scale of the building.\n */\n scale: PropTypes.number,\n\n /**\n * The bearing of the building.\n */\n bearing: PropTypes.number,\n\n /**\n * The elevation of the building.\n */\n elevation: PropTypes.number,\n\n /**\n * Is the building selectable by the user ?\n */\n selected: PropTypes.bool,\n\n /**\n * touchable\n */\n touchable: PropTypes.bool,\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 building\n */\n onPress: PropTypes.func,\n};\n\n\nclass MFBuilding 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.building = ref;\n }\n\n setName(name) {\n this._runCommand(\"setName\", [name])\n }\n\n setScale(scale) {\n this._runCommand(\"setScale\", [scale])\n }\n\n setBearing(bearing) {\n this._runCommand(\"setBearing\", [bearing])\n }\n\n setElevation(elevation) {\n this._runCommand(\"setElevation\", [elevation])\n }\n\n setSelected(selected) {\n this._runCommand(\"setSelected\", [selected])\n }\n\n setTouchable(touchable) {\n this._runCommand(\"setTouchable\", [touchable])\n }\n\n setVisible(visible) {\n this._runCommand(\"setVisible\", [visible])\n }\n\n setUserData(userData) {\n this._runCommand(\"setUserData\", [userData])\n }\n\n _getHandle() {\n return findNodeHandle(this.building);\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 = \"RMFBuilding\";\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[`RMFBuilding`][name];\n }\n\n render() {\n return <RMFBuilding\n {...this.props}\n ref={this._ref}\n onPress={this._onPress}\n />;\n }\n}\n\nMFBuilding.propTypes = propTypes;\n\nvar RMFBuilding = requireNativeComponent(`RMFBuilding`, MFBuilding);\n\nexport { MFBuilding }"],"mappings":"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"}
1
+ {"version":3,"names":["React","PropTypes","ViewPropTypes","requireNativeComponent","Platform","NativeModules","findNodeHandle","viewPropTypes","View","propTypes","name","string","coordinate","shape","latitude","number","isRequired","longitude","modelUrl","textureUrl","scale","bearing","elevation","selected","bool","touchable","visible","userData","object","onPress","func","MFBuilding","Component","constructor","props","_onPress","bind","_ref","event","stopPropagation","ref","building","setName","_runCommand","setScale","setBearing","setElevation","setSelected","setTouchable","setVisible","setUserData","_getHandle","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","RMFBuilding"],"sources":["MFBuilding.js"],"sourcesContent":["import React from 'react';\r\nimport PropTypes from 'prop-types';\r\nimport {ViewPropTypes} from 'deprecated-react-native-prop-types';\r\nimport {\r\n requireNativeComponent,\r\n Platform,\r\n NativeModules,\r\n findNodeHandle\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 name of the building.\r\n */\r\n name: PropTypes.string,\r\n\r\n /**\r\n * The position of the building\r\n */\r\n coordinate: PropTypes.shape({\r\n /**\r\n * Position for the building.\r\n */\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n }),\r\n\r\n /**\r\n * The model URL for the building.\r\n */\r\n modelUrl: PropTypes.string,\r\n\r\n /**\r\n * The texture URL for the building.\r\n */\r\n textureUrl: PropTypes.string,\r\n\r\n /**\r\n * The scale of the building.\r\n */\r\n scale: PropTypes.number,\r\n\r\n /**\r\n * The bearing of the building.\r\n */\r\n bearing: PropTypes.number,\r\n\r\n /**\r\n * The elevation of the building.\r\n */\r\n elevation: PropTypes.number,\r\n\r\n /**\r\n * Is the building selectable by the user ?\r\n */\r\n selected: PropTypes.bool,\r\n\r\n /**\r\n * touchable\r\n */\r\n touchable: PropTypes.bool,\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 building\r\n */\r\n onPress: PropTypes.func,\r\n};\r\n\r\n\r\nclass MFBuilding 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.building = ref;\r\n }\r\n\r\n setName(name) {\r\n this._runCommand(\"setName\", [name])\r\n }\r\n\r\n setScale(scale) {\r\n this._runCommand(\"setScale\", [scale])\r\n }\r\n\r\n setBearing(bearing) {\r\n this._runCommand(\"setBearing\", [bearing])\r\n }\r\n\r\n setElevation(elevation) {\r\n this._runCommand(\"setElevation\", [elevation])\r\n }\r\n\r\n setSelected(selected) {\r\n this._runCommand(\"setSelected\", [selected])\r\n }\r\n\r\n setTouchable(touchable) {\r\n this._runCommand(\"setTouchable\", [touchable])\r\n }\r\n\r\n setVisible(visible) {\r\n this._runCommand(\"setVisible\", [visible])\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.building);\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 = \"RMFBuilding\";\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[`RMFBuilding`][name];\r\n }\r\n\r\n render() {\r\n return <RMFBuilding\r\n {...this.props}\r\n ref={this._ref}\r\n onPress={this._onPress}\r\n />;\r\n }\r\n}\r\n\r\nMFBuilding.propTypes = propTypes;\r\n\r\nvar RMFBuilding = requireNativeComponent(`RMFBuilding`, MFBuilding);\r\n\r\nexport { MFBuilding }"],"mappings":"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"}
@@ -8,54 +8,54 @@ import { requireNativeComponent, Platform, NativeModules, findNodeHandle, proces
8
8
  const viewPropTypes = ViewPropTypes || View.propTypes;
9
9
  const propTypes = { ...viewPropTypes,
10
10
 
11
- /**
12
- * The coordinate of the center of the circle
11
+ /**
12
+ * The coordinate of the center of the circle
13
13
  */
14
14
  center: PropTypes.shape({
15
- /**
16
- * Coordinates for the center of the circle.
15
+ /**
16
+ * Coordinates for the center of the circle.
17
17
  */
18
18
  latitude: PropTypes.number.isRequired,
19
19
  longitude: PropTypes.number.isRequired
20
20
  }).isRequired,
21
21
 
22
- /**
23
- * The radius of the circle to be drawn (in meters)
22
+ /**
23
+ * The radius of the circle to be drawn (in meters)
24
24
  */
25
25
  radius: PropTypes.number.isRequired,
26
26
 
27
- /**
28
- * The stroke width to use for the circle.
27
+ /**
28
+ * The stroke width to use for the circle.
29
29
  */
30
30
  strokeWidth: PropTypes.number,
31
31
 
32
- /**
33
- * The stroke color to use for the circle.
32
+ /**
33
+ * The stroke color to use for the circle.
34
34
  */
35
35
  strokeColor: ColorPropType,
36
36
 
37
- /**
38
- * The fill color to use for the circle.
37
+ /**
38
+ * The fill color to use for the circle.
39
39
  */
40
40
  fillColor: ColorPropType,
41
41
 
42
- /**
43
- * zIndex
42
+ /**
43
+ * zIndex
44
44
  */
45
45
  zIndex: PropTypes.number,
46
46
 
47
- /**
48
- * visible
47
+ /**
48
+ * visible
49
49
  */
50
50
  visible: PropTypes.bool,
51
51
 
52
- /**
53
- * userData
52
+ /**
53
+ * userData
54
54
  */
55
55
  userData: PropTypes.object,
56
56
 
57
- /**
58
- * Callback that is called when the user presses on the circle
57
+ /**
58
+ * Callback that is called when the user presses on the circle
59
59
  */
60
60
  onPress: PropTypes.func
61
61
  }; // const defaultProps = {
@@ -1 +1 @@
1
- {"version":3,"names":["PropTypes","React","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","center","shape","latitude","number","isRequired","longitude","radius","strokeWidth","strokeColor","fillColor","zIndex","visible","bool","userData","object","onPress","func","MFCircle","Component","constructor","props","_onPress","bind","_ref","setCenter","_runCommand","setRadius","setFillColor","color","setStrokeColor","setStrokeWidth","width","setUserData","setZIndex","setVisible","_getHandle","circle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","event","stopPropagation","ref","render","RMFCircle"],"sources":["MFCircle.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 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 of the center of the circle\n */\n center: PropTypes.shape({\n /**\n * Coordinates for the center of the circle.\n */\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n }).isRequired,\n\n /**\n * The radius of the circle to be drawn (in meters)\n */\n radius: PropTypes.number.isRequired,\n\n /**\n * The stroke width to use for the circle.\n */\n strokeWidth: PropTypes.number,\n\n /**\n * The stroke color to use for the circle.\n */\n strokeColor: ColorPropType,\n\n /**\n * The fill color to use for the circle.\n */\n fillColor: ColorPropType,\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 circle\n */\n onPress: PropTypes.func,\n};\n\n// const defaultProps = {\n// strokeColor: '#000',\n// strokeWidth: 1,\n// };\n\nclass MFCircle 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 setCenter(center) {\n this._runCommand(\"setCenter\", [center])\n }\n setRadius(radius) {\n this._runCommand(\"setRadius\", [radius])\n }\n setFillColor(color) {\n this._runCommand(\"setFillColor\", [processColor(color)])\n }\n setStrokeColor(color) {\n this._runCommand(\"setStrokeColor\", [processColor(color)])\n }\n setStrokeWidth(width) {\n this._runCommand(\"setStrokeWidth\", [width])\n }\n setUserData(userData) {\n this._runCommand(\"setUserData\", [userData])\n }\n setZIndex(zIndex) {\n this._runCommand(\"setZIndex\", [zIndex])\n }\n setVisible(visible) {\n this._runCommand(\"setVisible\", [visible])\n }\n\n _getHandle() {\n return findNodeHandle(this.circle);\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 = \"RMFCircle\";\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[`RMFCircle`][name];\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.circle = ref;\n }\n\n render() {\n return <RMFCircle\n {...this.props}\n ref={this._ref}\n onPress={this._onPress}\n />;\n }\n}\n\nMFCircle.propTypes = propTypes;\n// MFCircle.defaultProps = defaultProps;\n\nvar RMFCircle = requireNativeComponent(`RMFCircle`, MFCircle);\n\nexport {MFCircle}\n"],"mappings":"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"}
1
+ {"version":3,"names":["PropTypes","React","ViewPropTypes","ColorPropType","requireNativeComponent","Platform","NativeModules","findNodeHandle","processColor","viewPropTypes","View","propTypes","center","shape","latitude","number","isRequired","longitude","radius","strokeWidth","strokeColor","fillColor","zIndex","visible","bool","userData","object","onPress","func","MFCircle","Component","constructor","props","_onPress","bind","_ref","setCenter","_runCommand","setRadius","setFillColor","color","setStrokeColor","setStrokeWidth","width","setUserData","setZIndex","setVisible","_getHandle","circle","name","args","OS","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","event","stopPropagation","ref","render","RMFCircle"],"sources":["MFCircle.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 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 of the center of the circle\r\n */\r\n center: PropTypes.shape({\r\n /**\r\n * Coordinates for the center of the circle.\r\n */\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n }).isRequired,\r\n\r\n /**\r\n * The radius of the circle to be drawn (in meters)\r\n */\r\n radius: PropTypes.number.isRequired,\r\n\r\n /**\r\n * The stroke width to use for the circle.\r\n */\r\n strokeWidth: PropTypes.number,\r\n\r\n /**\r\n * The stroke color to use for the circle.\r\n */\r\n strokeColor: ColorPropType,\r\n\r\n /**\r\n * The fill color to use for the circle.\r\n */\r\n fillColor: ColorPropType,\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 circle\r\n */\r\n onPress: PropTypes.func,\r\n};\r\n\r\n// const defaultProps = {\r\n// strokeColor: '#000',\r\n// strokeWidth: 1,\r\n// };\r\n\r\nclass MFCircle 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 setCenter(center) {\r\n this._runCommand(\"setCenter\", [center])\r\n }\r\n setRadius(radius) {\r\n this._runCommand(\"setRadius\", [radius])\r\n }\r\n setFillColor(color) {\r\n this._runCommand(\"setFillColor\", [processColor(color)])\r\n }\r\n setStrokeColor(color) {\r\n this._runCommand(\"setStrokeColor\", [processColor(color)])\r\n }\r\n setStrokeWidth(width) {\r\n this._runCommand(\"setStrokeWidth\", [width])\r\n }\r\n setUserData(userData) {\r\n this._runCommand(\"setUserData\", [userData])\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\r\n _getHandle() {\r\n return findNodeHandle(this.circle);\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 = \"RMFCircle\";\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[`RMFCircle`][name];\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.circle = ref;\r\n }\r\n\r\n render() {\r\n return <RMFCircle\r\n {...this.props}\r\n ref={this._ref}\r\n onPress={this._onPress}\r\n />;\r\n }\r\n}\r\n\r\nMFCircle.propTypes = propTypes;\r\n// MFCircle.defaultProps = defaultProps;\r\n\r\nvar RMFCircle = requireNativeComponent(`RMFCircle`, MFCircle);\r\n\r\nexport {MFCircle}\r\n"],"mappings":"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"}
@@ -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":"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"}
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":"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"}