マーカーに追加したい画像stagleton.pngがあり、マーカーを作成する機能があります。 InfoWindowメソッドを変更して、イメージがInfoWindow内のテキストとともに表示されるようにするにはどうすればよいですか?Google Map v3のマーカーのInfoWindowに画像を追加するには?
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;
}
私の答えをチェックしてください、IEでテストしましたか? – SeanKendle