如何在谷歌地图iframe中将“Google地球插件”视图设置为默认值?

时间:2013-08-21 18:04:20

标签: google-maps iframe google-earth google-earth-plugin

我正在使用此Example,我想将Google EARTH设置为默认视图。

1 个答案:

答案 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");
}