0

画像に記載されているダイアログを選択して、マップをsateliteViewからTrafficViewに変更したい

4

1 に答える 1

0

you can achieve it as following.

check out this

 //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 に答える