如何获取 Android 中某个地点的方向

How to get the direction for a place in Android

我正在创建一个 Android 应用程序,我需要 string/JSON/XML 或任何原始格式的特定地点的方向,这样我就可以引导用户前往该地点而无需离开我的应用。我将非常感谢任何答案。

您可以通过 Directions API 来自 Google 地图 的方式实现。我不确定您的要求,但一般来说,步骤如下:

  1. 提出请求:

https://maps.googleapis.com/maps/api/directions/outputFormat?parameters

  1. 指定 JSON 作为您的输出格式。

https://maps.googleapis.com/maps/api/directions/json?parameters

  1. 为您的请求提供参数,例如 origindestination 和您的 API key:

https://maps.googleapis.com/maps/api/directions/jsonorigin=Toronto&destination=Montreal&key=YOUR_API_KEY