react-native-mapsforge-vtm
Version:
React Native components to build vector maps using Mapsforges fork of vtm. Offline rendering of OpenStreetMap data. Android only
19 lines (15 loc) • 476 B
JavaScript
;
/**
* External dependencies
*/
import { requireNativeComponent, UIManager } from 'react-native';
/**
* Internal dependencies
*/
import { LINKING_ERROR } from "../constants.js";
const ComponentName = 'MapViewManager';
const MapViewManager = UIManager.getViewManagerConfig(ComponentName) != null ? requireNativeComponent(ComponentName) : () => {
throw new Error(LINKING_ERROR);
};
export default MapViewManager;
//# sourceMappingURL=MapViewManager.js.map