0
現在,我啓動與以下調用谷歌地圖應用程序:Android地圖意圖 - 額外的參數
String geoAddress = "maps.google.com/maps?q=";
geoAddress += LatLong[0] + "," + LatLong[1];
Intent i = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(geoAddress));
startActivity(i);
將打開並放置一個標記在地圖上的指定位置。我有兩個問題:
1)我如何可以將多個標記,而我有/緯度?
2)如何啓動地圖應用程序到其他模式(terrain/satellite/etc)?
謝謝!
http://developer.android.com/resources/tutorials/views/hello-mapview.html。這是鏈接丟棄鏈接 – Abhi
謝謝我要探索一下。 – RedLeader
是的,閱讀並嘗試,你會得到它 – Abhi