react-native-android-map
Version:
Baidu Map SDK modules and view for React Native(Android), support react native 0.40+.
23 lines (19 loc) • 498 B
JavaScript
import {
requireNativeComponent,
View,
NativeModules,
Platform,
DeviceEventEmitter
} from 'react-native';
import React, {
Component,
PropTypes
} from 'react';
import _MapTypes from './js/MapTypes';
import _MapView from './js/MapView';
import _MapModule from './js/MapModule';
import _Geolocation from './js/Geolocation';
export const MapTypes = _MapTypes;
export const MapView = _MapView;
export const MapModule = _MapModule;
export const Geolocation = _Geolocation;