我无法使用新版本的 api 在两个地方之间绘制正确的路线?..经过大量研究后,我发现通过使用方向 api 之外的折线数据会对我有所帮助,而且确实如此我能够画出来。但是它通过添加一条直线来避免轻微的转弯。我怎样才能画出正确的路径?..
问问题
845 次
1 回答
0
尝试这个,
final Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://maps.google.com/maps?" + "saddr=" + source_lat
+ "," + source_lon + "&daddr=" + destination_lat + ","+ destination_lat));
intent.setClassName("com.google.android.apps.maps",
"com.google.android.maps.MapsActivity");
((Activity) this).startActivity(intent);
于 2013-03-04T12:35:08.160 回答