使用Google Maps API v2获取行车路线

我正在尝试获得两个位置之间的行驶方向:

LatLng(12.917745600000000000,77.623788300000000000)

LatLng(12.842056800000000000,7.663096499999940000)

我尝试过的代码:

Polyline line = mMap.addPolyline(new PolylineOptions().

add(new LatLng(12.917745600000000000,77.623788300000000000),

new LatLng(12.842056800000000000,7.663096499999940000))

.width(5).color(Color.RED));

但这在两点之间画了一条直线。

还有其他方法/方式来获取这两点之间的行驶方向。

回答:

这就是我正在使用的

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 

Uri.parse("http://maps.google.com/maps?saddr="+latitude_cur+","+longitude_cur+"&daddr="+latitude+","+longitude));

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

intent.addCategory(Intent.CATEGORY_LAUNCHER );

intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");

startActivity(intent);

以上是 使用Google Maps API v2获取行车路线 的全部内容, 来源链接: utcz.com/qa/416063.html

回到顶部