react-native-map4d-map-dtqg 0.1.3 → 0.1.4
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.
- package/LICENSE +21 -21
- package/README.md +133 -133
- package/android/.gradle/8.9/checksums/checksums.lock +0 -0
- package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.9/gc.properties +0 -0
- package/android/.gradle/9.2.0/checksums/checksums.lock +0 -0
- package/android/.gradle/9.2.0/fileChanges/last-build.bin +0 -0
- package/android/.gradle/9.2.0/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/9.2.0/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/9.2.0/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/android/build.gradle +60 -60
- package/android/src/main/AndroidManifest.xml +4 -4
- package/android/src/main/java/com/reactnativemap4dmap/ImageUtils.java +87 -87
- package/android/src/main/java/com/reactnativemap4dmap/Map4dMapModule.java +298 -298
- package/android/src/main/java/com/reactnativemap4dmap/Map4dMapPackage.java +35 -35
- package/android/src/main/java/com/reactnativemap4dmap/Map4dMapViewManager.java +31 -31
- package/android/src/main/java/com/reactnativemap4dmap/RMFBuilding.java +167 -167
- package/android/src/main/java/com/reactnativemap4dmap/RMFBuildingManager.java +121 -121
- package/android/src/main/java/com/reactnativemap4dmap/RMFCircle.java +105 -105
- package/android/src/main/java/com/reactnativemap4dmap/RMFCircleManager.java +121 -121
- package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRenderer.java +502 -502
- package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRendererManager.java +143 -143
- package/android/src/main/java/com/reactnativemap4dmap/RMFFeature.java +17 -17
- package/android/src/main/java/com/reactnativemap4dmap/RMFMapView.java +1172 -1172
- package/android/src/main/java/com/reactnativemap4dmap/RMFMapViewManager.java +231 -231
- package/android/src/main/java/com/reactnativemap4dmap/RMFMarker.java +412 -412
- package/android/src/main/java/com/reactnativemap4dmap/RMFMarkerManager.java +211 -211
- package/android/src/main/java/com/reactnativemap4dmap/RMFPOI.java +222 -222
- package/android/src/main/java/com/reactnativemap4dmap/RMFPOIManager.java +119 -119
- package/android/src/main/java/com/reactnativemap4dmap/RMFPolygon.java +172 -172
- package/android/src/main/java/com/reactnativemap4dmap/RMFPolygonManager.java +147 -147
- package/android/src/main/java/com/reactnativemap4dmap/RMFPolyline.java +146 -146
- package/android/src/main/java/com/reactnativemap4dmap/RMFPolylineManager.java +137 -137
- package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlay.java +95 -95
- package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlayManager.java +64 -64
- package/android/src/main/java/com/reactnativemap4dmap/SizeReportingShadowNode.java +31 -31
- package/android/src/main/java/com/reactnativemap4dmap/ViewAttacherGroup.java +31 -31
- package/android/src/main/java/com/reactnativemap4dmap/ViewChangesTracker.java +70 -70
- package/android/src/main/java/vn/map4d/map/annotations/RMFBitmapDescriptor.java +9 -9
- package/ios/Map4dMap.h +7 -7
- package/ios/Map4dMap.m +14 -14
- package/ios/Map4dMapViewManager.m +34 -34
- package/ios/RCTConvert+Map4dMap.h +33 -33
- package/ios/RCTConvert+Map4dMap.m +112 -112
- package/ios/RMFCircle.h +37 -37
- package/ios/RMFCircle.m +100 -100
- package/ios/RMFCircleManager.h +18 -18
- package/ios/RMFCircleManager.m +155 -155
- package/ios/RMFCircleMap4d.h +23 -23
- package/ios/RMFCircleMap4d.m +13 -13
- package/ios/RMFCoordinate.h +22 -22
- package/ios/RMFCoordinate.m +13 -13
- package/ios/RMFDirectionsMarkerOptions.h +24 -24
- package/ios/RMFDirectionsMarkerOptions.m +23 -23
- package/ios/RMFDirectionsRenderer.h +47 -47
- package/ios/RMFDirectionsRenderer.m +182 -182
- package/ios/RMFDirectionsRendererManager.h +17 -17
- package/ios/RMFDirectionsRendererManager.m +84 -84
- package/ios/RMFDirectionsRendererMap4d.h +21 -21
- package/ios/RMFDirectionsRendererMap4d.m +12 -12
- package/ios/RMFDummyView.h +6 -6
- package/ios/RMFDummyView.m +12 -12
- package/ios/RMFEventResponse.h +39 -39
- package/ios/RMFEventResponse.m +98 -98
- package/ios/RMFIcon.h +24 -24
- package/ios/RMFIcon.m +35 -35
- package/ios/RMFMapView.h +84 -84
- package/ios/RMFMapView.m +376 -376
- package/ios/RMFMapViewManager.h +17 -17
- package/ios/RMFMapViewManager.m +509 -509
- package/ios/RMFMarker.h +57 -57
- package/ios/RMFMarker.m +267 -267
- package/ios/RMFMarkerManager.h +17 -17
- package/ios/RMFMarkerManager.m +156 -156
- package/ios/RMFMarkerMap4d.h +19 -19
- package/ios/RMFMarkerMap4d.m +13 -13
- package/ios/RMFPOI.h +38 -38
- package/ios/RMFPOI.m +123 -123
- package/ios/RMFPOIManager.h +18 -18
- package/ios/RMFPOIManager.m +168 -168
- package/ios/RMFPOIMap4d.h +22 -22
- package/ios/RMFPOIMap4d.m +12 -12
- package/ios/RMFPolygon.h +41 -41
- package/ios/RMFPolygon.m +106 -106
- package/ios/RMFPolygonManager.h +18 -18
- package/ios/RMFPolygonManager.m +141 -141
- package/ios/RMFPolygonMap4d.h +23 -23
- package/ios/RMFPolygonMap4d.m +15 -15
- package/ios/RMFPolyline.h +38 -38
- package/ios/RMFPolyline.m +101 -101
- package/ios/RMFPolylineManager.h +18 -18
- package/ios/RMFPolylineManager.m +139 -139
- package/ios/RMFPolylineMap4d.h +22 -22
- package/ios/RMFPolylineMap4d.m +15 -15
- package/ios/building/RMFBuilding.h +41 -41
- package/ios/building/RMFBuilding.m +104 -104
- package/ios/building/RMFBuildingManager.h +19 -19
- package/ios/building/RMFBuildingManager.m +133 -133
- package/ios/building/RMFBuildingMap4d.h +23 -23
- package/ios/building/RMFBuildingMap4d.m +15 -15
- package/ios/overlays/RMFTileOverlay.h +36 -36
- package/ios/overlays/RMFTileOverlay.m +64 -64
- package/ios/overlays/RMFTileOverlayManager.h +17 -17
- package/ios/overlays/RMFTileOverlayManager.m +27 -27
- package/lib/commonjs/components/MFBanDoSo.js.map +1 -1
- package/lib/commonjs/components/MFBuilding.js +50 -32
- package/lib/commonjs/components/MFBuilding.js.map +1 -1
- package/lib/commonjs/components/MFCircle.js +44 -26
- package/lib/commonjs/components/MFCircle.js.map +1 -1
- package/lib/commonjs/components/MFDirectionsRenderer.js +56 -38
- package/lib/commonjs/components/MFDirectionsRenderer.js.map +1 -1
- package/lib/commonjs/components/MFMapView.js +91 -74
- package/lib/commonjs/components/MFMapView.js.map +1 -1
- package/lib/commonjs/components/MFMarker.js +59 -41
- package/lib/commonjs/components/MFMarker.js.map +1 -1
- package/lib/commonjs/components/MFPOI.js +44 -26
- package/lib/commonjs/components/MFPOI.js.map +1 -1
- package/lib/commonjs/components/MFPolygon.js +46 -28
- package/lib/commonjs/components/MFPolygon.js.map +1 -1
- package/lib/commonjs/components/MFPolyline.js +42 -24
- package/lib/commonjs/components/MFPolyline.js.map +1 -1
- package/lib/commonjs/components/MFTileOverlay.js +9 -9
- package/lib/commonjs/components/MFTileOverlay.js.map +1 -1
- package/lib/commonjs/components/Map4dMapView.js.map +1 -1
- package/lib/commonjs/components/extends/AreaFocusManager.js +16 -16
- package/lib/commonjs/components/extends/AreaFocusManager.js.map +1 -1
- package/lib/commonjs/components/extends/AreaFocuser.js +2 -2
- package/lib/commonjs/components/extends/AreaFocuser.js.map +1 -1
- package/lib/commonjs/components/extends/BoundHelper.js.map +1 -1
- package/lib/commonjs/components/extends/area/AreaFocusAreas.js.map +1 -1
- package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js.map +1 -1
- package/lib/commonjs/components/extends/area/AreaFocusSession.js.map +1 -1
- package/lib/commonjs/components/extends/area/AreaFocusTypes.js +18 -18
- package/lib/commonjs/components/extends/area/AreaFocusTypes.js.map +1 -1
- package/lib/commonjs/components/internal/DefaultRoadmapStyle.js.map +1 -1
- package/lib/commonjs/components/internal/GeojsonStyleUtils.js.map +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/components/MFBanDoSo.js.map +1 -1
- package/lib/module/components/MFBuilding.js +51 -33
- package/lib/module/components/MFBuilding.js.map +1 -1
- package/lib/module/components/MFCircle.js +45 -27
- package/lib/module/components/MFCircle.js.map +1 -1
- package/lib/module/components/MFDirectionsRenderer.js +57 -39
- package/lib/module/components/MFDirectionsRenderer.js.map +1 -1
- package/lib/module/components/MFMapView.js +92 -75
- package/lib/module/components/MFMapView.js.map +1 -1
- package/lib/module/components/MFMarker.js +60 -42
- package/lib/module/components/MFMarker.js.map +1 -1
- package/lib/module/components/MFPOI.js +45 -27
- package/lib/module/components/MFPOI.js.map +1 -1
- package/lib/module/components/MFPolygon.js +47 -29
- package/lib/module/components/MFPolygon.js.map +1 -1
- package/lib/module/components/MFPolyline.js +43 -25
- package/lib/module/components/MFPolyline.js.map +1 -1
- package/lib/module/components/MFTileOverlay.js +9 -9
- package/lib/module/components/MFTileOverlay.js.map +1 -1
- package/lib/module/components/Map4dMapView.js.map +1 -1
- package/lib/module/components/extends/AreaFocusManager.js +16 -16
- package/lib/module/components/extends/AreaFocusManager.js.map +1 -1
- package/lib/module/components/extends/AreaFocuser.js +2 -2
- package/lib/module/components/extends/AreaFocuser.js.map +1 -1
- package/lib/module/components/extends/BoundHelper.js.map +1 -1
- package/lib/module/components/extends/area/AreaFocusAreas.js.map +1 -1
- package/lib/module/components/extends/area/AreaFocusGeometryUtils.js.map +1 -1
- package/lib/module/components/extends/area/AreaFocusSession.js.map +1 -1
- package/lib/module/components/extends/area/AreaFocusTypes.js +18 -18
- package/lib/module/components/extends/area/AreaFocusTypes.js.map +1 -1
- package/lib/module/components/internal/DefaultRoadmapStyle.js.map +1 -1
- package/lib/module/components/internal/GeojsonStyleUtils.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/components/Map4dMapView.d.ts +7 -7
- package/package.json +152 -152
- package/react-native-map4d-map.podspec +20 -20
- package/src/components/MFBanDoSo.js +124 -124
- package/src/components/MFBuilding.js +200 -187
- package/src/components/MFCircle.js +186 -173
- package/src/components/MFDirectionsRenderer.js +250 -237
- package/src/components/MFMapView.js +480 -464
- package/src/components/MFMarker.js +259 -246
- package/src/components/MFPOI.js +197 -184
- package/src/components/MFPolygon.js +199 -186
- package/src/components/MFPolyline.js +185 -172
- package/src/components/MFTileOverlay.js +45 -45
- package/src/components/Map4dMapView.tsx +26 -26
- package/src/components/extends/AreaFocusManager.js +196 -196
- package/src/components/extends/AreaFocuser.js +61 -61
- package/src/components/extends/BoundHelper.js +31 -31
- package/src/components/extends/area/AreaFocusAreas.js +164 -164
- package/src/components/extends/area/AreaFocusGeometryUtils.js +164 -164
- package/src/components/extends/area/AreaFocusSession.js +100 -100
- package/src/components/extends/area/AreaFocusTypes.js +36 -36
- package/src/components/internal/DefaultRoadmapStyle.js +3365 -3365
- package/src/components/internal/GeojsonStyleUtils.js +143 -143
- package/src/index.js +25 -25
|
@@ -37,122 +37,122 @@ const CameraShape = _propTypes.default.shape({
|
|
|
37
37
|
const viewPropTypes = _deprecatedReactNativePropTypes.ViewPropTypes || View.propTypes;
|
|
38
38
|
const propTypes = { ...viewPropTypes,
|
|
39
39
|
|
|
40
|
-
/**
|
|
41
|
-
* An opaque identifier for a custom map configuration.
|
|
40
|
+
/**
|
|
41
|
+
* An opaque identifier for a custom map configuration.
|
|
42
42
|
*/
|
|
43
43
|
mapID: _propTypes.default.string,
|
|
44
44
|
|
|
45
|
-
/**
|
|
46
|
-
* Map style by string for a custom map configuration.
|
|
45
|
+
/**
|
|
46
|
+
* Map style by string for a custom map configuration.
|
|
47
47
|
*/
|
|
48
48
|
mapStyle: _propTypes.default.string,
|
|
49
49
|
|
|
50
|
-
/**
|
|
51
|
-
* If `false` hide the button to move map to the current user's location.
|
|
52
|
-
* Default value is `false`.
|
|
50
|
+
/**
|
|
51
|
+
* If `false` hide the button to move map to the current user's location.
|
|
52
|
+
* Default value is `false`.
|
|
53
53
|
*/
|
|
54
54
|
showsMyLocationButton: _propTypes.default.bool,
|
|
55
55
|
|
|
56
|
-
/**
|
|
57
|
-
* If `true` the app will ask for the user's location.
|
|
58
|
-
* Default value is `false`.
|
|
56
|
+
/**
|
|
57
|
+
* If `true` the app will ask for the user's location.
|
|
58
|
+
* Default value is `false`.
|
|
59
59
|
*/
|
|
60
60
|
showsMyLocation: _propTypes.default.bool,
|
|
61
61
|
|
|
62
|
-
/**
|
|
63
|
-
* A Boolean indicating whether the map displays buildings.
|
|
64
|
-
* Default value is `true`.
|
|
62
|
+
/**
|
|
63
|
+
* A Boolean indicating whether the map displays buildings.
|
|
64
|
+
* Default value is `true`.
|
|
65
65
|
*/
|
|
66
66
|
showsBuildings: _propTypes.default.bool,
|
|
67
67
|
|
|
68
|
-
/**
|
|
69
|
-
* A Boolean indicating whether the map displays POIs.
|
|
70
|
-
* Default value is `true`.
|
|
68
|
+
/**
|
|
69
|
+
* A Boolean indicating whether the map displays POIs.
|
|
70
|
+
* Default value is `true`.
|
|
71
71
|
*/
|
|
72
72
|
showsPOIs: _propTypes.default.bool,
|
|
73
73
|
|
|
74
|
-
/**
|
|
75
|
-
* If `false` the user won't be able to zoom the map.
|
|
76
|
-
* Default value is `true`.
|
|
74
|
+
/**
|
|
75
|
+
* If `false` the user won't be able to zoom the map.
|
|
76
|
+
* Default value is `true`.
|
|
77
77
|
*/
|
|
78
78
|
zoomGesturesEnabled: _propTypes.default.bool,
|
|
79
79
|
|
|
80
|
-
/**
|
|
81
|
-
* If `false` the user won't be able to scroll the map.
|
|
82
|
-
* Default value is `true`.
|
|
80
|
+
/**
|
|
81
|
+
* If `false` the user won't be able to scroll the map.
|
|
82
|
+
* Default value is `true`.
|
|
83
83
|
*/
|
|
84
84
|
scrollGesturesEnabled: _propTypes.default.bool,
|
|
85
85
|
|
|
86
|
-
/**
|
|
87
|
-
* If `false` the user won't be able to pinch/rotate the map.
|
|
88
|
-
* Default value is `true`.
|
|
86
|
+
/**
|
|
87
|
+
* If `false` the user won't be able to pinch/rotate the map.
|
|
88
|
+
* Default value is `true`.
|
|
89
89
|
*/
|
|
90
90
|
rotateGesturesEnabled: _propTypes.default.bool,
|
|
91
91
|
|
|
92
|
-
/**
|
|
93
|
-
* If `false` the user won't be able to tilt the map.
|
|
94
|
-
* Default value is `true`.
|
|
92
|
+
/**
|
|
93
|
+
* If `false` the user won't be able to tilt the map.
|
|
94
|
+
* Default value is `true`.
|
|
95
95
|
*/
|
|
96
96
|
tiltGesturesEnabled: _propTypes.default.bool,
|
|
97
97
|
|
|
98
|
-
/**
|
|
99
|
-
* The camera view position.
|
|
98
|
+
/**
|
|
99
|
+
* The camera view position.
|
|
100
100
|
*/
|
|
101
101
|
camera: CameraShape,
|
|
102
102
|
|
|
103
|
-
/**
|
|
104
|
-
* Type of map tiles to be rendered.
|
|
103
|
+
/**
|
|
104
|
+
* Type of map tiles to be rendered.
|
|
105
105
|
*/
|
|
106
106
|
mapType: _propTypes.default.oneOf(['roadmap', 'satellite', 'hybrid']),
|
|
107
107
|
|
|
108
|
-
/**
|
|
109
|
-
* Callback that is called once the map is fully loaded.
|
|
110
|
-
* @platform android
|
|
108
|
+
/**
|
|
109
|
+
* Callback that is called once the map is fully loaded.
|
|
110
|
+
* @platform android
|
|
111
111
|
*/
|
|
112
112
|
onMapReady: _propTypes.default.func,
|
|
113
113
|
|
|
114
|
-
/**
|
|
115
|
-
* Callback that is called when user taps on the map.
|
|
114
|
+
/**
|
|
115
|
+
* Callback that is called when user taps on the map.
|
|
116
116
|
*/
|
|
117
117
|
onPress: _propTypes.default.func,
|
|
118
118
|
|
|
119
|
-
/**
|
|
120
|
-
* Callback that is called when user taps on the POIs
|
|
119
|
+
/**
|
|
120
|
+
* Callback that is called when user taps on the POIs
|
|
121
121
|
*/
|
|
122
122
|
onPoiPress: _propTypes.default.func,
|
|
123
123
|
|
|
124
|
-
/**
|
|
125
|
-
* Callback that is called when user taps on the Buildings
|
|
124
|
+
/**
|
|
125
|
+
* Callback that is called when user taps on the Buildings
|
|
126
126
|
*/
|
|
127
127
|
onBuildingPress: _propTypes.default.func,
|
|
128
128
|
|
|
129
|
-
/**
|
|
130
|
-
* Callback that is called when user taps on the Places
|
|
129
|
+
/**
|
|
130
|
+
* Callback that is called when user taps on the Places
|
|
131
131
|
*/
|
|
132
132
|
onPlacePress: _propTypes.default.func,
|
|
133
133
|
|
|
134
|
-
/**
|
|
135
|
-
* Callback that is called when user taps on the Data Source Features
|
|
134
|
+
/**
|
|
135
|
+
* Callback that is called when user taps on the Data Source Features
|
|
136
136
|
*/
|
|
137
137
|
onDataSourceFeaturePress: _propTypes.default.func,
|
|
138
138
|
|
|
139
|
-
/**
|
|
140
|
-
* Callback that is called when moving camera
|
|
139
|
+
/**
|
|
140
|
+
* Callback that is called when moving camera
|
|
141
141
|
*/
|
|
142
142
|
onCameraMove: _propTypes.default.func,
|
|
143
143
|
|
|
144
|
-
/**
|
|
145
|
-
* Callback that is called when camera start moving
|
|
144
|
+
/**
|
|
145
|
+
* Callback that is called when camera start moving
|
|
146
146
|
*/
|
|
147
147
|
onCameraMoveStart: _propTypes.default.func,
|
|
148
148
|
|
|
149
|
-
/**
|
|
150
|
-
* Callback that is called when camera idle
|
|
149
|
+
/**
|
|
150
|
+
* Callback that is called when camera idle
|
|
151
151
|
*/
|
|
152
152
|
onCameraIdle: _propTypes.default.func,
|
|
153
153
|
|
|
154
|
-
/**
|
|
155
|
-
* Callback that is called when user taps on location Button
|
|
154
|
+
/**
|
|
155
|
+
* Callback that is called when user taps on location Button
|
|
156
156
|
*/
|
|
157
157
|
onMyLocationButtonPress: _propTypes.default.func
|
|
158
158
|
};
|
|
@@ -322,14 +322,14 @@ class MFMapView extends _react.default.Component {
|
|
|
322
322
|
|
|
323
323
|
return Promise.reject('cameraForBounds not supported on this platform');
|
|
324
324
|
}
|
|
325
|
-
/**
|
|
326
|
-
* Convert a map coordinate to screen point
|
|
327
|
-
*
|
|
328
|
-
* @param coordinate Coordinate
|
|
329
|
-
* @param [coordinate.latitude] Latitude
|
|
330
|
-
* @param [coordinate.longitude] Longitude
|
|
331
|
-
*
|
|
332
|
-
* @return Promise Promise with the point ({ x: Number, y: Number })
|
|
325
|
+
/**
|
|
326
|
+
* Convert a map coordinate to screen point
|
|
327
|
+
*
|
|
328
|
+
* @param coordinate Coordinate
|
|
329
|
+
* @param [coordinate.latitude] Latitude
|
|
330
|
+
* @param [coordinate.longitude] Longitude
|
|
331
|
+
*
|
|
332
|
+
* @return Promise Promise with the point ({ x: Number, y: Number })
|
|
333
333
|
*/
|
|
334
334
|
|
|
335
335
|
|
|
@@ -342,14 +342,14 @@ class MFMapView extends _react.default.Component {
|
|
|
342
342
|
|
|
343
343
|
return Promise.reject('pointForCoordinate not supported on this platform');
|
|
344
344
|
}
|
|
345
|
-
/**
|
|
346
|
-
* Convert a screen point to a map coordinate
|
|
347
|
-
*
|
|
348
|
-
* @param point Point
|
|
349
|
-
* @param [point.x] X
|
|
350
|
-
* @param [point.x] Y
|
|
351
|
-
*
|
|
352
|
-
* @return Promise Promise with the coordinate ({ latitude: Number, longitude: Number })
|
|
345
|
+
/**
|
|
346
|
+
* Convert a screen point to a map coordinate
|
|
347
|
+
*
|
|
348
|
+
* @param point Point
|
|
349
|
+
* @param [point.x] X
|
|
350
|
+
* @param [point.x] Y
|
|
351
|
+
*
|
|
352
|
+
* @return Promise Promise with the coordinate ({ latitude: Number, longitude: Number })
|
|
353
353
|
*/
|
|
354
354
|
|
|
355
355
|
|
|
@@ -386,7 +386,19 @@ class MFMapView extends _react.default.Component {
|
|
|
386
386
|
_runCommand(name, args) {
|
|
387
387
|
switch (_reactNative.Platform.OS) {
|
|
388
388
|
case 'android':
|
|
389
|
-
|
|
389
|
+
{
|
|
390
|
+
if (!_reactNative.UIManager || typeof _reactNative.UIManager.dispatchViewManagerCommand !== 'function') {
|
|
391
|
+
return Promise.reject('UIManager.dispatchViewManagerCommand is unavailable on this React Native version');
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
const commandId = this._uiManagerCommand(name);
|
|
395
|
+
|
|
396
|
+
if (commandId == null) {
|
|
397
|
+
return Promise.reject(`Cannot find native command "${name}" for RMFMapView`);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
return _reactNative.UIManager.dispatchViewManagerCommand(this._getHandle(), commandId, args);
|
|
401
|
+
}
|
|
390
402
|
|
|
391
403
|
case 'ios':
|
|
392
404
|
return this._mapManagerCommand(name)(this._getHandle(), ...args);
|
|
@@ -397,16 +409,21 @@ class MFMapView extends _react.default.Component {
|
|
|
397
409
|
}
|
|
398
410
|
|
|
399
411
|
_uiManagerCommand(name) {
|
|
400
|
-
const
|
|
412
|
+
const uiManager = _reactNative.UIManager || _reactNative.NativeModules.UIManager;
|
|
401
413
|
const componentName = "RMFMapView";
|
|
402
414
|
|
|
403
|
-
if (!
|
|
415
|
+
if (!uiManager) {
|
|
416
|
+
return null;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
if (!uiManager.getViewManagerConfig) {
|
|
404
420
|
// RN < 0.58
|
|
405
|
-
return
|
|
421
|
+
return uiManager[componentName].Commands[name];
|
|
406
422
|
} // RN >= 0.58
|
|
407
423
|
|
|
408
424
|
|
|
409
|
-
|
|
425
|
+
const config = uiManager.getViewManagerConfig(componentName);
|
|
426
|
+
return config && config.Commands ? config.Commands[name] : null;
|
|
410
427
|
}
|
|
411
428
|
|
|
412
429
|
_mapManagerCommand(name) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["CameraShape","PropTypes","shape","target","latitude","number","isRequired","longitude","zoom","bearing","tilt","viewPropTypes","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","React","Component","constructor","props","areaFocusManager","AreaFocusManager","areaFocuser","AreaFocuser","state","isReady","Platform","OS","managedPolygons","_onMapReady","bind","_ref","_addPolygon","polygon","id","trim","length","_polygon","setState","prevState","_removePolygon","_clearManagedPolygons","ref","map","getCamera","NativeModules","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","focusArea","focusOptions","resolve","focus","clearFocusedArea","clear","findNodeHandle","name","args","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","render","children","restProps","Object","values","style","coordinates","holes","fillColor","strokeColor","strokeWidth","zIndex","RMFMapView","requireNativeComponent"],"sources":["MFMapView.js"],"sourcesContent":["import PropTypes from 'prop-types';\nimport React from 'react';\nimport {ViewPropTypes, ColorPropType} from 'deprecated-react-native-prop-types';\nimport {AreaFocusManager} from './extends/AreaFocusManager';\nimport {AreaFocuser} from './extends/AreaFocuser';\nimport {MFPolygon} from './MFPolygon';\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\n\nclass MFMapView extends React.Component {\n constructor(props) {\n super(props);\n this.areaFocusManager = new AreaFocusManager(this);\n this.areaFocuser = new AreaFocuser(this.areaFocusManager);\n this.state = {\n isReady: Platform.OS === 'ios',\n managedPolygons: {},\n };\n\n this._onMapReady = this._onMapReady.bind(this);\n this._ref = this._ref.bind(this);\n }\n\n _addPolygon(polygon) {\n if (polygon == null || typeof polygon !== 'object') {\n return null;\n }\n\n const id =\n typeof polygon.id === 'string' && polygon.id.trim().length > 0\n ? polygon.id\n : 'polygon-highlight-id-default';\n\n const _polygon = {\n ...polygon,\n id,\n };\n\n this.setState((prevState) => ({\n managedPolygons: {\n ...prevState.managedPolygons,\n [id]: _polygon,\n },\n }));\n\n return id;\n }\n\n _removePolygon(id) {\n if (typeof id !== 'string' || id.trim().length === 0) {\n return;\n }\n\n this.setState((prevState) => {\n if (!prevState.managedPolygons[id]) {\n return null;\n }\n\n const managedPolygons = {\n ...prevState.managedPolygons,\n };\n delete managedPolygons[id];\n\n return {\n managedPolygons,\n };\n });\n }\n\n _clearManagedPolygons() {\n this.setState({\n managedPolygons: {},\n });\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 focusArea(focusOptions) {\n if (!this.areaFocusManager) {\n return Promise.resolve(null)\n }\n\n return this.areaFocusManager.focus(focusOptions)\n }\n\n clearFocusedArea() {\n if (!this.areaFocusManager) {\n return\n }\n this.areaFocusManager.clear()\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 render() {\n let props;\n const { children, ...restProps } = this.props;\n const managedPolygons = Object.values(this.state.managedPolygons);\n\n if (this.state.isReady) {\n props = {\n style: this.props.style,\n onMapReady: this._onMapReady,\n ...restProps,\n children: (\n <React.Fragment>\n {children}\n {managedPolygons.map((polygon) => (\n <MFPolygon\n key={polygon.id}\n coordinates={polygon.coordinates}\n holes={polygon.holes}\n fillColor={polygon.fillColor}\n strokeColor={polygon.strokeColor}\n strokeWidth={polygon.strokeWidth}\n zIndex={polygon.zIndex}\n />\n ))}\n </React.Fragment>\n ),\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":["CameraShape","PropTypes","shape","target","latitude","number","isRequired","longitude","zoom","bearing","tilt","viewPropTypes","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","React","Component","constructor","props","areaFocusManager","AreaFocusManager","areaFocuser","AreaFocuser","state","isReady","Platform","OS","managedPolygons","_onMapReady","bind","_ref","_addPolygon","polygon","id","trim","length","_polygon","setState","prevState","_removePolygon","_clearManagedPolygons","ref","map","getCamera","NativeModules","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","focusArea","focusOptions","resolve","focus","clearFocusedArea","clear","findNodeHandle","name","args","UIManager","dispatchViewManagerCommand","commandId","_uiManagerCommand","_mapManagerCommand","uiManager","componentName","getViewManagerConfig","Commands","config","render","children","restProps","Object","values","style","coordinates","holes","fillColor","strokeColor","strokeWidth","zIndex","RMFMapView","requireNativeComponent"],"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 {AreaFocusManager} from './extends/AreaFocusManager';\r\nimport {AreaFocuser} from './extends/AreaFocuser';\r\nimport {MFPolygon} from './MFPolygon';\r\nimport {\r\n requireNativeComponent,\r\n Platform,\r\n UIManager,\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\n\r\nclass MFMapView extends React.Component {\r\n constructor(props) {\r\n super(props);\r\n this.areaFocusManager = new AreaFocusManager(this);\r\n this.areaFocuser = new AreaFocuser(this.areaFocusManager);\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 focusArea(focusOptions) {\r\n if (!this.areaFocusManager) {\r\n return Promise.resolve(null)\r\n }\r\n\r\n return this.areaFocusManager.focus(focusOptions)\r\n }\r\n\r\n clearFocusedArea() {\r\n if (!this.areaFocusManager) {\r\n return\r\n }\r\n this.areaFocusManager.clear()\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 if (!UIManager || typeof UIManager.dispatchViewManagerCommand !== 'function') {\r\n return Promise.reject('UIManager.dispatchViewManagerCommand is unavailable on this React Native version')\r\n }\r\n\r\n const commandId = this._uiManagerCommand(name)\r\n if (commandId == null) {\r\n return Promise.reject(`Cannot find native command \"${name}\" for RMFMapView`)\r\n }\r\n\r\n return UIManager.dispatchViewManagerCommand(\r\n this._getHandle(),\r\n commandId,\r\n args\r\n );\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 = UIManager || NativeModules.UIManager;\r\n const componentName = \"RMFMapView\";\r\n\r\n if (!uiManager) {\r\n return null;\r\n }\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 const config = uiManager.getViewManagerConfig(componentName);\r\n return config && config.Commands ? config.Commands[name] : null;\r\n }\r\n\r\n _mapManagerCommand(name) {\r\n return NativeModules[`RMFMapView`][name];\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":"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"}
|
|
@@ -21,57 +21,57 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
|
|
|
21
21
|
const viewPropTypes = _deprecatedReactNativePropTypes.ViewPropTypes || View.propTypes;
|
|
22
22
|
const propTypes = { ...viewPropTypes,
|
|
23
23
|
|
|
24
|
-
/**
|
|
25
|
-
* The coordinate for the marker.
|
|
24
|
+
/**
|
|
25
|
+
* The coordinate for the marker.
|
|
26
26
|
*/
|
|
27
27
|
coordinate: _propTypes.default.shape({
|
|
28
28
|
latitude: _propTypes.default.number.isRequired,
|
|
29
29
|
longitude: _propTypes.default.number.isRequired
|
|
30
30
|
}).isRequired,
|
|
31
31
|
|
|
32
|
-
/**
|
|
33
|
-
* Default value is `false`
|
|
32
|
+
/**
|
|
33
|
+
* Default value is `false`
|
|
34
34
|
*/
|
|
35
35
|
draggable: _propTypes.default.bool,
|
|
36
36
|
|
|
37
|
-
/**
|
|
38
|
-
* Sets the ground anchor point for the marker.
|
|
37
|
+
/**
|
|
38
|
+
* Sets the ground anchor point for the marker.
|
|
39
39
|
*/
|
|
40
40
|
anchor: _propTypes.default.shape({
|
|
41
41
|
x: _propTypes.default.number.isRequired,
|
|
42
42
|
y: _propTypes.default.number.isRequired
|
|
43
43
|
}),
|
|
44
44
|
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
47
|
*/
|
|
48
48
|
elevation: _propTypes.default.number,
|
|
49
49
|
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
52
|
*/
|
|
53
53
|
rotation: _propTypes.default.number,
|
|
54
54
|
|
|
55
|
-
/**
|
|
56
|
-
* Sets the infor window anchor point for the marker.
|
|
55
|
+
/**
|
|
56
|
+
* Sets the infor window anchor point for the marker.
|
|
57
57
|
*/
|
|
58
58
|
infoWindowAnchor: _propTypes.default.shape({
|
|
59
59
|
x: _propTypes.default.number.isRequired,
|
|
60
60
|
y: _propTypes.default.number.isRequired
|
|
61
61
|
}),
|
|
62
62
|
|
|
63
|
-
/**
|
|
64
|
-
* The title of the marker.
|
|
63
|
+
/**
|
|
64
|
+
* The title of the marker.
|
|
65
65
|
*/
|
|
66
66
|
title: _propTypes.default.string,
|
|
67
67
|
|
|
68
|
-
/**
|
|
69
|
-
* The snippet of the marker.
|
|
68
|
+
/**
|
|
69
|
+
* The snippet of the marker.
|
|
70
70
|
*/
|
|
71
71
|
snippet: _propTypes.default.string,
|
|
72
72
|
|
|
73
|
-
/**
|
|
74
|
-
* Marker icon to render.
|
|
73
|
+
/**
|
|
74
|
+
* Marker icon to render.
|
|
75
75
|
*/
|
|
76
76
|
icon: _propTypes.default.shape({
|
|
77
77
|
uri: _propTypes.default.any.isRequired,
|
|
@@ -79,44 +79,44 @@ const propTypes = { ...viewPropTypes,
|
|
|
79
79
|
height: _propTypes.default.number.isRequired
|
|
80
80
|
}),
|
|
81
81
|
|
|
82
|
-
/**
|
|
83
|
-
* zIndex
|
|
82
|
+
/**
|
|
83
|
+
* zIndex
|
|
84
84
|
*/
|
|
85
85
|
zIndex: _propTypes.default.number,
|
|
86
86
|
|
|
87
|
-
/**
|
|
88
|
-
* visible
|
|
87
|
+
/**
|
|
88
|
+
* visible
|
|
89
89
|
*/
|
|
90
90
|
visible: _propTypes.default.bool,
|
|
91
91
|
|
|
92
|
-
/**
|
|
93
|
-
* userData
|
|
92
|
+
/**
|
|
93
|
+
* userData
|
|
94
94
|
*/
|
|
95
95
|
userData: _propTypes.default.object,
|
|
96
96
|
|
|
97
|
-
/**
|
|
98
|
-
* Callback that is called when the user presses on the marker
|
|
97
|
+
/**
|
|
98
|
+
* Callback that is called when the user presses on the marker
|
|
99
99
|
*/
|
|
100
100
|
onPress: _propTypes.default.func,
|
|
101
101
|
|
|
102
|
-
/**
|
|
103
|
-
* Callback that is called when the user presses on the info window
|
|
102
|
+
/**
|
|
103
|
+
* Callback that is called when the user presses on the info window
|
|
104
104
|
*/
|
|
105
105
|
onPressInfoWindow: _propTypes.default.func,
|
|
106
106
|
|
|
107
|
-
/**
|
|
108
|
-
* Callback that is called when the user initiates a drag on this marker (if it is draggable)
|
|
107
|
+
/**
|
|
108
|
+
* Callback that is called when the user initiates a drag on this marker (if it is draggable)
|
|
109
109
|
*/
|
|
110
110
|
onDragStart: _propTypes.default.func,
|
|
111
111
|
|
|
112
|
-
/**
|
|
113
|
-
* Callback called continuously as the marker is dragged
|
|
112
|
+
/**
|
|
113
|
+
* Callback called continuously as the marker is dragged
|
|
114
114
|
*/
|
|
115
115
|
onDrag: _propTypes.default.func,
|
|
116
116
|
|
|
117
|
-
/**
|
|
118
|
-
* Callback that is called when a drag on this marker finishes. This is usually the point you
|
|
119
|
-
* will want to setState on the marker's coordinate again
|
|
117
|
+
/**
|
|
118
|
+
* Callback that is called when a drag on this marker finishes. This is usually the point you
|
|
119
|
+
* will want to setState on the marker's coordinate again
|
|
120
120
|
*/
|
|
121
121
|
onDragEnd: _propTypes.default.func
|
|
122
122
|
};
|
|
@@ -175,9 +175,21 @@ class MFMarker extends _react.default.Component {
|
|
|
175
175
|
_runCommand(name, args) {
|
|
176
176
|
switch (_reactNative.Platform.OS) {
|
|
177
177
|
case 'android':
|
|
178
|
-
|
|
178
|
+
{
|
|
179
|
+
if (!_reactNative.UIManager || typeof _reactNative.UIManager.dispatchViewManagerCommand !== 'function') {
|
|
180
|
+
return;
|
|
181
|
+
}
|
|
179
182
|
|
|
180
|
-
|
|
183
|
+
const commandId = this._uiManagerCommand(name);
|
|
184
|
+
|
|
185
|
+
if (commandId == null) {
|
|
186
|
+
return;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
_reactNative.UIManager.dispatchViewManagerCommand(this._getHandle(), commandId, args);
|
|
190
|
+
|
|
191
|
+
break;
|
|
192
|
+
}
|
|
181
193
|
|
|
182
194
|
case 'ios':
|
|
183
195
|
//this.getMapManagerCommand(name)(this._getHandle(), ...args);
|
|
@@ -191,16 +203,22 @@ class MFMarker extends _react.default.Component {
|
|
|
191
203
|
}
|
|
192
204
|
|
|
193
205
|
_uiManagerCommand(name) {
|
|
194
|
-
const
|
|
206
|
+
const uiManager = _reactNative.UIManager || _reactNative.NativeModules.UIManager;
|
|
195
207
|
const componentName = "RMFMarker";
|
|
196
208
|
|
|
197
|
-
if (!
|
|
209
|
+
if (!uiManager) {
|
|
210
|
+
return null;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
if (!uiManager.getViewManagerConfig) {
|
|
198
214
|
// RN < 0.58
|
|
199
|
-
|
|
215
|
+
const legacyConfig = uiManager[componentName];
|
|
216
|
+
return legacyConfig && legacyConfig.Commands ? legacyConfig.Commands[name] : null;
|
|
200
217
|
} // RN >= 0.58
|
|
201
218
|
|
|
202
219
|
|
|
203
|
-
|
|
220
|
+
const config = uiManager.getViewManagerConfig(componentName);
|
|
221
|
+
return config && config.Commands ? config.Commands[name] : null;
|
|
204
222
|
}
|
|
205
223
|
|
|
206
224
|
_mapManagerCommand(name) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["viewPropTypes","ViewPropTypes","View","propTypes","coordinate","PropTypes","shape","latitude","number","isRequired","longitude","draggable","bool","anchor","x","y","elevation","rotation","infoWindowAnchor","title","string","snippet","icon","uri","any","width","height","zIndex","visible","userData","object","onPress","func","onPressInfoWindow","onDragStart","onDrag","onDragEnd","MFMarker","React","Component","constructor","props","_onPress","bind","_ref","setCoordinate","location","_runCommand","setRotation","setTitle","setSnippet","setDraggable","setZIndex","setVisible","setInfoWindowAnchor","setElevation","setUserData","_getHandle","findNodeHandle","marker","name","args","Platform","OS","NativeModules","UIManager","dispatchViewManagerCommand","_uiManagerCommand","_mapManagerCommand","componentName","getViewManagerConfig","Commands","event","stopPropagation","ref","render","Image","resolveAssetSource","styles","style","RMFMarker","requireNativeComponent","StyleSheet","create","position"],"sources":["MFMarker.js"],"sourcesContent":["import PropTypes from 'prop-types';\nimport React from 'react';\nimport {ViewPropTypes} from 'deprecated-react-native-prop-types';\nimport {\n requireNativeComponent,\n StyleSheet,\n Platform,\n Image,\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 coordinate for the marker.\n */\n coordinate: PropTypes.shape({\n latitude: PropTypes.number.isRequired,\n longitude: PropTypes.number.isRequired,\n }).isRequired,\n\n /**\n * Default value is `false`\n */\n draggable: PropTypes.bool,\n\n /**\n * Sets the ground anchor point for the marker.\n */\n anchor: PropTypes.shape({\n x: PropTypes.number.isRequired,\n y: PropTypes.number.isRequired,\n }),\n\n /**\n * \n */\n elevation: PropTypes.number,\n\n /**\n * \n */\n rotation: PropTypes.number,\n\n /**\n * Sets the infor window anchor point for the marker.\n */\n infoWindowAnchor: PropTypes.shape({\n x: PropTypes.number.isRequired,\n y: PropTypes.number.isRequired,\n }),\n\n /**\n * The title of the marker.\n */\n title: PropTypes.string,\n\n /**\n * The snippet of the marker.\n */\n snippet: PropTypes.string,\n\n /**\n * Marker icon to render.\n */\n icon: PropTypes.shape({\n uri: PropTypes.any.isRequired,\n width: PropTypes.number.isRequired,\n height: PropTypes.number.isRequired,\n }),\n\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 marker\n */\n onPress: PropTypes.func,\n\n /**\n * Callback that is called when the user presses on the info window\n */\n onPressInfoWindow: PropTypes.func,\n\n /**\n * Callback that is called when the user initiates a drag on this marker (if it is draggable)\n */\n onDragStart: PropTypes.func,\n\n /**\n * Callback called continuously as the marker is dragged\n */\n onDrag: PropTypes.func,\n\n /**\n * Callback that is called when a drag on this marker finishes. This is usually the point you\n * will want to setState on the marker's coordinate again\n */\n onDragEnd: PropTypes.func,\n};\n\n\nclass MFMarker 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 setCoordinate(location) {\n this._runCommand(\"setCoordinate\", [location])\n }\n\n setRotation(rotation) {\n this._runCommand(\"setRotation\", [rotation])\n }\n\n setTitle(title) {\n this._runCommand(\"setTitle\", [title])\n }\n\n setSnippet(snippet) {\n this._runCommand(\"setSnippet\", [snippet])\n }\n\n setDraggable(draggable) {\n this._runCommand(\"setDraggable\", [draggable])\n }\n\n setZIndex(zIndex) {\n this._runCommand(\"setZIndex\", [zIndex])\n }\n\n setVisible(visible) {\n this._runCommand(\"setVisible\", [visible])\n }\n\n setInfoWindowAnchor(anchor) {\n this._runCommand(\"setInfoWindowAnchor\", [anchor])\n }\n\n setElevation(elevation) {\n this._runCommand(\"setElevation\", [elevation])\n }\n\n setUserData(userData) {\n this._runCommand(\"setUserData\", [userData])\n }\n\n _getHandle() {\n return findNodeHandle(this.marker);\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.getMapManagerCommand(name)(this._getHandle(), ...args);\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 = \"RMFMarker\";\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[`RMFMarker`][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.marker = ref;\n }\n\n render() {\n let icon = {};\n if (this.props.icon) {\n let uri = Image.resolveAssetSource(this.props.icon.uri) || {uri: this.props.icon.uri};\n icon = {uri: uri.uri, width: this.props.icon.width, height: this.props.icon.height}\n }\n return <RMFMarker\n {...this.props}\n icon={icon}\n ref={this._ref}\n style={[styles.marker, this.props.style]}\n onPress={this._onPress}\n />;\n }\n}\n\nMFMarker.propTypes = propTypes;\nvar RMFMarker = requireNativeComponent(`RMFMarker`, MFMarker);\n\nconst styles = StyleSheet.create({\n marker: {\n position: 'absolute'\n },\n});\n\nexport {MFMarker}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["viewPropTypes","ViewPropTypes","View","propTypes","coordinate","PropTypes","shape","latitude","number","isRequired","longitude","draggable","bool","anchor","x","y","elevation","rotation","infoWindowAnchor","title","string","snippet","icon","uri","any","width","height","zIndex","visible","userData","object","onPress","func","onPressInfoWindow","onDragStart","onDrag","onDragEnd","MFMarker","React","Component","constructor","props","_onPress","bind","_ref","setCoordinate","location","_runCommand","setRotation","setTitle","setSnippet","setDraggable","setZIndex","setVisible","setInfoWindowAnchor","setElevation","setUserData","_getHandle","findNodeHandle","marker","name","args","Platform","OS","UIManager","dispatchViewManagerCommand","commandId","_uiManagerCommand","_mapManagerCommand","uiManager","NativeModules","componentName","getViewManagerConfig","legacyConfig","Commands","config","event","stopPropagation","ref","render","Image","resolveAssetSource","styles","style","RMFMarker","requireNativeComponent","StyleSheet","create","position"],"sources":["MFMarker.js"],"sourcesContent":["import PropTypes from 'prop-types';\r\nimport React from 'react';\r\nimport {ViewPropTypes} from 'deprecated-react-native-prop-types';\r\nimport {\r\n requireNativeComponent,\r\n StyleSheet,\r\n Platform,\r\n Image,\r\n UIManager,\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 coordinate for the marker.\r\n */\r\n coordinate: PropTypes.shape({\r\n latitude: PropTypes.number.isRequired,\r\n longitude: PropTypes.number.isRequired,\r\n }).isRequired,\r\n\r\n /**\r\n * Default value is `false`\r\n */\r\n draggable: PropTypes.bool,\r\n\r\n /**\r\n * Sets the ground anchor point for the marker.\r\n */\r\n anchor: PropTypes.shape({\r\n x: PropTypes.number.isRequired,\r\n y: PropTypes.number.isRequired,\r\n }),\r\n\r\n /**\r\n * \r\n */\r\n elevation: PropTypes.number,\r\n\r\n /**\r\n * \r\n */\r\n rotation: PropTypes.number,\r\n\r\n /**\r\n * Sets the infor window anchor point for the marker.\r\n */\r\n infoWindowAnchor: PropTypes.shape({\r\n x: PropTypes.number.isRequired,\r\n y: PropTypes.number.isRequired,\r\n }),\r\n\r\n /**\r\n * The title of the marker.\r\n */\r\n title: PropTypes.string,\r\n\r\n /**\r\n * The snippet of the marker.\r\n */\r\n snippet: PropTypes.string,\r\n\r\n /**\r\n * Marker icon to render.\r\n */\r\n icon: PropTypes.shape({\r\n uri: PropTypes.any.isRequired,\r\n width: PropTypes.number.isRequired,\r\n height: PropTypes.number.isRequired,\r\n }),\r\n\r\n\r\n /**\r\n * zIndex\r\n */\r\n zIndex: PropTypes.number,\r\n\r\n /**\r\n * visible\r\n */\r\n 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 marker\r\n */\r\n onPress: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when the user presses on the info window\r\n */\r\n onPressInfoWindow: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when the user initiates a drag on this marker (if it is draggable)\r\n */\r\n onDragStart: PropTypes.func,\r\n\r\n /**\r\n * Callback called continuously as the marker is dragged\r\n */\r\n onDrag: PropTypes.func,\r\n\r\n /**\r\n * Callback that is called when a drag on this marker finishes. This is usually the point you\r\n * will want to setState on the marker's coordinate again\r\n */\r\n onDragEnd: PropTypes.func,\r\n};\r\n\r\n\r\nclass MFMarker 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 setCoordinate(location) {\r\n this._runCommand(\"setCoordinate\", [location])\r\n }\r\n\r\n setRotation(rotation) {\r\n this._runCommand(\"setRotation\", [rotation])\r\n }\r\n\r\n setTitle(title) {\r\n this._runCommand(\"setTitle\", [title])\r\n }\r\n\r\n setSnippet(snippet) {\r\n this._runCommand(\"setSnippet\", [snippet])\r\n }\r\n\r\n setDraggable(draggable) {\r\n this._runCommand(\"setDraggable\", [draggable])\r\n }\r\n\r\n setZIndex(zIndex) {\r\n this._runCommand(\"setZIndex\", [zIndex])\r\n }\r\n\r\n setVisible(visible) {\r\n this._runCommand(\"setVisible\", [visible])\r\n }\r\n\r\n setInfoWindowAnchor(anchor) {\r\n this._runCommand(\"setInfoWindowAnchor\", [anchor])\r\n }\r\n\r\n setElevation(elevation) {\r\n this._runCommand(\"setElevation\", [elevation])\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.marker);\r\n }\r\n\r\n\r\n _runCommand(name, args) {\r\n switch (Platform.OS) {\r\n case 'android': {\r\n if (!UIManager || typeof UIManager.dispatchViewManagerCommand !== 'function') {\r\n return;\r\n }\r\n\r\n const commandId = this._uiManagerCommand(name);\r\n if (commandId == null) {\r\n return;\r\n }\r\n\r\n UIManager.dispatchViewManagerCommand(this._getHandle(), commandId, args);\r\n break;\r\n }\r\n \r\n case 'ios':\r\n //this.getMapManagerCommand(name)(this._getHandle(), ...args);\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 = UIManager || NativeModules.UIManager;\r\n const componentName = \"RMFMarker\";\r\n\r\n if (!uiManager) {\r\n return null;\r\n }\r\n \r\n if (!uiManager.getViewManagerConfig) {\r\n // RN < 0.58\r\n const legacyConfig = uiManager[componentName];\r\n return legacyConfig && legacyConfig.Commands ? legacyConfig.Commands[name] : null;\r\n }\r\n \r\n // RN >= 0.58 \r\n const config = uiManager.getViewManagerConfig(componentName);\r\n return config && config.Commands ? config.Commands[name] : null;\r\n }\r\n \r\n _mapManagerCommand(name) {\r\n return NativeModules[`RMFMarker`][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.marker = ref;\r\n }\r\n\r\n render() {\r\n let icon = {};\r\n if (this.props.icon) {\r\n let uri = Image.resolveAssetSource(this.props.icon.uri) || {uri: this.props.icon.uri};\r\n icon = {uri: uri.uri, width: this.props.icon.width, height: this.props.icon.height}\r\n }\r\n return <RMFMarker\r\n {...this.props}\r\n icon={icon}\r\n ref={this._ref}\r\n style={[styles.marker, this.props.style]}\r\n onPress={this._onPress}\r\n />;\r\n }\r\n}\r\n\r\nMFMarker.propTypes = propTypes;\r\nvar RMFMarker = requireNativeComponent(`RMFMarker`, MFMarker);\r\n\r\nconst styles = StyleSheet.create({\r\n marker: {\r\n position: 'absolute'\r\n },\r\n});\r\n\r\nexport {MFMarker}\r\n"],"mappings":"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"}
|