I am not seeing the zoom +/-, Map/Satellite and the Human icon on the map. I am following the steps as specified in the documentation. Is there any specific props I have to pass? Or is there an outstanding issue? Thanks for any help.
Here is snippet of what my GoogleMap component looks like -
*
withScriptjs(
withGoogleMap(() => {
return (<GoogleMap
// google={google}
defaultZoom={8}
center={selectedAirportPos}
// center={{lat: 39.996944444444445, lng: -82.89194444444445 }}
// defaultCenter={{ lat: -34.397, lng: 150.644 }}
defaultOptions={{
// defaultCenter: {lat: -34.397, lng: 150.644 },
disableDefaultUI: true,
mapTypeId: 'terrain',//google.maps.MapTypeId.TERRAIN,
}}
>
<GMapsAirportMarker
withInfoWindow={allMarkersState[selectedAirport.id]}
withInfoWindowContent={this.selectedInfoWindowContent(selectedAirport)}
position={selectedAirportPos}
icon
*