File: D:/HostingSpaces/SBogers10/molen.komma.pro/wwwroot/css-js/googlemaps.js
// JavaScript Document
var mapLocatie = new google.maps.LatLng(51.274332,5.587617);
var markerLocatie = new google.maps.LatLng(51.269332,5.581717);
var marker;
var map;
var contentString = '<div id="markerContent">'+
'<div id="siteNotice">'+
'</div>'+
'<h1>Molen Nooit Gedagt Budel</h1>'+
'<div id="bodyContent">'+
'<p>Meemortel 22<br />6021 AE Budel</p>' +
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString,
disableAutoPan: true,
flat: true
});
function initialize() {
var mapOptions = {
zoom: 13,
mapTypeId: google.maps.MapTypeId.ROADMAP,
disableDefaultUI: true,
center: mapLocatie
};
map = new google.maps.Map(document.getElementById("map_canvas"),
mapOptions);
marker = new google.maps.Marker({
map:map,
draggable:true,
// animation: google.maps.Animation.DROP,
icon: '/img/maps_icon.png',
title:"Molen Nooit Gedagt",
position: markerLocatie
});
infowindow.open(map,marker);
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
google.maps.event.addListener(InfoWindow, "domready", function() {
setTimeout(function(){$("img[src$='iws3.png']").hide();},80);
});
}