我尝试在Direction
生成的相应infoWindow中显示道路网络信息渲染marker.E.g标记A单击infoWindow时包含从A到B的所有细节。
此外,在源和目的地之间显示了一系列航路点。
InfoWindow弹出窗口中未显示信息。这是代码的一部分。任何提示可能
帮助谢谢。
directionsService.route(request, function (response, status) {
if (status == google.maps.DirectionsStatus.OK) {
var roadInfo = document.getElementById("directionsPanel");
roadInfo.innerHTML="<b>"+response.routes[0].roadInfo+"</b>";
directionDisplay.setDirections(response);
var myRoute = response.routes[0].legs[0];
google.maps.event.addListener(request, 'click', function() {
// Open an info window when the marker is clicked on,
// containing the text of the step.
displayStep.setContent(request,myRoute.steps[i].instructions);
});
答案 0 :(得分:0)
你能做什么:压制标记和infoWindow并创建你自己的标记。