我正在尝试使用来自服务器端的google maps api中的函数(使用node.js) https://developers.google.com/maps/documentation/javascript/geometry#poly 我想知道点到A点到点B之间的点是否在谷歌地图方向上。
isLocationOnEdge(point:LatLng, poly:Polygon|Polyline, tolerance?:number)
我在google地图文档中使用了示例代码,并添加了console.log语句。但是,它没有向控制台输出任何内容。
function initialize() {
var mapOptions = {
zoom: 5,
center: new google.maps.LatLng(24.886, -70.269),
mapTypeId: google.maps.MapTypeId.TERRAIN
};
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var cascadiaFault = new google.maps.Polyline({
paths: [
new google.maps.LatLng(49.95, -128.1),
new google.maps.LatLng(46.26, -126.3),
new google.maps.LatLng(40.3, -125.4)
]
});
var myPosition = new google.maps.LatLng(43.0, -125.9, 10e-7);
console.log('google.maps.geometry.poly.isLocationOnEdge(myPosition, cascadiaFault))');
}
另一个堆栈溢出问题说使用在http请求中包含此url http://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry&sensor=TRUE_OR_FALSE但我知道我需要以某种方式实际包含islocationonedge参数。 我应该要求 http://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry&sensor=TRUE_OR_FALSE&islocationonedge(point:latlong,折线:[adfasd,sdfs,adfasdf,adfasd],0.0001)?
非常感谢你的帮助
答案 0 :(得分:1)
我会这样试试: