smithsteve
12-08-2011, 06:44 PM
Hi everyone,
I am a new poster and new to Google maps/ JS programming (altho I’ve got an extensive programming background).
I’ve been working on building a map and have a problem I suspect is in how I build an Infowindow. The example works perfectly on Firefox or Chrome, but not in IE. In Explorer the map is built, markers are set and a mouse rollover event happens to identify each, but the Infowindow doesn’t show when a marker is clicked.
Can anyone please help me? I've done extensive searching and have yet to find the answer, so I'd would be very appreciative for any help…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
<title>Oregon Foodie Map</title>
<style type="text/css">
html { height: 500px; width: 600px }
body { height: 500px; margin: 0; padding: 0 }
#map_canvas { height: 500px; width: 600px ;
border: 5px solid #333;
}
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var sites = [
['New Sammys Cowboy Bistro', 42.228709 , -122.755341, 1, '<a href="http://www.flickr.com/photos/70837219@N03/6416889035/" title="NSCB by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7018/6416889035_531bfe2f4b_s.jpg" width="125" height="125" alt="NSCB1"></a><p style="font-family:tahoma">New Sammys Cowboy Bistro</p><p style="font-family:tahoma">2210 S. Pacific Highway, Talent, OR<br />541-535-2779<br />Geocode 42.228709, -122.755341</p>'],
['K-R Drive Inn', 43.535261 , -123.294667, 1, '<a href="http://www.flickr.com/photos/fiveforefun/3523459722/" title="Ice cream break by fiveforefun, on Flickr"><img src="http://farm4.staticflickr.com/3564/3523459722_5f1532578e_s.jpg" width="125" height="125" alt="Ice cream break"></a> <a href="http://krdriveinn.com/" target="_blank"><p style="font-family:tahoma">K-R Drive Inn</p></a> <p style="font-family:tahoma">307 John Long Rd, Oakland, OR<br />541-849-2570<br />Geocode 43.535261, -123.294667</p>'],
['Los Delphines', 44.220309 , -123.204439, 1, '<a href="http://www.flickr.com/photos/70837219@N03/6416169749/" title="Los Delfines by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7154/6416169749_794190db49_s.jpg" width="125" height="125" alt="Los Delfines"></a><p style="font-family:tahoma">Los Delphines Taqueria</p><p style="font-family:tahoma">730 Ivy Street, Junction City, OR<br />541-998-7508<br />Geocode 44.220309, -123.204439</p>'],
['Le Patissier', 44.587958 , -123.259193, 1,'<a href="http://www.flickr.com/photos/70837219@N03/6416169925/" title="Le Patissier by Steven James Smith, on Flickr"><img src="http://farm7.staticflickr.com/6059/6416169925_19653c5ed0_s.jpg" width="125" height="125" alt="Le Patissier"></a> <a href="http://www.lepatissier.net/" target="_blank"><p style="font-family:tahoma">Le Patissier</p></a><p style="font-family:tahoma">956 NW Circle, Corvallis, OR<br />541-752-1785<br />Geocode 44.587958, -123.259193</p>'],
['Chula Vista', 44.927952 , -122.984801, 1,'<a href="http://www.flickr.com/photos/70837219@N03/6443010235/" title="Chula Vista by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7015/6443010235_c6458fe655_s.jpg" width="125" height="125" alt="Chula Vista"></a><p style="font-family:tahoma">Chula Vista</p><p style="font-family:tahoma">3935 State Street SE, Salem, OR<br />503-316-0019<br />Geocode 44.927952, -122.984801</p>'],
['Mississippi Marketplace', 45.554341 , -122.675826, 2, '<a href="http://www.flickr.com/photos/70837219@N03/6420544905/" title="Mississippi Marketplace by Steven James Smith, on Flickr"><img src="http://farm7.staticflickr.com/6096/6420544905_e2ff57ffa7_s.jpg" width="125" height="125" alt="Mississippi Marketplace"></a> <a href="http://www.missmarketplace.com/" target="_blank"><p style="font-family:tahoma">Mississippi Marketplace</p></a><p style="font-family:tahoma">4233 N. Mississippi, Portland, OR<br />Geocode 45.554341, -122.675826</p>'],
['Com Tam Saigon', 45.497742 , -122.57573, 1, '<a href="http://www.flickr.com/photos/70837219@N03/6454546069/" title="Com Tam Saigon by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7007/6454546069_8e8a923056_s.jpg" width="125" height="125" alt="Com Tam Saigon"></a><p style="font-family:tahoma">Com Tam Saigon</p><p style="font-family:tahoma">8435 SE Powell Blvd, Portland, OR<br />503-360-1478<br />Geocode 45.497742, -122.57573</p>'],
];
var infowindow = null;
/*
This function sets up the map
*/
function initialize() {
var centerMap = new google.maps.LatLng(43.999999,-123.060525);
var myOptions = {
zoom: 7 ,
center: centerMap,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
setMarkers(map, sites);
infowindow = new google.maps.InfoWindow({
content: "Loading..."
});
}
/*
This function sets the markers (array)
*/
function setMarkers(map, markers) {
for (var i = 0; i < markers.length; i++) {
var site = markers[i];
var siteLatLng = new google.maps.LatLng(site[1], site[2]);
var marker = new google.maps.Marker({
position: siteLatLng,
map: map,
title: site[0],
zIndex: site[3],
html: site[4],
// Markers drop on the map
animation: google.maps.Animation.DROP
});
google.maps.event.addListener(marker, "click", function () {
infowindow.setContent(this.html);
infowindow.open(map, this);
});
}
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas"></div>
</body>
</html>
I am a new poster and new to Google maps/ JS programming (altho I’ve got an extensive programming background).
I’ve been working on building a map and have a problem I suspect is in how I build an Infowindow. The example works perfectly on Firefox or Chrome, but not in IE. In Explorer the map is built, markers are set and a mouse rollover event happens to identify each, but the Infowindow doesn’t show when a marker is clicked.
Can anyone please help me? I've done extensive searching and have yet to find the answer, so I'd would be very appreciative for any help…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
<title>Oregon Foodie Map</title>
<style type="text/css">
html { height: 500px; width: 600px }
body { height: 500px; margin: 0; padding: 0 }
#map_canvas { height: 500px; width: 600px ;
border: 5px solid #333;
}
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var sites = [
['New Sammys Cowboy Bistro', 42.228709 , -122.755341, 1, '<a href="http://www.flickr.com/photos/70837219@N03/6416889035/" title="NSCB by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7018/6416889035_531bfe2f4b_s.jpg" width="125" height="125" alt="NSCB1"></a><p style="font-family:tahoma">New Sammys Cowboy Bistro</p><p style="font-family:tahoma">2210 S. Pacific Highway, Talent, OR<br />541-535-2779<br />Geocode 42.228709, -122.755341</p>'],
['K-R Drive Inn', 43.535261 , -123.294667, 1, '<a href="http://www.flickr.com/photos/fiveforefun/3523459722/" title="Ice cream break by fiveforefun, on Flickr"><img src="http://farm4.staticflickr.com/3564/3523459722_5f1532578e_s.jpg" width="125" height="125" alt="Ice cream break"></a> <a href="http://krdriveinn.com/" target="_blank"><p style="font-family:tahoma">K-R Drive Inn</p></a> <p style="font-family:tahoma">307 John Long Rd, Oakland, OR<br />541-849-2570<br />Geocode 43.535261, -123.294667</p>'],
['Los Delphines', 44.220309 , -123.204439, 1, '<a href="http://www.flickr.com/photos/70837219@N03/6416169749/" title="Los Delfines by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7154/6416169749_794190db49_s.jpg" width="125" height="125" alt="Los Delfines"></a><p style="font-family:tahoma">Los Delphines Taqueria</p><p style="font-family:tahoma">730 Ivy Street, Junction City, OR<br />541-998-7508<br />Geocode 44.220309, -123.204439</p>'],
['Le Patissier', 44.587958 , -123.259193, 1,'<a href="http://www.flickr.com/photos/70837219@N03/6416169925/" title="Le Patissier by Steven James Smith, on Flickr"><img src="http://farm7.staticflickr.com/6059/6416169925_19653c5ed0_s.jpg" width="125" height="125" alt="Le Patissier"></a> <a href="http://www.lepatissier.net/" target="_blank"><p style="font-family:tahoma">Le Patissier</p></a><p style="font-family:tahoma">956 NW Circle, Corvallis, OR<br />541-752-1785<br />Geocode 44.587958, -123.259193</p>'],
['Chula Vista', 44.927952 , -122.984801, 1,'<a href="http://www.flickr.com/photos/70837219@N03/6443010235/" title="Chula Vista by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7015/6443010235_c6458fe655_s.jpg" width="125" height="125" alt="Chula Vista"></a><p style="font-family:tahoma">Chula Vista</p><p style="font-family:tahoma">3935 State Street SE, Salem, OR<br />503-316-0019<br />Geocode 44.927952, -122.984801</p>'],
['Mississippi Marketplace', 45.554341 , -122.675826, 2, '<a href="http://www.flickr.com/photos/70837219@N03/6420544905/" title="Mississippi Marketplace by Steven James Smith, on Flickr"><img src="http://farm7.staticflickr.com/6096/6420544905_e2ff57ffa7_s.jpg" width="125" height="125" alt="Mississippi Marketplace"></a> <a href="http://www.missmarketplace.com/" target="_blank"><p style="font-family:tahoma">Mississippi Marketplace</p></a><p style="font-family:tahoma">4233 N. Mississippi, Portland, OR<br />Geocode 45.554341, -122.675826</p>'],
['Com Tam Saigon', 45.497742 , -122.57573, 1, '<a href="http://www.flickr.com/photos/70837219@N03/6454546069/" title="Com Tam Saigon by Steven James Smith, on Flickr"><img src="http://farm8.staticflickr.com/7007/6454546069_8e8a923056_s.jpg" width="125" height="125" alt="Com Tam Saigon"></a><p style="font-family:tahoma">Com Tam Saigon</p><p style="font-family:tahoma">8435 SE Powell Blvd, Portland, OR<br />503-360-1478<br />Geocode 45.497742, -122.57573</p>'],
];
var infowindow = null;
/*
This function sets up the map
*/
function initialize() {
var centerMap = new google.maps.LatLng(43.999999,-123.060525);
var myOptions = {
zoom: 7 ,
center: centerMap,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
setMarkers(map, sites);
infowindow = new google.maps.InfoWindow({
content: "Loading..."
});
}
/*
This function sets the markers (array)
*/
function setMarkers(map, markers) {
for (var i = 0; i < markers.length; i++) {
var site = markers[i];
var siteLatLng = new google.maps.LatLng(site[1], site[2]);
var marker = new google.maps.Marker({
position: siteLatLng,
map: map,
title: site[0],
zIndex: site[3],
html: site[4],
// Markers drop on the map
animation: google.maps.Animation.DROP
});
google.maps.event.addListener(marker, "click", function () {
infowindow.setContent(this.html);
infowindow.open(map, this);
});
}
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas"></div>
</body>
</html>