var GroningenOpDeKaart=Class.create({element:null,map:null,regio:null,markers:new Array(),staticMarkers:new Array(),iconfactory:null,markerclusterer:null,markerStyles:null,extraQuery:null,useMarkerClusterer:false,initialize:function(element,options){if(!options)options={};this.element=element;if(options.markers)this.showLoading();if(!options.map){this.map=new google.maps.Map2(element);this.map.setCenter(new google.maps.LatLng(53.218777,6.666921),9);this.map.enableDoubleClickZoom();this.map.enableContinuousZoom();this.map.addControl(new GLargeMapControl3D());this.map.addControl(new GMapTypeControl())}else this.map=options.map;this.drawProvinceBorder();options.mngr=this;this.iconfactory=new IconFactory(options);if(this.useMarkerClusterer){this.markerStyles=[{url:'/img/groningen-op-de-kaart/marker-aantal.png',height:37,width:30,opt_anchor:[4,0],opt_textColor:'#ffffff'}];this.markerclusterer=new MarkerClusterer(this.map,[],{gridSize:30,styles:this.markerStyles})};this._addObservers()},hideLoading:function(){if(this.element.up().hasClassName('loading'))this.element.up().removeClassName('loading')},showLoading:function(){if(!this.element.up().hasClassName('loading'))this.element.up().addClassName('loading')},_addObservers:function(){document.observe('click',function(event){if(event.element().tagName.toLowerCase()=='svg')return;if(event.element().hasClassName('godk-zoom-to'))this._zoomTo(event.element(),event)}.bind(this));if($('godk-regio'))$('godk-regio').observe('change',this._zoomToRegio.bind(this));$$('form.godk-zoeken').each(function(form){form.observe('submit',this.performSearch.bind(this))}.bind(this));$$('.godk-autosubmit').each(function(input){input.observe('click',this.triggerSearch.bind(this))}.bind(this))},_zoomTo:function(element,event){if(event)event.stop();if(element.hasClassName('godk-zoom-to-provincie')){this.zoomToProvincie()}else if(element.hasClassName('godk-zoom-to-haren')){this.zoomToHaren()}else if(element.hasClassName('godk-zoom-to-stad')){this.zoomToStad()}else if(element.hasClassName('godk-zoom-to-centrum'))this.zoomToCentrum();element.up('ul').select('a.godk-zoom-to.active').each(function(a){a.removeClassName('active')}.bind(this));if(element.up('a.godk-zoom-to')){if(!element.up('a.godk-zoom-to').hasClassName('active'))element.up('a.godk-zoom-to').addClassName('active')}else if(!element.hasClassName('active'))element.addClassName('active')},_zoomToRegio:function(event){this.zoomToRegio(parseInt(event.element().getValue()))},applyPolylineFix:function(){var children=this.element.down().down().childElements();children.each(function(div){if(div.style.zIndex=='101')div.style.zIndex='99'}.bind(this))},enableFilter:function(){if($('godk-zoeken'))$('godk-zoeken').removeClassName('godk-zoeken-disabled')},loadMarkersFromJSON:function(url,options){if(!options)options={};if(!options.isStatic)options.isStatic=false;this.showLoading();this.clearMarkers();if(!options.onSuccess)options.onSuccess=function(transport){var json=transport.responseJSON;json.each(function(object){if(this.useMarkerClusterer){var marker=this.getMarkerFromJSON(object,options.isStatic);if(options.isStatic){this.staticMarkers.push(marker)}else this.markers.push(marker)}else this.addMarkerFromJSON(object,options.isStatic)}.bind(this));if(this.useMarkerClusterer){mc_options={styles:this.markerStyles};if(options.gridSize)mc_options.gridSize=options.gridSize;this.markerclusterer=new MarkerClusterer(this.map,[],mc_options);this.markerclusterer.addMarkers(this.staticMarkers);this.markerclusterer.addMarkers(this.markers)};if(options.center_after_loading)this.zoomToMarkers();this.applyPolylineFix();this.enableFilter()}.bind(this);if(!options.onFailure)options.onFailure=function(){alert('Kon geen gegevens verkrijgen')}.bind(this);if(!options.onComplete)options.onComplete=function(){if(!options.isStatic)this.hideLoading()}.bind(this);new Ajax.Request(url+(this.extraQuery?(url.match(/\?/)?'&':'?')+this.extraQuery:''),options)},loadMarkersFromHash:function(options){var url=parent.location.pathname+'/zoeken'+parent.location.search,querystring='',object={};try{object=Base64.decode(parent.location.hash.toString().replace('#filter:','')).evalJSON();querystring=Object.toQueryString(object);this.setValuesInForm(object)}catch(e){};url=url+(url.indexOf('?')==-1?'?':'&')+querystring;this.loadMarkersFromJSON(url,options)},setValuesInForm:function(object){if(!$('godk-zoeken'))return;$H(object).each(function(pair){var field=$('filter-'+pair.key);if(field){field.value=pair.value}else if(pair.key=='branches[]')pair.value.each(function(brancheid){var checkbox=$('godk-zoeken').down('input[value='+brancheid+'][name="branches[]"]');if(checkbox)checkbox.checked=true})})},getMarkerFromJSON:function(json,isStatic){var options={title:json.title},icon=this.iconfactory.getIcon(json.brancheid);if(icon)options.icon=icon;var marker=new google.maps.Marker(new google.maps.LatLng(parseFloat(json.latitude),parseFloat(json.longitude)),options);marker.html=json.html;GEvent.bind(marker,'click',marker,function(){this.marker.openExtInfoWindow(this.map,'toerisme_window',this.marker.html,{beakOffset:3})}.bind({json:json,marker:marker,map:this.map}));return marker},addMarkerFromJSON:function(json,isStatic){var options={title:json.title},icon=this.iconfactory.getIcon(json.brancheid);if(icon)options.icon=icon;var marker=new google.maps.Marker(new google.maps.LatLng(parseFloat(json.latitude),parseFloat(json.longitude)),options);marker.html=json.html;GEvent.bind(marker,'click',marker,function(){this.marker.openExtInfoWindow(this.map,'toerisme_window',this.marker.html,{beakOffset:3})}.bind({json:json,marker:marker,map:this.map}));this.map.addOverlay(marker);if(isStatic){this.staticMarkers.push(marker)}else this.markers.push(marker)},clearMarkers:function(){if(this.useMarkerClusterer){this.markerclusterer.clearMarkers()}else this.markers.each(function(marker){this.map.removeOverlay(marker)}.bind(this));this.markers=new Array()},performSearch:function(event){event.stop();parent.location.hash='filter:'+Base64.encode(Object.toJSON(event.element().serialize(true)));this.loadMarkersFromJSON(event.element().action,{parameters:event.element().serialize(),method:event.element().method,center_after_loading:true})},triggerSearch:function(event){parent.location.hash='filter:'+Base64.encode(Object.toJSON(event.element().up('form').serialize(true)));this.loadMarkersFromJSON(event.element().up('form').action,{parameters:event.element().up('form').serialize(),method:event.element().up('form').method,center_after_loading:true})},triggerSearchForm:function(form){console.log(form);parent.location.hash='filter:'+Base64.encode(Object.toJSON(form.serialize(true)));this.loadMarkersFromJSON(form.action,{parameters:form.serialize(),method:form.method,center_after_loading:true})},zoomToMarkers:function(){var bounds=new google.maps.LatLngBounds();this.markers.each(function(marker){this.extend(marker.getLatLng())}.bind(bounds));if(!bounds.isEmpty())this.map.setCenter(bounds.getCenter(),Math.min(this.map.getBoundsZoomLevel(bounds),17))},zoomToProvincie:function(){this.map.setCenter(new google.maps.LatLng(53.218777,6.666921),9)},zoomToHaren:function(){this.map.setCenter(new google.maps.LatLng(53.170058,6.61377),14)},zoomToStad:function(){this.map.setCenter(new google.maps.LatLng(53.218777,6.566921),12)},zoomToCentrum:function(){this.map.setCenter(new google.maps.LatLng(53.218777,6.566921),15)},drawProvinceBorder:function(){var path=[new google.maps.LatLng(53.53882480654703,6.353187561035156),new google.maps.LatLng(53.44676215918743,6.3507843017578125),new google.maps.LatLng(53.413010789873304,6.1942291259765625),new google.maps.LatLng(53.389880751560284,6.167449951171875),new google.maps.LatLng(53.376160542803305,6.1695098876953125),new google.maps.LatLng(53.36463488295372,6.178436279296875),new google.maps.LatLng(53.360537332865555,6.195945739746094),new google.maps.LatLng(53.35930799100043,6.206245422363281),new google.maps.LatLng(53.35787371400084,6.217918395996094),new google.maps.LatLng(53.35377551372368,6.225471496582031),new google.maps.LatLng(53.349062096226966,6.227874755859375),new google.maps.LatLng(53.343528288909624,6.231651306152344),new google.maps.LatLng(53.34291337709232,6.2368011474609375),new google.maps.LatLng(53.344348157538526,6.241607666015625),new google.maps.LatLng(53.34850191547604,6.251564025878906),new google.maps.LatLng(53.34619280431444,6.263923645019531),new google.maps.LatLng(53.34537297115572,6.273536682128906),new google.maps.LatLng(53.34106858843385,6.286582946777344),new google.maps.LatLng(53.312416295607065,6.280403137207031),new google.maps.LatLng(53.312006056326894,6.2862396240234375),new google.maps.LatLng(53.309694968888536,6.2958526611328125),new google.maps.LatLng(53.304976678379745,6.290016174316406),new google.maps.LatLng(53.30354057342395,6.280059814453125),new google.maps.LatLng(53.299437150263785,6.274223327636719),new google.maps.LatLng(53.29635932413516,6.2738800048828125),new google.maps.LatLng(53.29389690353602,6.2711334228515625),new google.maps.LatLng(53.2906134552491,6.269416809082031),new google.maps.LatLng(53.2906134552491,6.258430480957031),new google.maps.LatLng(53.287329754587,6.252937316894531),new google.maps.LatLng(53.27952995399187,6.252593994140625),new google.maps.LatLng(53.27090746534771,6.254997253417969),new google.maps.LatLng(53.26823824731214,6.254997253417969),new google.maps.LatLng(53.267211580617925,6.249504089355469),new google.maps.LatLng(53.26844357769279,6.2464141845703125),new google.maps.LatLng(53.26474747997108,6.242637634277344),new google.maps.LatLng(53.26269395429399,6.238517761230469),new google.maps.LatLng(53.260229593312616,6.237831115722656),new google.maps.LatLng(53.25961348087902,6.2395477294921875),new google.maps.LatLng(53.25653278557861,6.235771179199219),new google.maps.LatLng(53.256587554596635,6.23199462890625),new google.maps.LatLng(53.25386267016544,6.2326812744140625),new google.maps.LatLng(53.253451868385675,6.235084533691406),new google.maps.LatLng(53.25016531213036,6.233024597167969),new google.maps.LatLng(53.24995989398131,6.2299346923828125),new google.maps.LatLng(53.24708393633709,6.2313079833984375),new google.maps.LatLng(53.244413231145934,6.230621337890625),new google.maps.LatLng(53.244413231145934,6.226844787597656),new google.maps.LatLng(53.242975090078325,6.222724914550781),new google.maps.LatLng(53.24194781686884,6.218605041503906),new google.maps.LatLng(53.23907132069849,6.2237548828125),new google.maps.LatLng(53.23619463120022,6.214485168457031),new google.maps.LatLng(53.23172852935899,6.21826171875),new google.maps.LatLng(53.23008444847915,6.224098205566406),new google.maps.LatLng(53.22201383687443,6.230278015136719),new google.maps.LatLng(53.20597771785052,6.2189483642578125),new google.maps.LatLng(53.20248186953964,6.212425231933594),new google.maps.LatLng(53.20001404021646,6.208992004394531),new google.maps.LatLng(53.19836874172681,6.2010955810546875),new google.maps.LatLng(53.19425521920172,6.1997222900390625),new google.maps.LatLng(53.19116981826799,6.1942291259765625),new google.maps.LatLng(53.18376395008208,6.1887359619140625),new google.maps.LatLng(53.1695657941611,6.180839538574219),new google.maps.LatLng(53.162773710563926,6.176719665527344),new google.maps.LatLng(53.13518268884686,6.1750030517578125),new google.maps.LatLng(53.11561114951589,6.204185485839844),new google.maps.LatLng(53.1141686835345,6.2601470947265625),new google.maps.LatLng(53.11231401330616,6.270790100097656),new google.maps.LatLng(53.10736783491774,6.28143310546875),new google.maps.LatLng(53.100359774990515,6.2896728515625),new google.maps.LatLng(53.08778362889127,6.343574523925781),new google.maps.LatLng(53.106749522618,6.357307434082031),new google.maps.LatLng(53.10736783491774,6.36383056640625),new google.maps.LatLng(53.12179259846123,6.365547180175781),new google.maps.LatLng(53.1487745120154,6.382713317871094),new google.maps.LatLng(53.15371592687194,6.3809967041015625),new google.maps.LatLng(53.16421454539665,6.395759582519531),new google.maps.LatLng(53.16833094982575,6.4043426513671875),new google.maps.LatLng(53.17744052008469,6.406745910644531),new google.maps.LatLng(53.18129504312286,6.42425537109375),new google.maps.LatLng(53.18808419529219,6.443138122558594),new google.maps.LatLng(53.19698389904798,6.448116302490234),new google.maps.LatLng(53.20405160883367,6.485195159912109),new google.maps.LatLng(53.20312622338325,6.486225128173828),new google.maps.LatLng(53.20312622338325,6.489143371582031),new google.maps.LatLng(53.20106973973282,6.492404937744141),new google.maps.LatLng(53.19952731223947,6.492576599121094),new google.maps.LatLng(53.19808766316714,6.493434906005859),new google.maps.LatLng(53.19798482924034,6.4963531494140625),new google.maps.LatLng(53.199938631664885,6.50665283203125),new google.maps.LatLng(53.19911598886695,6.509227752685547),new google.maps.LatLng(53.19829333028065,6.514549255371094),new google.maps.LatLng(53.19551674098759,6.528968811035156),new google.maps.LatLng(53.18381881222983,6.534461975097656),new google.maps.LatLng(53.18163109672928,6.539096832275391),new google.maps.LatLng(53.17875054821966,6.542015075683594),new google.maps.LatLng(53.181013852619245,6.547508239746094),new google.maps.LatLng(53.169387429534105,6.559009552001953),new google.maps.LatLng(53.157243199736484,6.563472747802734),new google.maps.LatLng(53.16321282683756,6.581153869628906),new google.maps.LatLng(53.16197779968934,6.580810546875),new google.maps.LatLng(53.162183640015215,6.582012176513672),new google.maps.LatLng(53.16107895161411,6.581840515136719),new google.maps.LatLng(53.157757855462606,6.58355712890625),new google.maps.LatLng(53.156110935420664,6.5869903564453125),new google.maps.LatLng(53.15384631719959,6.584587097167969),new google.maps.LatLng(53.15219924710034,6.585445404052734),new google.maps.LatLng(53.149419673033044,6.587333679199219),new google.maps.LatLng(53.145713294383235,6.587677001953125),new google.maps.LatLng(53.14478664973854,6.590423583984375),new google.maps.LatLng(53.14530145478723,6.595916748046875),new google.maps.LatLng(53.14378447779318,6.596946716308594),new google.maps.LatLng(53.144374801256674,6.599693298339844),new google.maps.LatLng(53.13922636200518,6.606044769287109),new google.maps.LatLng(53.13913711674109,6.607675552368164),new google.maps.LatLng(53.135481342662345,6.614542007446289),new google.maps.LatLng(53.132597695767394,6.613597869873047),new google.maps.LatLng(53.13295816221332,6.617031097412109),new google.maps.LatLng(53.13213423446486,6.617288589477539),new google.maps.LatLng(53.1317737611068,6.6185760498046875),new google.maps.LatLng(53.13110430256165,6.618919372558594),new google.maps.LatLng(53.13064082515124,6.618661880493164),new google.maps.LatLng(53.12935336167055,6.6192626953125),new google.maps.LatLng(53.12796285778584,6.621837615966797),new google.maps.LatLng(53.127756853383794,6.621150970458984),new google.maps.LatLng(53.12612251659227,6.621837615966797),new google.maps.LatLng(53.124666668853024,6.624240875244141),new google.maps.LatLng(53.123945593824985,6.62501335144043),new google.maps.LatLng(53.123739570166464,6.625957489013672),new google.maps.LatLng(53.12276094430246,6.627416610717773),new google.maps.LatLng(53.121782296156994,6.627845764160156),new google.maps.LatLng(53.121112681956134,6.62750244140625),new google.maps.LatLng(53.119464356405956,6.628789901733398),new google.maps.LatLng(53.11982493302082,6.6295623779296875),new google.maps.LatLng(53.119103776766636,6.630764007568359),new google.maps.LatLng(53.11833109592649,6.6295623779296875),new google.maps.LatLng(53.117506887722726,6.628961563110352),new google.maps.LatLng(53.116888721200176,6.627674102783203),new google.maps.LatLng(53.11642509047522,6.628618240356445),new google.maps.LatLng(53.11544629808132,6.628017425537109),new google.maps.LatLng(53.11508568474017,6.629390716552734),new google.maps.LatLng(53.11462203457157,6.630077362060547),new google.maps.LatLng(53.114364448984155,6.633596420288086),new google.maps.LatLng(53.11364320112968,6.634540557861328),new google.maps.LatLng(53.11338560967819,6.635828018188477),new google.maps.LatLng(53.112715864682215,6.636600494384766),new google.maps.LatLng(53.11256130666321,6.6357421875),new google.maps.LatLng(53.1119430690317,6.63548469543457),new google.maps.LatLng(53.111273301566705,6.635141372680664),new google.maps.LatLng(53.110448958058,6.636772155761719),new google.maps.LatLng(53.1080788824441,6.637201309204102),new google.maps.LatLng(53.107769732516715,6.635828018188477),new google.maps.LatLng(53.107099900050294,6.636085510253906),new google.maps.LatLng(53.106584637207774,6.63548469543457),new google.maps.LatLng(53.10586325885736,6.634540557861328),new google.maps.LatLng(53.112472006011586,6.656255722045898),new google.maps.LatLng(53.114687289132455,6.665182113647461),new google.maps.LatLng(53.11489335617858,6.665096282958984),new google.maps.LatLng(53.11628428290748,6.6707611083984375),new google.maps.LatLng(53.11649034229958,6.6707611083984375),new google.maps.LatLng(53.11704326366408,6.673851013183594),new google.maps.LatLng(53.12100966346093,6.695137023925781),new google.maps.LatLng(53.120185506611264,6.711187362670898),new google.maps.LatLng(53.12044305732415,6.712560653686523),new google.maps.LatLng(53.11936133396048,6.73736572265625),new google.maps.LatLng(53.111685467395105,6.749124526977539),new google.maps.LatLng(53.11147938497474,6.751270294189453),new google.maps.LatLng(53.11019134747073,6.751956939697266),new google.maps.LatLng(53.071274436329816,6.813497543334961),new google.maps.LatLng(52.99278048572272,6.936492919921875),new google.maps.LatLng(52.98801346532026,6.942243576049805),new google.maps.LatLng(52.92472486853658,7.0154571533203125),new google.maps.LatLng(52.91939488677428,7.025842666625977),new google.maps.LatLng(52.91577219458673,7.045583724975586),new google.maps.LatLng(52.87289792428519,7.014942169189453),new google.maps.LatLng(52.87269069925924,7.040262222290039),new google.maps.LatLng(52.86911591172496,7.042236328125),new google.maps.LatLng(52.86901229030165,7.0415496826171875),new google.maps.LatLng(52.86517812363601,7.043523788452148),new google.maps.LatLng(52.86595534696353,7.046613693237305),new google.maps.LatLng(52.85149671403349,7.062921524047852),new google.maps.LatLng(52.85206685888146,7.063694000244141),new google.maps.LatLng(52.85103022631516,7.064552307128906),new google.maps.LatLng(52.851548545692765,7.066011428833008),new google.maps.LatLng(52.84792018008101,7.069187164306641),new google.maps.LatLng(52.84983806825966,7.076139450073242),new google.maps.LatLng(52.84874954752886,7.076396942138672),new google.maps.LatLng(52.84517278724129,7.072105407714844),new google.maps.LatLng(52.839262711591864,7.071590423583984),new google.maps.LatLng(52.83884793923611,7.072105407714844),new google.maps.LatLng(52.83843316291898,7.071847915649414),new google.maps.LatLng(52.83822577327488,7.08918571472168),new google.maps.LatLng(52.8383813156008,7.092533111572266),new google.maps.LatLng(52.849796601936056,7.087554931640625),new google.maps.LatLng(52.94175571240716,7.1816253662109375),new google.maps.LatLng(53.00047411932833,7.20977783203125),new google.maps.LatLng(53.005639173399764,7.216300964355469),new google.maps.LatLng(53.010183909817634,7.212867736816406),new google.maps.LatLng(53.08139106396936,7.199134826660156),new google.maps.LatLng(53.113138321061825,7.202568054199219),new google.maps.LatLng(53.12179259846123,7.182655334472656),new google.maps.LatLng(53.123852883929594,7.186431884765625),new google.maps.LatLng(53.127149135273115,7.180595397949219),new google.maps.LatLng(53.13827211723317,7.178192138671875),new google.maps.LatLng(53.14753906944702,7.1898651123046875),new google.maps.LatLng(53.15742161483909,7.188835144042969),new google.maps.LatLng(53.15927433887775,7.1912384033203125),new google.maps.LatLng(53.161682759958005,7.19080924987793),new google.maps.LatLng(53.176590009887555,7.203941345214844),new google.maps.LatLng(53.18008796979925,7.227115631103516),new google.maps.LatLng(53.18811162361155,7.208404541015625),new google.maps.LatLng(53.19294566461905,7.212352752685547),new google.maps.LatLng(53.19520821996463,7.216129302978516),new google.maps.LatLng(53.201275392538236,7.217845916748047),new google.maps.LatLng(53.21525746849633,7.216987609863281),new google.maps.LatLng(53.228310140786164,7.210636138916016),new google.maps.LatLng(53.228234782025204,7.212181091308594),new google.maps.LatLng(53.332690876988124,7.18780517578125),new google.maps.LatLng(53.328590255501275,7.167034149169922),new google.maps.LatLng(53.32756503853955,7.089271545410156),new google.maps.LatLng(53.323771521564545,7.039318084716797),new google.maps.LatLng(53.324003926480124,7.02850341796875),new google.maps.LatLng(53.32438670939194,7.013912200927734),new google.maps.LatLng(53.32746251548838,7.001380920410156),new google.maps.LatLng(53.330333067796104,6.997089385986328)],province=new google.maps.Polyline(path,'#e7801c',5,0.7,{});this.map.addOverlay(province)},zoomToRegio:function(regionr){if(this.regio){this.map.removeOverlay(this.regio);this.regio=null};var path=[];switch(regionr){case 1:this.map.setCenter(new google.maps.LatLng(53.046992,6.9392),10);path=[new google.maps.LatLng(52.923807261265246,7.0209503173828125),new google.maps.LatLng(53.00114905398449,6.9261932373046875),new google.maps.LatLng(53.11916902452541,6.73736572265625),new google.maps.LatLng(53.12040528310657,6.7201995849609375),new google.maps.LatLng(53.13400178113812,6.7236328125),new google.maps.LatLng(53.13812108283923,6.7696380615234375),new google.maps.LatLng(53.14635850139119,6.7641448974609375),new google.maps.LatLng(53.1545943402534,6.7916107177734375),new google.maps.LatLng(53.169003257533205,6.7916107177734375),new google.maps.LatLng(53.16818002113253,6.837615966796875),new google.maps.LatLng(53.16982647814065,6.8863677978515625),new google.maps.LatLng(53.166533500950905,6.9303131103515625),new google.maps.LatLng(53.16324027106289,6.9522857666015625),new google.maps.LatLng(53.15541783726178,6.9976043701171875),new google.maps.LatLng(53.14059247428014,6.9948577880859375),new google.maps.LatLng(53.141004359030426,7.0690155029296875),new google.maps.LatLng(53.11298719831775,7.060089111328125),new google.maps.LatLng(53.07175230515131,7.0209503173828125),new google.maps.LatLng(53.02510931206494,6.9893646240234375),new google.maps.LatLng(53.00404151517865,7.0127105712890625),new google.maps.LatLng(52.923807261265246,7.0209503173828125)];this.regio=new google.maps.Polyline(path,"#ff6600",5,0.5,{});break;break;case 2:this.map.setCenter(new google.maps.LatLng(53.20315,6.983871),10);path=[new google.maps.LatLng(53.23768779333022,7.205657958984375),new google.maps.LatLng(53.21425694166793,7.218017578125),new google.maps.LatLng(53.19574984386951,7.2173309326171875),new google.maps.LatLng(53.18793333608315,7.208404541015625),new google.maps.LatLng(53.18011540323301,7.2269439697265625),new google.maps.LatLng(53.176411674459374,7.2015380859375),new google.maps.LatLng(53.160770182808506,7.1884918212890625),new google.maps.LatLng(53.14718215636126,7.1884918212890625),new google.maps.LatLng(53.13812108283923,7.1788787841796875),new google.maps.LatLng(53.12576199280272,7.180938720703125),new google.maps.LatLng(53.124113845537316,7.1857452392578125),new google.maps.LatLng(53.12040528310657,7.183685302734375),new google.maps.LatLng(53.122053572577755,7.05322265625),new google.maps.LatLng(53.140180585580396,6.9873046875),new google.maps.LatLng(53.158711667342324,6.9893646240234375),new google.maps.LatLng(53.16941486981107,6.966705322265625),new google.maps.LatLng(53.160770182808506,6.8973541259765625),new google.maps.LatLng(53.15665305315795,6.8465423583984375),new google.maps.LatLng(53.158711667342324,6.782684326171875),new google.maps.LatLng(53.17064968295498,6.7840576171875),new google.maps.LatLng(53.17353077543629,6.7531585693359375),new google.maps.LatLng(53.1899904499758,6.7545318603515625),new google.maps.LatLng(53.22001307546095,6.7778778076171875),new google.maps.LatLng(53.19657255126901,6.810150146484375),new google.maps.LatLng(53.232345043412565,6.8231964111328125),new google.maps.LatLng(53.243851676215854,6.865081787109375),new google.maps.LatLng(53.259873617486804,6.876068115234375),new google.maps.LatLng(53.247549579854095,6.9028472900390625),new google.maps.LatLng(53.261927278592474,6.91864013671875),new google.maps.LatLng(53.27465777647781,6.9824981689453125),new google.maps.LatLng(53.26644498590875,7.00927734375),new google.maps.LatLng(53.27588955899134,7.02850341796875),new google.maps.LatLng(53.27588955899134,7.079315185546875),new google.maps.LatLng(53.26521293124656,7.07794189453125),new google.maps.LatLng(53.25699832626436,7.0909881591796875),new google.maps.LatLng(53.252479620955086,7.1060943603515625),new google.maps.LatLng(53.25083633704159,7.1335601806640625),new google.maps.LatLng(53.24344077830769,7.1575927734375),new google.maps.LatLng(53.246316980814726,7.164459228515625),new google.maps.LatLng(53.24097530800699,7.17681884765625),new google.maps.LatLng(53.23850969567222,7.191925048828125),new google.maps.LatLng(53.23768779333022,7.205657958984375)];this.regio=new google.maps.Polyline(path,"#ff6600",5,0.5,{});break;case 3:this.map.setCenter(new google.maps.LatLng(52.99908,7.09854),10);path=[new google.maps.LatLng(52.834299,7.093048),new google.maps.LatLng(52.869959,7.016144),new google.maps.LatLng(52.98503,7.02877),new google.maps.LatLng(53.01974,6.966705),new google.maps.LatLng(53.14677,7.077942),new google.maps.LatLng(53.121642,7.183342),new google.maps.LatLng(53.113605,7.202568),new google.maps.LatLng(53.08332,7.198448),new google.maps.LatLng(53.005694,7.214241),new google.maps.LatLng(52.941811,7.181282),new google.maps.LatLng(52.849023,7.087212),new google.maps.LatLng(52.838447,7.091675),new google.maps.LatLng(52.838032,7.091675),new google.maps.LatLng(52.834299,7.093048)];this.regio=new google.maps.Polyline(path,"#ff6600",5,0.5,{});break;case 5:this.map.setCenter(new google.maps.LatLng(53.215902,6.433868),10);path=[new google.maps.LatLng(53.238715168791785,6.2134552001953125),new google.maps.LatLng(53.23131751505772,6.216888427734375),new google.maps.LatLng(53.22247975316637,6.227874755859375),new google.maps.LatLng(53.19019615593729,6.194572448730469),new google.maps.LatLng(53.160770182808506,6.176719665527344),new google.maps.LatLng(53.13400178113812,6.1777496337890625),new google.maps.LatLng(53.11442970393597,6.202125549316406),new google.maps.LatLng(53.10865939109362,6.281776428222656),new google.maps.LatLng(53.09938405173374,6.2917327880859375),new google.maps.LatLng(53.08536418826397,6.34735107421875),new google.maps.LatLng(53.1545943402534,6.382026672363281),new google.maps.LatLng(53.17764628624875,6.408119201660156),new google.maps.LatLng(53.18813905191336,6.44622802734375),new google.maps.LatLng(53.22062975820573,6.4579010009765625),new google.maps.LatLng(53.24652241645367,6.47369384765625),new google.maps.LatLng(53.25823061759921,6.497383117675781),new google.maps.LatLng(53.259873617486804,6.5251922607421875),new google.maps.LatLng(53.26480223847038,6.546478271484375),new google.maps.LatLng(53.272194104961834,6.535491943359375),new google.maps.LatLng(53.276300145274575,6.5265655517578125),new google.maps.LatLng(53.28163740806336,6.5196990966796875),new google.maps.LatLng(53.2865635206158,6.5100860595703125),new google.maps.LatLng(53.29415683157662,6.49566650390625),new google.maps.LatLng(53.30297979468481,6.48468017578125),new google.maps.LatLng(53.31159581310424,6.4496612548828125),new google.maps.LatLng(53.310980440878055,6.421165466308594),new google.maps.LatLng(53.312006056326894,6.3947296142578125),new google.maps.LatLng(53.30749316403736,6.3439178466796875),new google.maps.LatLng(53.3193897601862,6.31988525390625),new google.maps.LatLng(53.334153336203684,6.31439208984375),new google.maps.LatLng(53.33948337211114,6.295166015625),new google.maps.LatLng(53.327182284140974,6.282806396484375),new google.maps.LatLng(53.31262141376871,6.281776428222656),new google.maps.LatLng(53.310365059781184,6.294136047363281),new google.maps.LatLng(53.30441591850042,6.2889862060546875),new google.maps.LatLng(53.30195396238799,6.273193359375),new google.maps.LatLng(53.290873403268975,6.2677001953125),new google.maps.LatLng(53.28800019647413,6.252593994140625),new google.maps.LatLng(53.26726633596176,6.25396728515625),new google.maps.LatLng(53.26644498590875,6.246070861816406),new google.maps.LatLng(53.24508434626879,6.229591369628906),new google.maps.LatLng(53.238715168791785,6.2134552001953125)];this.regio=new google.maps.Polyline(path,"#ff009c",5,0.5,{});break;case 6:this.map.setCenter(new google.maps.LatLng(53.360438,6.37910),10);path=[new google.maps.LatLng(53.40871323837144,6.3343048095703125),new google.maps.LatLng(53.416489442117324,6.3851165771484375),new google.maps.LatLng(53.420990805007634,6.422882080078125),new google.maps.LatLng(53.42794651951662,6.4881134033203125),new google.maps.LatLng(53.42753739134195,6.519012451171875),new google.maps.LatLng(53.43449203479749,6.5251922607421875),new google.maps.LatLng(53.43121940315871,6.5348052978515625),new google.maps.LatLng(53.43531015333267,6.5691375732421875),new google.maps.LatLng(53.38496655811501,6.524505615234375),new google.maps.LatLng(53.36612356106063,6.558837890625),new google.maps.LatLng(53.33620342884369,6.5581512451171875),new google.maps.LatLng(53.31733885946147,6.5526580810546875),new google.maps.LatLng(53.29887631763788,6.5499114990234375),new google.maps.LatLng(53.2865635206158,6.5423583984375),new google.maps.LatLng(53.28163740806336,6.5457916259765625),new google.maps.LatLng(53.276300145274575,6.5430450439453125),new google.maps.LatLng(53.27506837459296,6.5416717529296875),new google.maps.LatLng(53.27424717441861,6.5389251708984375),new google.maps.LatLng(53.272194104961834,6.535491943359375),new google.maps.LatLng(53.276300145274575,6.5265655517578125),new google.maps.LatLng(53.28163740806336,6.5196990966796875),new google.maps.LatLng(53.2865635206158,6.5100860595703125),new google.maps.LatLng(53.29230993420693,6.4977264404296875),new google.maps.LatLng(53.30297979468481,6.48468017578125),new google.maps.LatLng(53.31159581310424,6.4496612548828125),new google.maps.LatLng(53.3107753148314,6.4180755615234375),new google.maps.LatLng(53.312006056326894,6.3947296142578125),new google.maps.LatLng(53.30749316403736,6.3439178466796875),new google.maps.LatLng(53.3193897601862,6.31988525390625),new google.maps.LatLng(53.334153336203684,6.31439208984375),new google.maps.LatLng(53.33948337211114,6.295166015625),new google.maps.LatLng(53.349731569053155,6.252593994140625),new google.maps.LatLng(53.34317300677391,6.2354278564453125),new google.maps.LatLng(53.3468623221994,6.229248046875),new google.maps.LatLng(53.3558793049223,6.219635009765625),new google.maps.LatLng(53.363665164191865,6.17706298828125),new google.maps.LatLng(53.387014207656314,6.164703369140625),new google.maps.LatLng(53.40666663266009,6.1887359619140625),new google.maps.LatLng(53.41689867661602,6.255340576171875),new google.maps.LatLng(53.400526224731614,6.2944793701171875),new google.maps.LatLng(53.39356602438166,6.310272216796875),new google.maps.LatLng(53.40871323837144,6.3343048095703125)];this.regio=new google.maps.Polyline(path,"#ff009c",5,0.5,{});break;case 7:this.map.setCenter(new google.maps.LatLng(53.32718,6.746292),10);path=[new google.maps.LatLng(53.458211078509784,6.83624267578125),new google.maps.LatLng(53.43612825611835,6.844482421875),new google.maps.LatLng(53.444308417781244,6.8204498291015625),new google.maps.LatLng(53.45085141324727,6.8108367919921875),new google.maps.LatLng(53.46556946837046,6.7559051513671875),new google.maps.LatLng(53.45657570756375,6.656341552734375),new google.maps.LatLng(53.43531015333267,6.5691375732421875),new google.maps.LatLng(53.38496655811501,6.524505615234375),new google.maps.LatLng(53.36612356106063,6.558837890625),new google.maps.LatLng(53.33620342884369,6.5581512451171875),new google.maps.LatLng(53.31733885946147,6.5526580810546875),new google.maps.LatLng(53.29887631763788,6.5499114990234375),new google.maps.LatLng(53.2865635206158,6.5423583984375),new google.maps.LatLng(53.28163740806336,6.5457916259765625),new google.maps.LatLng(53.276300145274575,6.5430450439453125),new google.maps.LatLng(53.27506837459296,6.5416717529296875),new google.maps.LatLng(53.24796043831027,6.6048431396484375),new google.maps.LatLng(53.22946790187269,6.6192626953125),new google.maps.LatLng(53.20027453918263,6.6886138916015625),new google.maps.LatLng(53.17353077543629,6.7531585693359375),new google.maps.LatLng(53.1899904499758,6.7545318603515625),new google.maps.LatLng(53.19657255126901,6.7778778076171875),new google.maps.LatLng(53.22001307546095,6.810150146484375),new google.maps.LatLng(53.232345043412565,6.8231964111328125),new google.maps.LatLng(53.243851676215854,6.865081787109375),new google.maps.LatLng(53.259873617486804,6.876068115234375),new google.maps.LatLng(53.247549579854095,6.9028472900390625),new google.maps.LatLng(53.261927278592474,6.91864013671875),new google.maps.LatLng(53.27465777647781,6.9824981689453125),new google.maps.LatLng(53.26644498590875,7.00927734375),new google.maps.LatLng(53.27588955899134,7.02850341796875),new google.maps.LatLng(53.27588955899134,7.079315185546875),new google.maps.LatLng(53.29313078734049,7.0827484130859375),new google.maps.LatLng(53.30913427097519,7.09716796875),new google.maps.LatLng(53.30174879297147,7.073822021484375),new google.maps.LatLng(53.3038004427794,7.035369873046875),new google.maps.LatLng(53.330052855303634,6.9316864013671875),new google.maps.LatLng(53.353010471859136,6.8994140625),new google.maps.LatLng(53.39766039774538,6.8863677978515625),new google.maps.LatLng(53.40789460790247,6.8753814697265625),new google.maps.LatLng(53.444717384524694,6.8829345703125)];this.regio=new google.maps.Polyline(path,"#ff009c",5,0.5,{});break;case 8:this.map.setCenter(new google.maps.LatLng(53.22718,6.746292),10);path=[new google.maps.LatLng(53.311600000000006,6.88602),new google.maps.LatLng(53.30626,6.85547),new google.maps.LatLng(53.30442000000001,6.843800000000001),new google.maps.LatLng(53.301950000000005,6.830750000000001),new google.maps.LatLng(53.267680000000006,6.730840000000001),new google.maps.LatLng(53.2496,6.681750000000001),new google.maps.LatLng(53.232350000000004,6.641240000000001),new google.maps.LatLng(53.20562,6.6762500000000005),new google.maps.LatLng(53.18793,6.65462),new google.maps.LatLng(53.17559000000001,6.66218),new google.maps.LatLng(53.11999,6.6972000000000005),new google.maps.LatLng(53.11876,6.739770000000001),new google.maps.LatLng(53.084540000000004,6.791950000000001),new google.maps.LatLng(53.150890000000004,6.823880000000001),new google.maps.LatLng(53.21014,6.844830000000001),new google.maps.LatLng(53.22495000000001,6.929970000000001),new google.maps.LatLng(53.311600000000006,6.88637)];this.regio=new google.maps.Polyline(path,"#ff009c",5,0.5,{});break;case 9:this.map.setCenter(new google.maps.LatLng(53.400900,6.695044),9);path=[new google.maps.LatLng(53.365303,6.165619),new google.maps.LatLng(53.270142,6.402283),new google.maps.LatLng(53.238922,7.206573),new google.maps.LatLng(53.564781,7.206573),new google.maps.LatLng(53.564781,6.165619),new google.maps.LatLng(53.365303,6.165619)];this.regio=new google.maps.Polyline(path,"#ff009c",5,0.5,{});break};if(this.regio)this.map.addOverlay(this.regio)}}),IconFactory=Class.create({icons:null,loaded:false,initialize:function(options){if(options&&options.icons)this._loadIcons(options)},getIcon:function(brancheid){if(this.icons&&!this.icons.get(brancheid))brancheid='default';if(this.icons&&this.icons.get(brancheid)){try{this.icons.get(brancheid).toLowerCase();var url=this.icons.get(brancheid),icon=new google.maps.Icon();icon.image=url;icon.iconSize=new GSize(30,35);icon.iconAnchor=new GPoint(15,32);icon.infoWindowAnchor=new GPoint(15,32);this.icons.set(brancheid,icon)}catch(e){};return this.icons.get(brancheid)};return false},_loadIcons:function(options){new Ajax.Request(options.icons,{method:'get',onSuccess:function(transport){this.icons=new Hash(transport.responseJSON);if(options.staticMarkers&&options.mngr)options.mngr.loadMarkersFromJSON(options.staticMarkers,{method:'get',center_after_loading:options.center_after_loading,isStatic:true});if(parent.location.hash.toString().indexOf('#filter:')==0){options.mngr.loadMarkersFromHash({method:'get',center_after_loading:true})}else if(options.markers&&options.mngr)options.mngr.loadMarkersFromJSON(options.markers,{method:'get',center_after_loading:true})}.bind(this)})}}),Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(input){var output="",chr1,chr2,chr3,enc1,enc2,enc3,enc4,i=0;input=Base64._utf8_encode(input);while(i<input.length){chr1=input.charCodeAt(i++);chr2=input.charCodeAt(i++);chr3=input.charCodeAt(i++);enc1=chr1>>2;enc2=((chr1&3)<<4)|(chr2>>4);enc3=((chr2&15)<<2)|(chr3>>6);enc4=chr3&63;if(isNaN(chr2)){enc3=enc4=64}else if(isNaN(chr3))enc4=64;output=output+this._keyStr.charAt(enc1)+this._keyStr.charAt(enc2)+this._keyStr.charAt(enc3)+this._keyStr.charAt(enc4)};return output},decode:function(input){var output="",chr1,chr2,chr3,enc1,enc2,enc3,enc4,i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(i<input.length){enc1=this._keyStr.indexOf(input.charAt(i++));enc2=this._keyStr.indexOf(input.charAt(i++));enc3=this._keyStr.indexOf(input.charAt(i++));enc4=this._keyStr.indexOf(input.charAt(i++));chr1=(enc1<<2)|(enc2>>4);chr2=((enc2&15)<<4)|(enc3>>2);chr3=((enc3&3)<<6)|enc4;output=output+String.fromCharCode(chr1);if(enc3!=64)output=output+String.fromCharCode(chr2);if(enc4!=64)output=output+String.fromCharCode(chr3)};output=Base64._utf8_decode(output);return output},_utf8_encode:function(string){string=string.replace(/\r\n/g,"\n");var utftext="";for(var n=0;n<string.length;n++){var c=string.charCodeAt(n);if(c<128){utftext+=String.fromCharCode(c)}else if((c>127)&&(c<2048)){utftext+=String.fromCharCode((c>>6)|192);utftext+=String.fromCharCode((c&63)|128)}else{utftext+=String.fromCharCode((c>>12)|224);utftext+=String.fromCharCode(((c>>6)&63)|128);utftext+=String.fromCharCode((c&63)|128)}};return utftext},_utf8_decode:function(utftext){var string="",i=0,c=c1=c2=0;while(i<utftext.length){c=utftext.charCodeAt(i);if(c<128){string+=String.fromCharCode(c);i++}else if((c>191)&&(c<224)){c2=utftext.charCodeAt(i+1);string+=String.fromCharCode(((c&31)<<6)|(c2&63));i+=2}else{c2=utftext.charCodeAt(i+1);c3=utftext.charCodeAt(i+2);string+=String.fromCharCode(((c&15)<<12)|((c2&63)<<6)|(c3&63));i+=3}};return string}}
