locations = new Array(); counter = 0; function storeLocations(location, info) { locations[counter] = location; createMarker(location, info); counter++; } var infowindow = new google.maps.InfoWindow({ size: new google.maps.Size(150,50) }); function createMarker(latlng, html, icon_path) { var contentString = html; if(icon_path != undefined) { var marker = new google.maps.Marker({ position: latlng, map: map, icon : icon_path, zIndex: Math.round(latlng.lat()*-100000)<<5 }); } else { var marker = new google.maps.Marker({ position: latlng, map: map, zIndex: Math.round(latlng.lat()*-100000)<<5 }); } google.maps.event.addListener(marker, 'click', function() { infowindow.setContent(contentString); infowindow.open(map,marker); }); } function init() { var center = new google.maps.LatLng(31.777455,-106.499989); var options = { zoom: 11, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById('map'), options); map.setCenter(center); google.maps.event.addListener(map, 'click', function(){ infoWindow.close(); }); var geocoder = new google.maps.Geocoder();
Notice: Undefined variable: code in /home/etrams/domains/hma/library/scripts/main_map.php on line 74
geocoder.geocode({address : 'Sunbowl Stadium, El Paso, TX'}, function(results) { if(results != null) { createMarker(results[0].geometry.location, "

Sunbowl Stadium

2501 Sun Bowl Drive - UTEP Campus
El Paso, TX 79902
Get Directions

" , "/media/usfootball.png"); } } ) }