forked from summer-wu/react-native-baidu-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
25 lines (21 loc) · 743 Bytes
/
index.js
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
/**
* Copyright (c) 2016-present, lovebing.org.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import {
NativeModules
} from 'react-native';
import _MapView from './js/MapView';
import _MapTypes from './js/MapTypes';
import _Geolocation from './js/Geolocation';
import _GetDistance from './js/GetDistance';
import _Overlay from './js/Overlay/index';
export const MapView = _MapView;
export const MapTypes = _MapTypes;
export const Geolocation = _Geolocation;
export const GetDistance = _GetDistance;
export const Overlay = _Overlay;
export const MapApp = NativeModules.BaiduMapAppModule;
export const BaiduMapManager = NativeModules.BaiduMapManager;