// Karte mit den Post- und Paketdiensten in Kirch- und Westerweyhe
// (C) 2025 Björn Dittmer, alle Rechte vorbehalten
var map;var marker=[];var infowindow;var locations;var objId;function Initialize(){obj=document.getElementById(objId);if (obj==null)return;content='
';obj.innerHTML=content;obj.innerHTML+='';content='';content+='';content+='';content+='Deutsche Post Filiale ';content+='Altes Dorf 112
';content+=' | ';content+='';content+='Briefkästen ';content+='Altes Dorf 112 ';content+='Hainberg (BGS) ';content+='Hugo-Steinfeld Straße 1 ';content+='Kegelbahnweg 11 ';content+='Kurzer Weg 5a ';content+='Sandberg 17
';content+=' | ';content+='';content+=' | ';content+='
';content+='';obj.innerHTML+=content;var stadtplanStyles = [ { featureType: 'poi', elementType: 'labels', stylers: [ { visibility: 'off' } ] }];var styledMapOptions = { name: 'Stadtplan KirchWesterweyhe' };var stadtplanType = new google.maps.StyledMapType(stadtplanStyles, styledMapOptions);var mapProp = {center: new google.maps.LatLng(52.997669,10.512882),zoom: 15,minZoom: 15,maxZoom: 15,mapTypeId: google.maps.MapTypeId.ROADMAP,mapTypeControlOptions: { mapTypeIds: [google.maps.MapTypeId.ROADMAP,'stadtplan'] },mapTypeControl: false,panControl: true,streetViewControl: false,scrollwheel: false,zoomControl: false,};map=new google.maps.Map(document.getElementById("map"),mapProp);map.mapTypes.set('stadtplan', stadtplanType);map.setMapTypeId('stadtplan');var iconBriefkasten = {url: 'http://services.bjoern-dittmer.de/kw-ww_post-paketdienste/icon_briefkasten.png',size: new google.maps.Size(32, 32),anchor: new google.maps.Point(13, 16)};var iconPost = {url: 'http://services.bjoern-dittmer.de/kw-ww_post-paketdienste/icon_post.png',size: new google.maps.Size(38, 25),anchor: new google.maps.Point(19, 13)};var iconHermes = {url: 'http://services.bjoern-dittmer.de/kw-ww_post-paketdienste/icon_hermes.png',size: new google.maps.Size(38, 32),anchor: new google.maps.Point(19, 16)};locations = [[52.998190, 10.511060, iconPost, 0],[52.995979, 10.508319, iconBriefkasten, 0],[52.992544, 10.515156, iconBriefkasten, 0],[52.997167, 10.514041, iconBriefkasten, 0],[52.995824, 10.488420, iconBriefkasten, 0],[53.003701, 10.534554, iconBriefkasten, 0],];for (i=0; imarker.length)return;map.panTo(marker[loc-1].position);ShowInfowindow(loc-1);}}function ShowInfowindow(loc){$.ajax({url: 'http://services.bjoern-dittmer.de/kw-ww_post-paketdienste/data.php',crossDomain: true,type: "GET",data: { ID: loc },dataType: 'jsonp',success: function(response){if (response!=''){if (infowindow) infowindow.close();infowindow=new google.maps.InfoWindow({content: ''+response+'
',});infowindow.open(map,marker[loc]);}},});}function LoadScript(){var script = document.createElement('script');script.type = 'text/javascript';script.src = 'http://services.bjoern-dittmer.de/kw-ww_post-paketdienste/jquery-1.11.1.min.js';document.body.appendChild(script);var script2 = document.createElement('script');script2.type = 'text/javascript';script2.src = 'https://maps.googleapis.com/maps/api/js?v=3.exp&callback=Initialize';document.body.appendChild(script2);}function ShowMap(obj){objId=obj;window.onload = LoadScript;}