ho 4 navi per impostare su una singola mappa, per cui uso l'esempio Google Developers e poi contorto
https://developers.google.com/maps/documentation/javascript/examples/icon-complex
Nella funzione soffietto ho impostato 3 più opzioni di colore:
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)
};
...
}
Un d nel FOR muggito ho impostato un colore per ogni nave:
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
}
Il risultato finale:
http://www.mercosul-line.com.br/site/teste.html
Grazie mille :) questo è quello che stavo cercando :) posso sapere, devo applicare questo all'interno del luogo in cui istanziare il marcatore come ho mostrato o è definito al di fuori separatamente? :) –
Entrambi funzionano. Puoi aggiungere l'attributo 'icon' e impostarlo, oppure usare' setIcon'. Aggiungerò una nota a riguardo. – jsalonen
grazie mille per l'aiuto :) –