我发现了一些有用的SO问题,但我需要一个完整的参考指南来介绍这个api及其url参数。
被修改
intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?" + "saddr="
+ journey.getSourceGPSX() + ","
+ journey.getSourceGPSY() + "&daddr="
+ journey.getDestinationGPSX() + ","
+ journey.getDestinationGPSY()));
intent.setClassName("com.google.android.apps.maps",
"com.google.android.maps.MapsActivity");
答案 0 :(得分:1)
这里有一个完整的API参考:
https://developers.google.com/maps/
Android就在这里:
https://developers.google.com/maps/documentation/android/
您可能会在这里找到一堆有用的网络服务:
https://developers.google.com/maps/documentation/webservices/
这就是你要找的东西吗?
答案 1 :(得分:1)
我不确定我是否真的将其归类为API,您只是引用了一个URI。除了Google支持的各种格式的源和目标之外,我认为除了Google的各种格式的源和目标之外,还有其他许多方法可以将查询参数传递给该URI。例如,这篇文章提到了几种不同的格式:
is there a way to pass arguments to google map's get directions functionality?
但除此之外我不认为你错过了任何“隐藏的”。