在Google地图方向api上仅显示目标中的坐标而不是完整地址

时间:2017-04-24 07:34:57

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

我正在使用谷歌地图javacscript api进行指导。我可以知道如何在目的地的坐标上显示而不是方向面板上的完整地址吗?

1 个答案:

答案 0 :(得分:1)

您可以在Google Directions API响应

的支路内找到开始和结束位置
         "legs" : [
        {
           "distance" : {
              "text" : "9.7 mi",
              "value" : 15653
           },
           "duration" : {
              "text" : "25 mins",
              "value" : 1480
           },
           "end_address" : "1 MetLife Stadium Dr, East Rutherford, NJ 07073, USA",
           "end_location" : {
              "lat" : 40.814505,
              "lng" : -74.07272910000002
           },
           "start_address" : "75 Ninth Ave, New York, NY 10011, USA",
           "start_location" : {
              "lat" : 40.7428759,
              "lng" : -74.00584719999999
           }]

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