0

https://developers.google.com/maps/documentation/android/lines doc 说通过".geodesic(true)"选择,它将遵循地球的曲率。但它只是显示一条直线。有什么建议么?

4

1 回答 1

0

试试这个代码

   String uri = "http://maps.google.com/maps?saddr=" +
   currentLatitude+","+currentLongitude+"&daddr="+fixedLatitude+","+fixedLongitude;
   Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
    Uri.parse(uri)); intent.setClassName("com.google.android.apps.maps",
    "com.google.android.maps.MapsActivity"); startActivity(intent);

这可能对你有帮助

于 2013-01-02T12:15:58.667 回答