在 Google-maps-v3 方向 API 中传递 LatLng 值
Posted
技术标签:
【中文标题】在 Google-maps-v3 方向 API 中传递 LatLng 值【英文标题】:Passing LatLng values in Google-maps-v3 directions API 【发布时间】:2014-02-17 20:37:40 【问题描述】:如何在 Directions API by Google 的请求参数中为 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
;
【问题讨论】:
使用文档中指定的google.maps.LatLng。 【参考方案1】:您应该能够使用新的 Google 纬度/经度对。例如:
origin: new google.maps.LatLng(51.2244, -12.12221)
【讨论】:
我已经试过了,但是我给出了一个错误的 LatLng 值。它现在工作以上是关于在 Google-maps-v3 方向 API 中传递 LatLng 值的主要内容,如果未能解决你的问题,请参考以下文章
canvas API 如何改变画圆起点,为啥老是从3点钟方向开始画,我要画空心圆,从6点钟方向开始画