我想知道是否可以在我自己的应用程序中从Google Maps API中绘制路线。
例如,这个解决方案:
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);
将启动Google地图应用程序并开始在该应用程序中导航。是否可以相同,但在我的MapFragment
对象或GoogleMap
对象中绘制该路线?
我阅读了官方文档:
https://developers.google.com/maps/documentation/android/
并且没有提到MapFragment
内可以导航,但也没有提到它是不可能的..