trouble with google map selector
I'm trying to use http://www.dynamicdrive.com/dynamici...apselector.htm The code works with all the test locations but when I add my own location, it doesn't work.
The 3 test locations all begin maps.google.com. My location begins with google.com/maps. Maybe that is the difference. If I go to maps.google.com, I end up at google.com/maps. My location links don't seem to work.
Thanks for any help
HTML Code:
<!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>
<title>Directions to Tennis Courts</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="googlemapselector.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js">
</script>
<script src="googlemapselector.js">
/***********************************************
* Google Map Selector- (c) Dynamic Drive (www.dynamicdrive.com)
* Please keep this notice intact
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
</head>
<body>
<div id="mapcontainer">
<div id="addrcolumn">
<ul class="location">
<li><a href="https://www.google.com/maps/place/1020+Lake+Club+Dr,+Greensboro,+GA+30642/@33.447045,-83.206179,16z/data=!4m5!3m4!1s0x88f6f26505fcbb81:0x374f1c7e6dd9fcfb!8m2!3d33.444884!4d-83.199098">Reynolds Lake Oconee Tennis Courts</a><br />
</li>
<li class="selected"><a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=CN+Tower,+Toronto,+Ontario,+Canada&sll=48.858842,2.294362&sspn=0.009402,0.027874&ie=UTF8&hq=CN+tower&hnear=CN+Tower,+Toronto,+Toronto+Division,+Ontario,+Canada&ll=43.642364,-79.38695&spn=0.01073,0.027874&z=16&iwloc=A">CN Tower</a><br />
</li>
<li><a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Big+Ben,+Bridge+Street,+London,+United+Kingdom&sll=27.173491,78.042068&sspn=0.025427,0.055747&ie=UTF8&hq=Big+Ben&hnear=Big+Ben,+Bridge+St,+Westminster,+London+SW1A+2,+United+Kingdom&ll=51.507888,-0.131664&spn=0.017789,0.055747&z=15&iwloc=A">Big Ben, London</a><br />
</li>
<li><a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=The+Leaning+Tower+of+Pisa&sll=40.771117,-73.974166&sspn=0.021646,0.055747&ie=UTF8&hq=&hnear=Leaning+Tower+of+Pisa,+Campo+dei+Miracoli+o+Piazza+del+Duomo,+Piazza+dei+Miracoli,+56100+Pisa,+Toscana,+Italy&ll=43.722669,10.3968&spn=0.010716,0.027874&z=16">The Leaning Tower of Pisa</a><br />
</li>
</ul>
</div>
<div id="mapcolumn">
<iframe name="mapiframe1" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com?output=embed"></iframe>
<br />+ <a href="http://maps.google.com" class="largermap"">View Larger Map</a>
</div>
</div>
</body>
</html>