在Android中以编程方式从google map api获取文本方向

时间:2016-02-28 11:55:12

标签: android google-maps google-maps-api-3

我不想从一个地方到另一个地方画路线。我是否有可能只能获取文字方向 喜欢javascript api google javascript api

1 个答案:

答案 0 :(得分:1)

使用Google Map Intent。这使用官方地图应用程序。

    Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
    Uri.parse("http://maps.google.com/maps?"+
        “saddr=location_start”+
        "daddr=location_end"));
intent.setClassName("com.google.android.apps.maps",
"com.google.android.maps.MapsActivity");
startActivity(intent)
  

意图允许您通过描述您想要执行的简单操作(例如"显示地图"或"显示前往机场的路线&#34)在另一个应用中启动活动;)在Intent对象中。

有关详细信息,请参阅此link

但是如果您只想要一个文本结果并且不想调用官方地图应用程序,那么请使用Maps Direction API