File: D:/HostingSpaces/SBogers10/bvi.komma-mediadesign.nl/wwwroot/css-js/googlemaps.js
// JavaScript Document
var mapLocatie = new google.maps.LatLng(51.286983,5.575583);
var markerLocatie = new google.maps.LatLng(51.274953,5.570583);
var marker;
var map;
var contentString = '<div id="markerContent">'+
'<div id="siteNotice">'+
'</div>'+
'<h1 class="maps">B.V.I.</h1>'+
'<div id="bodyContent">'+
'<p class="maps">Molenstraat 20<br />6021 GV 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:"B.V.I.",
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);
});
}