mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-31 21:11:09 +00:00
14 lines
293 B
JavaScript
14 lines
293 B
JavaScript
import { NativeModules } from 'react-native';
|
|
import MapView from './components/MapView';
|
|
import * as geoUtils from './utils/geoUtils';
|
|
|
|
let MapboxGL = { ...NativeModules.MGLModule };
|
|
|
|
// components
|
|
MapboxGL.MapView = MapView;
|
|
|
|
// utils
|
|
MapboxGL.geoUtils = geoUtils;
|
|
|
|
export default MapboxGL;
|