Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过选择图像中提到的对话框将地图从卫星视图更改为交通视图
你可以实现它如下。
看看这个
//set Satellite view m_mapView.setSatellite(true); m_mapView.setTraffic(false); //set trafic view m_mapView.setSatellite(false); m_mapView.setTraffic(true);