Функция прокладки маршрута в google map:
this.directionsService.route({
origin: "Москва",
destination: $('#address_to').val(),
waypoints: waypts,
optimizeWaypoints: true,
travelMode: 'DRIVING'
}, (response, status) => {
if (status === 'OK') {
// marker.setMap(null);
this.directionsDisplay.setDirections(response);
return true;
} else {
return false;
}
});
Как сделать так чтоб js подождал когда выполнится эта часть
(response, status) => {
if (status === 'OK') {
// marker.setMap(null);
this.directionsDisplay.setDirections(response);
return true;
} else {
return false;
}
})