在Google-maps-v3说明API中传递LatLng值

时间:2014-02-17 20:37:40

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

如何在Google的Directions API的请求参数中传递Origin / Destination参数的LatLng值。

访问此链接: Google map driving direction source code for their example?

  var request = {
   origin: 'Chicago', // Here I want to add a latitude and Longitude value 
   destination: 'New York',
   travelMode: google.maps.DirectionsTravelMode.DRIVING
  };

1 个答案:

答案 0 :(得分:0)

您应该只能使用新的Google lat / lng对。例如:

origin: new google.maps.LatLng(51.2244, -12.12221)