mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-18 18:10:16 -04:00
18 lines
389 B
TypeScript
18 lines
389 B
TypeScript
import GoogleMapReact from 'google-map-react';
|
|
|
|
const position = { lat: 39.043758, lng: -77.487442 };
|
|
|
|
export default function PoolMap() {
|
|
return (
|
|
<div style={{ height: '50vh', width: '100%' }}>
|
|
<GoogleMapReact
|
|
bootstrapURLKeys={{
|
|
key: 'AIzaSyDUnWIrt-H4RuP2YFLpVPz4oAjBhpOOoyI',
|
|
}}
|
|
defaultCenter={position}
|
|
defaultZoom={11}
|
|
></GoogleMapReact>
|
|
</div>
|
|
);
|
|
}
|