mirror of
https://github.com/google-map-react/google-map-react.git
synced 2025-12-08 18:26:32 +00:00
24 lines
369 B
JavaScript
24 lines
369 B
JavaScript
import GoogleMap from './google_map';
|
|
|
|
import {
|
|
convertNeSwToNwSe,
|
|
convertNwSeToNeSw,
|
|
fitBounds,
|
|
meters2ScreenPixels,
|
|
tile2LatLng,
|
|
latLng2Tile,
|
|
getTilesIds,
|
|
} from './lib';
|
|
|
|
Object.assign(GoogleMap, {
|
|
convertNeSwToNwSe,
|
|
convertNwSeToNeSw,
|
|
fitBounds,
|
|
meters2ScreenPixels,
|
|
tile2LatLng,
|
|
latLng2Tile,
|
|
getTilesIds,
|
|
});
|
|
|
|
export default GoogleMap;
|