我正在使用此Example,我想将Google EARTH设置为默认视图。
答案 0 :(得分: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");
}