tengo 4 barcos para establecer en un solo mapa, así que utilizo el ejemplo de desarrolladores de Google y luego torcí
https://developers.google.com/maps/documentation/javascript/examples/icon-complex
En la función de abajo me puse 3 más opciones de color:
function setMarkers(map, locations) {
...
var image = {
url: 'img/bullet_amarelo.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
var image1 = {
url: 'img/bullet_azul.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
var image2 = {
url: 'img/bullet_vermelho.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
var image3 = {
url: 'img/bullet_verde.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(40, 40),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 40)
};
...
}
An d en el PARA bramido puse un color para cada buque:
for (var i = 0; i < locations.length; i++) {
...
if (i==0) var imageV=image;
if (i==1) var imageV=image1;
if (i==2) var imageV=image2;
if (i==3) var imageV=image3;
...
# remember to change icon: image to icon: imageV
}
El resultado final:
http://www.mercosul-line.com.br/site/teste.html
Muchas gracias :) esto es lo que estaba buscando :) ¿Puedo saber, lo aplico dentro del lugar donde instanciar el marcador como lo muestro o está definido afuera por separado? :) –
Ambos funcionan. O puede agregar el atributo 'icon' y configurarlo, o usar' setIcon'. Añadiré una nota sobre esto. – jsalonen
muchas gracias por la ayuda :) –