我想重现以下示例中的示例: https://developers.google.com/maps/documentation/javascript/examples/maptype-image
带有react-google-maps。 它似乎没有相同的类google.maps.ImageMapType。 您是否知道是否有可以帮助我的课程,或者是否有人已经为我提供了示例?
<GoogleMap
className="maps"
defaultZoom={17}
defaultCenter={{ lat: 46.215951, lng: 12.306994 }}
defaultMapTypeId="moon"
defaultExtraMapTypes={[{id:"moon", mapType:{
getTileUrl: function(coord, zoom) {
return "mw1.google.com/mw-planetary/lunar/lunarmaps_v1/clem_bw/1/1/0.jpg";
},
maxZoom: 9,
minZoom: 0,
radius: 1738000,
name: 'Moon'
}}]}
defaultOptions={{
// these following 7 options turn certain controls off see link below
streetViewControl: false,
scaleControl: false,
mapTypeControl: false,
panControl: false,
zoomControl: false,
rotateControl: false,
fullscreenControl: false
}}
disableDefaultUI>
我尝试做类似的事情
答案 0 :(得分:0)
我找到了窍门。 我像示例show一样创建const ImageMapType并将其导出。
在我的地图组件中,我使用以下属性:
defaultOptions={{
maxZoom: 18,
mapTypeControlOptions: {
mapTypeIds: ['moon','satellite']
}
}}
mapTypeId={google ? 'moon' : 'satellite'}
defaultExtraMapTypes={[
['moon', mapStyles ]
]}
将其链接到地图。 defaultExtraMapTypes替换Google API中的map.set。