I have a map that I want to put a planned route and a traveled route on using the Google Maps Route API.
我有一张地图,我希望使用Google Maps Route API设置计划路线和行驶路线。
What I am doing is getting the legs of the planned route and adding those to the map. The route color is gray for that. Then I add the traveled route which is usually on top of the planned route. That route color is blue. I set the opacity of the planned route to 1 and the traveled route to .75.
我正在做的是获取计划路线的腿并将其添加到地图中。路线颜色为灰色。然后我添加通常在计划路线之上的行进路线。该路线颜色为蓝色。我将计划路线的不透明度设置为1,将行程路线设置为0.75。
Sometimes when the page loads, the planned route is on top and sometimes the traveled route is. I guess it's fetching the data from Google and it doesn't come back in order because of the nature of Javascript.
有时,当页面加载时,计划的路线位于顶部,有时是行进的路线。我猜它是从谷歌获取数据,由于Javascript的性质,它不会按顺序返回。
What I am looking for is to always make the planned route load before the traveled. My plan is to listen for an event and use a promise.
我正在寻找的是在旅行之前总是计划路线负荷。我的计划是听一个事件并使用一个承诺。
What events should I listen for?
我应该听哪些事件?
1 个解决方案
#1
0
The only event available on the DirectionsRenderer is directions_changed:
DirectionsRenderer上唯一可用的事件是directions_changed:
Events
活动
directions_changed | Arguments: None
directions_changed |参数:无
This event is fired when the rendered directions change, either when a new DirectionsResult is set or when the user finishes dragging a change to the directions path.
当渲染的方向发生变化时,无论是设置了新的DirectionsResult还是用户完成将更改拖动到路径路径时,都会触发此事件。
概念证明小提琴
code snippet:
代码段:
var map;
var directionsService;
var directionsDisplays = [];
function initMap() {
directionsService = new google.maps.DirectionsService;
map = new google.maps.Map(document.getElementById('map'), {
zoom: 7,
center: {
lat: 41.85,
lng: -87.65
}
});
var directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplays.push(directionsDisplay);
calculateAndDisplayRoute("New York, NY", "Los Angeles, CA", {
strokeWeight: 8,
strokeOpacity: 1.0,
strokeColor: "white"
}, true);
// directionsDisplay.setMap(map);
google.maps.event.addListener(directionsDisplays[0], 'directions_changed', function() {
var directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplays.push(directionsDisplay);
calculateAndDisplayRoute("New York, NY", "Denville,NJ", {
strokeWeight: 4,
strokeOpacity: 0.5,
strokeColor: "blue"
}, false);
});
}
function calculateAndDisplayRoute(start, end, options, preserveViewport) {
directionsService.route({
origin: start,
destination: end,
travelMode: 'DRIVING'
}, function(response, status) {
if (status === 'OK') {
directionsDisplays[directionsDisplays.length - 1].setOptions({
map: map,
polylineOptions: options,
preserveViewport: preserveViewport
});
directionsDisplays[directionsDisplays.length - 1].setDirections(response);
} else {
window.alert('Directions request failed due to ' + status);
}
});
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
#floating-panel {
position: absolute;
top: 10px;
left: 25%;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
text-align: center;
font-family: 'Roboto', 'sans-serif';
line-height: 30px;
padding-left: 10px;
}
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer src="https://maps.googleapis.com/maps/api/js?callback=initMap">
</script>
#1
0
The only event available on the DirectionsRenderer is directions_changed:
DirectionsRenderer上唯一可用的事件是directions_changed:
Events
活动
directions_changed | Arguments: None
directions_changed |参数:无
This event is fired when the rendered directions change, either when a new DirectionsResult is set or when the user finishes dragging a change to the directions path.
当渲染的方向发生变化时,无论是设置了新的DirectionsResult还是用户完成将更改拖动到路径路径时,都会触发此事件。
概念证明小提琴
code snippet:
代码段:
var map;
var directionsService;
var directionsDisplays = [];
function initMap() {
directionsService = new google.maps.DirectionsService;
map = new google.maps.Map(document.getElementById('map'), {
zoom: 7,
center: {
lat: 41.85,
lng: -87.65
}
});
var directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplays.push(directionsDisplay);
calculateAndDisplayRoute("New York, NY", "Los Angeles, CA", {
strokeWeight: 8,
strokeOpacity: 1.0,
strokeColor: "white"
}, true);
// directionsDisplay.setMap(map);
google.maps.event.addListener(directionsDisplays[0], 'directions_changed', function() {
var directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplays.push(directionsDisplay);
calculateAndDisplayRoute("New York, NY", "Denville,NJ", {
strokeWeight: 4,
strokeOpacity: 0.5,
strokeColor: "blue"
}, false);
});
}
function calculateAndDisplayRoute(start, end, options, preserveViewport) {
directionsService.route({
origin: start,
destination: end,
travelMode: 'DRIVING'
}, function(response, status) {
if (status === 'OK') {
directionsDisplays[directionsDisplays.length - 1].setOptions({
map: map,
polylineOptions: options,
preserveViewport: preserveViewport
});
directionsDisplays[directionsDisplays.length - 1].setDirections(response);
} else {
window.alert('Directions request failed due to ' + status);
}
});
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
#floating-panel {
position: absolute;
top: 10px;
left: 25%;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
text-align: center;
font-family: 'Roboto', 'sans-serif';
line-height: 30px;
padding-left: 10px;
}
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer src="https://maps.googleapis.com/maps/api/js?callback=initMap">
</script>