我正在使用 DirectionRenderer(gmap3) 来显示用户方向。问题是即使找不到完全匹配,它也会显示匹配。例如:SomeFakePlace,myRealCity 将匹配 myRealCity,即使它无法匹配 SomeFakePlace。
因此,它显示了从城市中心到该地点的方向。目的地是固定的(myLatLng)
如果找不到路线,我希望它返回 null 并且不显示路线。我有不错的错误显示来处理这个问题。
$("#map-canvas-single").gmap3({
getroute:{
options:{
origin:$("#directions-from").val(),
destination:myLatlng,
travelMode: google.maps.DirectionsTravelMode.DRIVING
},
callback: function(results){
console.log(results);
var point= results.routes[0].overview_path[0]
window.directionMarker = new google.maps.Marker({
position: new google.maps.LatLng(point.jb,point.kb),
title:$("#directions-from").val(),
//icon:"http://maps.google.com/mapfiles/ms/icons/<?php if($this->listing->type=="pg"):?>green<?php else: ?>purple<?php endif;?>-dot.png"
});
window.directionMarker.setMap($(this).gmap3("get"));
if(!results)
noty({text:"Place not found!",type:"error"});
else
{
$(this).gmap3({
directionsrenderer:{
container: $("#directions-container"),
id:"directions",
options:{
directions:results,
suppressMarkers :true //<<Look here>>
}
}
});
}
}
}
});
代码工作正常。我认为这是方向渲染器服务的错,而不是 gmaps。我确信 htere 必须是完全匹配的某个参数