ズーム +/-、マップ/サテライト、および人間のアイコンがマップに表示されません。ドキュメントに記載されている手順に従っています。私が渡さなければならない特定の小道具はありますか?それとも未解決の問題がありますか?助けてくれてありがとう。
これは、私の GoogleMap コンポーネントがどのように見えるかのスニペットです -
*
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
*