// Karte mit den Sportstätten des SC Kirch-/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;obj.innerHTML='
';content='';content+='';content+='';content+='';content+='';content+='
';content+='Sportanlage am Kämpenweg';content+='
    ';content+='
  • Vereinsheim (Tel.: 0581 - 17404)
  • ';content+='
  • Fußballplätze
  • ';content+='
  • Beachvolleyballplatz
  • ';content+='
';content+='
';content+='';content+='
';obj.innerHTML+=content;obj.innerHTML+='
';var mapProp = {center: new google.maps.LatLng(52.997669,10.512882),zoom: 15,mapTypeId: google.maps.MapTypeId.ROADMAP,mapTypeControl: false,panControl: true,streetViewControl: false,scrollwheel: false,};map=new google.maps.Map(document.getElementById("map"),mapProp);locations = [['Sportanlage am Kämpenweg', 52.992043, 10.524216, 0],['Sporthalle GS Westerweyhe', 52.999947, 10.512543, 0],['Sporthalle Sternschule Uelzen', 52.972505, 10.54104, 0],['Sporthalle Oberschule Uelzen', 52.971, 10.5587, 0],['Sporthalle Lessing Gymnasium Uelzen', 52.9708, 10.5639, 0],];for (i=0; imarker.length)return;map.panTo(marker[loc-1].position);ShowInfowindow(loc-1);}function ShowInfowindow(loc){var html=locations[loc][0];if (html!=''){if (infowindow) infowindow.close();infowindow=new google.maps.InfoWindow({content: html});infowindow.open(map,marker[loc]);}}function LoadScript(){var script = document.createElement('script');script.type = 'text/javascript';script.src = 'https://maps.googleapis.com/maps/api/js?v=3.exp&callback=Initialize';document.body.appendChild(script);}function ShowMap(obj){objId=obj;window.onload = LoadScript;}