1
Someone can help me how you change that blue color of the road when you set a course..
I already have the style all ready just don’t know the variable that applies to that part of the map.. Obg
/*Estilizando o mapa;
Criando um array com os estilos*/
var styles = [
];
/*crio um objeto passando o array de estilos (styles) e definindo um nome para ele*/
var styledMap = new google.maps.StyledMapType(styles, {
name: "Mapa Style"
});
/*Aplicando as configurações do mapa*/
map.mapTypes.set('map_style', styledMap);
map.setMapTypeId('map_style');
});