HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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);   
	});
	
  }