我正在开发一个 android 应用程序,我想在其中标记一些地方,然后跟踪它们的黑白路径。就像我从A开始我的旅程并标记它,然后去Band标记那个,然后是C,最后当我到达我的最终目的地时。然后我想从ABC追踪路径......我尝试了很多,发现我可以使用url意图通过动态传递lat-long来做到这一点,但我想在运行时标记随机位置......现在我正在使用这个。
String uri = "http://maps.google.com/maps?f=d&source=s_d&saddr=" + 30.7353 +","+76.7911+"&daddr="+12.9833+","+ 77.5833+"+to:"+22.5697+","+88.3697;
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);
请帮帮我。感谢。