Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想显示谷歌地图中两个点的指定来源和目的地(通过经纬度)的方向。
我进行了很多搜索,但在我得到的几个答案中存在很多混乱。
有没有简单的方法来显示从一个指定的经纬度点到另一个指定的经纬度点的地图方向。
谢谢,大卫
另一种在谷歌地图上显示根的替代方法是。
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345")); startActivity(intent);
这里的saddr 表示源地址的经纬度,daddr 表示目标地址的纬度和经度。我希望它对你有帮助..