是否有任何API可以确定谷歌地图2点之间的距离?

时间:2016-08-09 08:23:28

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

我想通过Google地图确定2点之间的距离。 这两点由其地址给出。我可以使用任何API用于此目的吗?

例如,我将2个地址发送到http://example.com/address1/address2之类的URI,它将返回一个类似

的JSON
{
    'from'         :address1,
    'to'           :address2,
    'distanceByBus':100,
    'straight'     :50
}

1 个答案:

答案 0 :(得分:1)

有 - Google Distance Matrix API

  

Google Maps Distance Matrix API是一项服务,根据建议的起点和终点之间的路线,为起点和终点矩阵提供行程距离和时间。

网址示例:

https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=Washington,DC&destinations=New+York+City,NY&key=YOUR_API_KEY

JSON返回值

{
   "destination_addresses" : [ "New York, NY, USA" ],
   "origin_addresses" : [ "Washington, DC, USA" ],
   "rows" : [
      {
         "elements" : [
            {
               "distance" : {
                  "text" : "225 mi",
                  "value" : 361715
               },
               "duration" : {
                  "text" : "3 hours 49 mins",
                  "value" : 13725
               },
               "status" : "OK"
            }
         ]
      }
   ],
   "status" : "OK"
}