I have tried to get the map to work and I can only get it to work in Chrome but not Internet explorer or Firefox.
Here is the HTML Code for my site and the link to my site Link: http://www.djendespace.webatu.com/webcam.html Also I have tried to figure out how I can put a bubble that comes off of the marker with a picture of the cam image in it. We can discuss that later maybe. I'm most concerned with just making it visible. Thanks! Kevin CODE: <html> <head> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META NAME="KEYWORDS" CONTENT="put keywords separated by commas here"> <META NAME="DESCRIPTION" CONTENT=""> <title>Kevin's Live Weather Cam</title> <script language="Javascript"> <!-- hide var x = 30; var y = 1; var now; function caminawin() { window.open('http://djendespace.webatu.com/image.jpg', 'popwin', 'scrollbars=0,status=0,toolbar=0,resizable=0,width=346,height=265,top=150,left=185'); } function startClock() { x = x-y; document.form1.clock.value = x; if (x <= 1) reload(); timerID = setTimeout("startClock()", 1000); } function reload() { now = new Date(); var camImg = "http://djendespace.webatu.com/image.jpg" + "?" + now.getTime(); document.campicture.src = camImg; x = 120; document.form1.clock.value = x; } // end hide --> </script> </head> <body bgcolor="white" onLoad="startClock()"> <center> <font face="Arial,Helvetica,Verdana" size=-1> <h1>Kevin's Weather Cam</h1> <h2>Located in Bellevue, a suburb of Pittsburgh PA</h2><p> <html> <body> <a href="http://forecast.weather.gov/showsigwx.php? warnzone=PAZ021&warncounty=PAC003&firewxzone=PAZ021&local_place1=Pittsburgh +PA&product1=Hazardous+Weather+Outlook"> Click here for<br>IMPORTANT WEATHER ALERTS!</a><br> <table border="1"> <tr> <th><img src="http://banners.wunderground.com/weathersticker/ sunandmoon150/language/www/US/PA/Pittsburgh.gif" border=0</th> <th><form NAME="form1"><b><font size="-1" face="Arial">AutoReload "IMAGE" in ~ </font> <input TYPE="text" NAME="clock" SIZE="2" VALUE> <font size="-1" face="Arial">seconds.</font></b><br> [ <a href="javascript:caminawin();">OPEN IN FLOATING WINDOW</a> ]</ form></th> <th><a href="http://www.wunderground.com/US/PA/Pittsburgh.html? bannertypeclick=miniWeather2"><img src="http:// weathersticker.wunderground.com/weathersticker/miniWeather2_cond/ language/www/US/PA/Pittsburgh.gif" alt="Click for Pittsburgh, Pennsylvania Forecast" border="0" height="50" width="150" /></a></th> </tr> </table> </body> </html> <center> <img name="campicture" src="http://djendespace.webatu.com/ image.jpg" border=1 width=640 height=480 alt="My WebCam Image"><br> <!DOCTYPE html "-//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"/ > <title>Google Maps JavaScript API Example</title> <script src="http://maps.google.com/maps? file=api&v=2&key=ABQIAAAA34M- vmo2mmgBuhPdsDSQeBTXEYSjvTCHhzwhM4n4BBSMD5wpURSWdLang7Lew3aFazIbe26hKdA6Pg&sensor=false" type="text/javascript"></script> <script type="text/javascript"> function initialize() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map_canvas")); map.setMapType(G_HYBRID_MAP) map.setCenter(new GLatLng(40.503658,-80.055689), 13); map.setUIToDefault(); var point = new GLatLng(40.503658,-80.055689); map.setCenter(point, 10); var marker = new GMarker(point); map.addOverlay(marker); } } map.setUIToDefault(); </script> </head> <body onload="initialize()" onunload="GUnload()"> <div id="map_canvas" style="width: 500px; height: 300px"></div> </body> </html> <p><br><img src="http://radar.weather.gov/Conus/Loop/ centgrtlakes_loop.gif"> <h3></h3> <p><br><br><br> <hr width=225> <font size=-2>Base Template courtesy of <b><i><a href="http://www.webcamworld.com/" target="_top">Webcam World</a></i></b>. </font><p><br> </font> <!-- START OF HIT COUNTER CODE --> <br><script language="JavaScript" src="http://www.counter160.com/js.js? img=6"></script><br><a href="http://www.000webhost.com"><img src="http://www.counter160.com/images/6/left.png" alt="Free web hosting" border="0" align="texttop"></a><a href="http:// www.hosting24.com"><img alt="Web hosting" src="http:// www.counter160.com/images/6/right.png" border="0" align="texttop"></a> <!-- END OF HIT COUNTER CODE --> </center> </body> </html> -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
