得到Android的方向和导航

时间:2012-03-18 16:47:33

标签: android google-maps

如何在API2上使用google-maps来导航到指定位置 我已添加搜索标签以获取地点 但无法导航到它

1 个答案:

答案 0 :(得分:2)

我在我的应用程序中使用了以下代码,运行正常。

在这里,

saddr =源地址(lat,lng)

daddr =目的地地址(lat,lng)

请注意,您也可以传递地址字符串而不是lat / lng。

public void showDirections(View view) {
        final Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://maps.google.com/maps?" + "saddr="+ latitude + "," + longitude + "&daddr=" + latitude + "," + longitude));
        intent.setClassName("com.google.android.apps.maps","com.google.android.maps.MapsActivity");
        startActivity(intent);
    }

希望这会有所帮助......