0

我想通过选择图像中提到的对话框将地图从卫星视图更改为交通视图

4

1 回答 1

0

你可以实现它如下。

看看这个

 //set Satellite view
m_mapView.setSatellite(true);
m_mapView.setTraffic(false);          


//set trafic view
m_mapView.setSatellite(false);
m_mapView.setTraffic(true);
于 2012-05-28T10:52:37.237 回答