map.addOverlay(marker);
var contentString = '<div id="content">'+
'<div id="siteNotice">'+
'</div>'+
'<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+
'<div id="bodyContent">'+
'<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' +
'sandstone rock formation in the southern part of the '+
'Northern Territory, central Australia. It lies 335 km (208 mi) '+
'south west of the nearest large town, Alice Springs; 450 km '+
'(280 mi) by road. Kata Tjuta and Uluru are the two major '+
'features of the Uluru - Kata Tjuta National Park. Uluru is '+
'sacred to the Pitjantjatjara and Yankunytjatjara, the '+
'Aboriginal people of the area. It has many springs, waterholes, '+
'rock caves and ancient paintings. Uluru is listed as a World '+
'Heritage Site.</p>'+
'<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+
'https://en.wikipedia.org/w/index.php?title=Uluru</a> '+
'(last visited June 22, 2009).</p>'+
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
<script src="js/map.js" type="text/javascript"></script>
<script src="js/extinfowindow.js" type="text/javascript"></script>
and tried the code I provide in JSfiddle (change the lat lon) to see if this is workingvar marker = new google.maps.Marker({
map: map,
position: point
});
You have included the Google Maps API multiple times on this page.
so you need to called it only one.
Open in new window
see the Google map script are in these file
js/js.js
js/map.js
(by the way it's not very intuitive to called this file js you can rename it to gmap )
and choose the one you want to keep
some warnings :
Open in new window
Open in new window
Open in new window