Tengo este código:
var directionsService = new google.maps.DirectionsService();
var request = {
origin : start,
destination : end,
travelMode : google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
var coords;
if (status == google.maps.DirectionsStatus.OK) {
coords = google.maps.geometry.encoding.decodePath(response.routes[0].overview_polyline.points);
callback(coords);
}
});
Ayer el decodePath trajo coordenadas cuyo nombre de variables eran Ya y Za, hoy se convirtieron en hb e ib. ¿Por qué?