如何在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
};
答案 0 :(得分:0)
您应该只能使用新的Google lat / lng对。例如:
origin: new google.maps.LatLng(51.2244, -12.12221)