标签: java android eclipse google-api
默认地图视图提供标准模式,当mapView.setSattelite(true)地图视图转为卫星和标准的混合模式时,我想在地图视图中仅显示卫星模式。
mapView.setSattelite(true)
答案 0 :(得分:2)
试试这个......:
在onCreate Method中插入此检查。
if(!mapView.isSatelliteView()) mapView.setSatellite(true);
希望这会有所帮助。 干杯