GOOGLE MAPS - V?RIOS WAYPOINTS
Olá pessoal!!
Meu código abaixo funciona perfeitamente se eu utilizar 1 waypoints, mas quando coloco mais de um dá um erro em uma fórmula (f=_.Kg.j(a.j,vW)) do directions.js(dynamic)
Ex:
InÃcio = [Ô]Centro, Ponte Nova, MG[Ô]
Pontos = [Ô]Centro, Mariana, MG;Centro, Ouro Preto, MG[Ô]
Destino = [Ô]Centro, Belo Horizonte, MG[Ô]
Onde tá o erro gente??!!!
Meu código abaixo funciona perfeitamente se eu utilizar 1 waypoints, mas quando coloco mais de um dá um erro em uma fórmula (f=_.Kg.j(a.j,vW)) do directions.js(dynamic)
Ex:
InÃcio = [Ô]Centro, Ponte Nova, MG[Ô]
Pontos = [Ô]Centro, Mariana, MG;Centro, Ouro Preto, MG[Ô]
Destino = [Ô]Centro, Belo Horizonte, MG[Ô]
function Rota(Inicio, Pontos, Destino) {
var map = new google.maps.Map(document.getElementById([ô]mapArea[ô]), {
center: Inicio,
zoom: 20
});
var directionsDisplay = new google.maps.DirectionsRenderer({
map: map
});
var ArrayPontos = Pontos.split([Ô];[Ô])
var i = 0
var waypts = [];
for (i = 0; i < ArrayPontos.length; i++) {
waypts.push({
location: ArrayPontos[i].value,
});
}
var request = {
destination: Destino,
origin: Inicio,
waypoints: waypts,
travelMode: google.maps.TravelMode.DRIVING
};
var directionsService = new google.maps.DirectionsService();
directionsService.route(request, function (response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
Onde tá o erro gente??!!!
Descobri!!!!
O erro tá em [Ô]location: ArrayPontos[i].value,[Ô] onde o certo é [Ô]location: ArrayPontos[i][Ô]
Valeu galera!!!
O erro tá em [Ô]location: ArrayPontos[i].value,[Ô] onde o certo é [Ô]location: ArrayPontos[i][Ô]
Valeu galera!!!
Tópico encerrado , respostas não são mais permitidas