react google maps do i have to give center to the mao code example
Example: react google maps get map center
import React, { useState } from 'react';
import { GoogleMap, LoadScript } from '@react-google-maps/api';
import mapStyle from './mapStyle';
const mapContainerStyle = {
height: "300px",
width: "100%"
};
const FormMap = () => {
const [mapRef, setMapRef] = useState(null);
const [center, setCenter] = useState({ lat: 48.1467112, lng: 17.1385319 });
const [clickedLatLng, setClickedLatLng] = useState(null);
return (
<>
<LoadScript
id="form-map"
googleMapsApiKey={process.env.REACT_APP_GOOGLE_MAPS_API_KEY}
version="weekly"
>
<GoogleMap
id="form-map"
onLoad={map => setMapRef(map)}
onClick={e => setClickedLatLng(e.latLng.toJSON())}
zoom={14}
center={center}
onCenterChanged={() => setCenter(mapRef.getCenter().toJSON())}
mapContainerStyle={mapContainerStyle}
clickableIcons
options={{
disableDefaultUI: true,
styles: mapStyle,
}}
>
</GoogleMap>
</LoadScript>
{}
<h3>
Center {center.lat}, {center.lng}
</h3>
{}
{clickedLatLng && (
<h3>
You clicked: {clickedLatLng.lat}, {clickedLatLng.lng}
</h3>
)}
</>
)
}
export default FormMap;