我正在尝试将图像与谷歌地图上的 15 个不同的团队标记相关联,我正在尝试这样做,但它在我的地图上无法正常工作,任何建议将不胜感激。我的想法是 associate: if(location.nombreequipo==AST1){ icon: imagen } 但我对这个想法有很多疑问。
function displayLocation(location){
var content = '<strong><p>Equipo: ' +location.nombreequipo + '</strong>'
+'</strong></p><strong><p>Hora móvil: ' + location.fecha_movil
+ '</strong></p><strong><p>Longitud: ' +location.longitud +'</strong></p>'
+ '</strong></p><strong><p>Latitud: ' +location.latitud +'</strong></p>';
var latLng = new google.maps.LatLng(parseFloat(location.latitud), parseFloat(location.longitud));
var imagen ='img/blue_MarkerA.png';
var marker = new google.maps.Marker({
position: latLng,
draggable: false,
map: map,
draggable: true,
visible: true,
title: location.nombreequipo
});
arrayMarcadores.push(marker);
google.maps.event.addListener(marker, 'click', function(){
infowindow.setContent(content);
infowindow.open(map, marker);
});
return marker;
}
提前致谢。