Tengo una imagen que quiero agregar a un marcador, stagleton.png, y tengo una función para crear un marcador. ¿Cómo cambio el método InfoWindow para que la imagen también se muestre con el texto en InfoWindow?¿Cómo agregar una imagen a InfoWindow de marcador en google maps v3?
function createMarker(name, latlng, mapsent)
{
var marker = new google.maps.Marker({
position: latlng,
map: mapsent,
title: name
});
marker.info = new google.maps.InfoWindow({
//when I add <IMG BORDER="0" ALIGN="Left" SRC="stagleton.jpg"> the maps will not load
content: <IMG BORDER="0" ALIGN="Left" SRC="stagleton.jpg"> "My name is " + name
});
google.maps.event.addListener(marker, 'click', function(){
marker.info.open(mapsent, marker);
});
return marker;
}
Mira mi respuesta, ¿has probado en IE? – SeanKendle