我正在使用这个示例,我想将 Google EARTH 设置为默认视图。
问问题
432 次
1 回答
2
使用 setMapType 设置所需的 mapType:
map.setMapType(G_SATELLITE_3D_MAP);
<edit>
:
链接的示例使用 Maps-API V2,对于 V3,它有点不同。等待地图的空闲事件并将其设置mapType
为 'GoogleEarthAPI' 。
转到文档的第 116 行并修改它:
if (isGEinstalled)
{
googleEarth = new GoogleEarth(map);
//add the following line
google.maps.event.addListenerOnce(map,'idle',function(){map.setMapTypeId('GoogleEarthAPI')});
}
else
{
alert("O plugin de Google Earth não está instalado");
}
于 2013-08-22T10:27:25.373 回答