1
如何打開地圖到默認位置?從本質上講,我想要一個按鈕來打開谷歌地圖,就像它從應用程序菜單啓動它時打開的一樣,它將焦點集中在當前位置。沒有方向或導航或任意座標。下面是我到目前爲止,顯然它試圖打開導航從一個點到另一個。謝謝你的幫助。用按鈕打開谷歌地圖到當前位置
mapButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String uri = "http://maps.google.com/maps?saddr=" + "9982878"
+ "," + "76285774" + "&daddr=" + "9992084" + ","
+ "76286455";
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(null));
intent.setClassName("com.google.android.apps.maps",
"com.google.android.maps.MapsActivity");
startActivity(intent);
}
完美,謝謝! –