forked from fenglu09/react-native-amap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
29 lines (28 loc) · 779 Bytes
/
index.js
File metadata and controls
29 lines (28 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import MapView from './components/maps/MapView'
import Marker from './components/maps/Marker'
import Polyline from './components/maps/Polyline'
import Polygon from './components/maps/Polygon'
import Circle from './components/maps/Circle'
import MultiPoint from './components/maps/MultiPoint'
import Navigation from './components/navigation'
import MapUtils from './components/Utils'
import RNLocation from "./components/location/index";
import POISearch from './components/maps/POISearch';
MapView.Marker = Marker
MapView.Polyline = Polyline
MapView.Polygon = Polygon
MapView.Circle = Circle
MapView.MultiPoint = MultiPoint
export default MapView
export {
MapView,
Marker,
Polyline,
Polygon,
Circle,
MultiPoint,
Navigation,
MapUtils,
RNLocation,
POISearch
}