stimmenfryslan/maps/heatmaps/gemeentes_geel.html

4185 lines
14 MiB
HTML
Raw Permalink Normal View History

2019-03-19 13:33:38 +01:00
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS=false; L_NO_TOUCH=false; L_DISABLE_3D=false;</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style>#map_08fa7b2de2344893b5e222cc7ef30d78 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<style>
table.leaflet-filter-table td { padding-left: 10px; padding-right: 10px; border-bottom: 5px;}
table.leaflet-filter-table label { display: inline-block; min-width: 50px; }
.colorbar {
width: calc(2 * 25px);
position: relative;
background-color: rgba(255, 255, 255, 1);
position: fixed;
top: calc(50px * 2);
width: calc(20px * 2);
left: calc(5px * 2);
height: calc(100% - 2 * 100px);
z-index: 1000;
}
.colorbar .colors {
width: 100%;
height: 100%;
position: absolute;
top: 0; left:0;
background-color: rgba(255, 255, 255, 1);
}
.colorbar .tick {
left: 100%;
position: absolute;
width: 20%;
border-style: solid;
border-color: black;
border-width: 2px 0 0 0;
height: 10px;
}
.colorbar .label {
border-radius: calc(25pt / 4);
background-color: #fff;
color: #000;
left:130%;
position: absolute;
border: 0;
height: 25pt;
margin-top: calc(25pt / -2);
line-height: 25pt;
vertical-align: middle;
font-size: 25pt;
padding: 0px 3px;
font-family: Garamond;
}
</style>
<script langauge="JavaScript">
jQuery.prototype.colorbar_legend = function(colormap, smooth) {
$(this).html('')
var colormap_ = {}
for (var idx in colormap) {
colormap_[parseFloat(idx)] = colormap[idx];
}
colormap = colormap_
var colors_div = $('<div class="colors"></div>');
var tick_locations = Object.keys(colormap).map(parseFloat);
tick_locations.sort();
tick_locations.reverse();
var previous = undefined;
var color_style = (
'linear-gradient(' +
tick_locations.map(function(tick) {
var prepend = '';
if (!smooth)
prepend = previous ? previous + ' ' + (100 * (1-tick) + 0.001) + '%, ' : '';
previous = colormap[tick].color;
return (
prepend + colormap[tick].color + ' ' + (100 * (1-tick)) + '%'
);
}).join(', ') + ')'
);
colors_div.css('background-image', color_style);
$(this).append(colors_div);
for(var i in tick_locations) {
var tick = tick_locations[i];
var top = tick == 0 ? 'calc(100% - 1px)' : (100 * (1-tick)) + '%';
if ('value' in colormap[tick]) {
var label = $('<div class="label">' + colormap[tick].value + '</div>');
label.css('top', top);
label.css('left', '130%');
var tick_ = $('<div class="tick"></div>');
tick_.css('top', top);
$(this).append(tick_);
// label.css('width', '100%');
$(this).append(label);
}
}
};
var color_to_rgba = function(color) {
var rgba = $('div').css('color', color).css('color');
rgba = rgba.replace('rgb(', '').replace('rgba(', '').replace(')', '').split(',').map(parseFloat);
if (rgba.length < 4) // jquery's color sometimes does not return an alpha if it is 1.
rgba.push(1);
return rgba;
};
var colormap = function(start, end) {
return (function(start, end, value) {
var value = Math.max(0, Math.min(value, 1));
return (
'rgba(' + [0, 1, 2, 3].map(
i => start[i] + value * (end[i] - start[i])
).join(',') + ')');
}).bind(null, color_to_rgba(start), color_to_rgba(end))
};
$(function() {
var legend = $('<div class="colorbar"></div>');
$('body').append(legend);
legend.colorbar_legend({"0.0": {"color": "rgba(255,255,204,0.8)", "value": "0%"}, "0.2": {"color": "rgba(254,225,134,0.8)", "value": "20%"}, "0.4": {"color": "rgba(253,170,72,0.8)", "value": "40%"}, "0.6": {"color": "rgba(252,90,45,0.8)", "value": "60%"}, "0.8": {"color": "rgba(211,15,32,0.8)", "value": "80%"}, "1.0": {"color": "rgba(129,0,38,0.8)", "value": "100%"}}, true);
});
</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"/>
</head>
<body>
<div class="folium-map" id="map_08fa7b2de2344893b5e222cc7ef30d78" ></div>
</body>
<script>
var bounds = null;
var map_08fa7b2de2344893b5e222cc7ef30d78 = L.map(
'map_08fa7b2de2344893b5e222cc7ef30d78', {
center: [53.173715, 5.871837748850865],
zoom: 9,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var feature_group_1502219ea0134be288779dc88c7a395d = L.featureGroup(
).addTo(map_08fa7b2de2344893b5e222cc7ef30d78);
var tile_layer_87fd9ba3131f414e9ff1e44ec9242edb = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"subdomains": "abc"
}).addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var polygon_b81d67bb6c0e458e96cb2a08d9269758 = L.polygon(
[[[53.269759508775365, 6.194671132611735], [53.26966256466082, 6.1949765937649], [53.26960830536876, 6.195151984432215], [53.26964221149918, 6.195179629389442], [53.269623008143704, 6.195242553242415], [53.26961811063762, 6.195258589550095], [53.26937791554775, 6.19604553754901], [53.26921755430138, 6.196613832786641], [53.269086120483635, 6.197084055563407], [53.268907899497286, 6.197738897615405], [53.26881991147339, 6.198088851008265], [53.26877497954512, 6.198267556729182], [53.26876743260404, 6.1983033278076665], [53.268764465279176, 6.19833023690617], [53.268761605003284, 6.198346655731733], [53.26876232793156, 6.198364670592993], [53.26876488694076, 6.198378238169626], [53.26876834463733, 6.198391838190719], [53.268777144133935, 6.198410079872639], [53.26878772031936, 6.198431367520512], [53.26881414914032, 6.198487038237103], [53.268831726259805, 6.198524075668228], [53.26883429592207, 6.19853614496885], [53.268840312582604, 6.198563313550326], [53.26884365306568, 6.198588901301505], [53.26884394524377, 6.198590870956022], [53.26884702255867, 6.198611493500448], [53.26884804640412, 6.1986262014232025], [53.268848595667585, 6.198634035463153], [53.268850013207874, 6.198671564160531], [53.268851320622396, 6.198702825048716], [53.26885139068103, 6.198704469419138], [53.26885146031491, 6.1987060954847735], [53.26884839353408, 6.198744786796262], [53.268848376234054, 6.1987449932248655], [53.268846489327316, 6.19875428088197], [53.26884298438064, 6.198771619811379], [53.26883419022517, 6.198815084081894], [53.26880876539925, 6.198931337659331], [53.26870780958379, 6.199375293158311], [53.26870439211742, 6.19939030719791], [53.268617884465414, 6.199771789529354], [53.268610376272804, 6.199803064534829], [53.26856391747034, 6.199954729317168], [53.26840382162373, 6.2005035946131954], [53.268235472362036, 6.2010687268907505], [53.26816979608277, 6.201344312109932], [53.268073703573116, 6.2017840000635225], [53.267992998786774, 6.202229447287939], [53.267910976375624, 6.2026821975194455], [53.2678932043684, 6.2028406489501595], [53.267731307699854, 6.203834840757127], [53.26768004858667, 6.204283280700766], [53.26766782100095, 6.204426893031735], [53.26762005633225, 6.204884391387382], [53.26758332477131, 6.2051413291265645], [53.26750503251955, 6.205602819233884], [53.26749898488233, 6.205638451771671], [53.267494453509585, 6.205665179910391], [53.267456199035415, 6.205893535192691], [53.26740471211465, 6.206097537422055], [53.267329306972236, 6.2064448081412795], [53.267303343637586, 6.206426838848215], [53.26729092999902, 6.206418240062203], [53.2671921357428, 6.2067678526254095], [53.26714493241874, 6.2067574688941605], [53.26713743160457, 6.206755812469838], [53.267109615747216, 6.2067499638139525], [53.26704685903486, 6.20673675171938], [53.26700374575687, 6.206734044974832], [53.267010060843866, 6.206821200981218], [53.266967723704866, 6.20695491490284], [53.26694301922232, 6.207032938359169], [53.266940428687064, 6.207041162612057], [53.266910945752315, 6.207159713236561], [53.26688741341757, 6.207418709757151], [53.266858059800725, 6.2076326759736205], [53.266764076603636, 6.208483273656984], [53.26671646932924, 6.208722476172495], [53.266714173323, 6.2087494409111335], [53.26671241268521, 6.208770300425963], [53.266634239937346, 6.209267402868237], [53.266631079785206, 6.209286707962972], [53.266629176064896, 6.209298331672999], [53.266614415248725, 6.209388428522967], [53.26656765938793, 6.209619806597593], [53.26654595668374, 6.20975128696196], [53.266473336981015, 6.210416941286713], [53.266456358189025, 6.210518520583605], [53.26643734978252, 6.210650051570928], [53.26641576682591, 6.210766545402872], [53.26638860179508, 6.211020851732452], [53.26632413383465, 6.211448259872339], [53.266310793846216, 6.211515779931415], [53.26623685020235, 6.211906930022046], [53.26621515200588, 6.211900040594912], [53.26601706153361, 6.211945565333452], [53.266010408459756, 6.2119565592105115], [53.26600098929331, 6.211981724164535], [53.26597329118088, 6.2120712715344], [53.26593984958193, 6.21218972492678
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ac0026",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_f0852458584448a5a49eee70e0559f52 = L.popup({maxWidth: '300'
});
var html_b8630f72fa2940b48907ecb9bf433f25 = $('<div id="html_b8630f72fa2940b48907ecb9bf433f25" style="width: 100.0%; height: 100.0%;">Achtkarspelen (243, 91%)</div>')[0];
popup_f0852458584448a5a49eee70e0559f52.setContent(html_b8630f72fa2940b48907ecb9bf433f25);
polygon_b81d67bb6c0e458e96cb2a08d9269758.bindPopup(popup_f0852458584448a5a49eee70e0559f52)
;
var polygon_83a8941d52c6462f84872fdb32cc5613 = L.polygon(
[[[53.085088543925515, 5.874575981389083], [53.085073180952044, 5.874634822180829], [53.08507017193695, 5.874643340273311], [53.08506889045081, 5.874635863471304], [53.085056565491556, 5.874643769529419], [53.085034392838004, 5.87465571337816], [53.085017549230436, 5.874654420122894], [53.08501498093187, 5.874605483049306], [53.085013635600994, 5.874474651879138], [53.08500660910789, 5.874428052333491], [53.08495843096827, 5.874373827218185], [53.084956284649834, 5.874201198046077], [53.08497610816547, 5.874121707191524], [53.084976366590084, 5.874082443263308], [53.08497231085913, 5.874058800863846], [53.08496408486037, 5.874055320805154], [53.08495029467539, 5.87407004623361], [53.08494274956134, 5.87407581252407], [53.08493362415112, 5.874070291898426], [53.084926812258765, 5.874050589370601], [53.08492569167721, 5.874032264264528], [53.08494198741108, 5.873964897545452], [53.084976012602496, 5.87385562704371], [53.08500418574085, 5.87375130546824], [53.085036368759624, 5.873635342286888], [53.085072607701996, 5.873558497270963], [53.08508336027202, 5.873532872830523], [53.08508196691698, 5.8733912955264165], [53.08506909540108, 5.873263827640352], [53.0850492442375, 5.873193309123472], [53.08498057178848, 5.873091737648598], [53.084933432040806, 5.872996243903468], [53.08484862000784, 5.872905820749675], [53.084808356326775, 5.872905071319804], [53.08478624330206, 5.872904659856547], [53.08478542569847, 5.8729046206449285], [53.08478460809115, 5.872904582344204], [53.08474844790223, 5.872920220957429], [53.08463644855481, 5.872961547872281], [53.084622535104955, 5.872966675519677], [53.08454359440721, 5.872990596437782], [53.08444727549939, 5.873012099156913], [53.08434522765401, 5.873036895308143], [53.08422291824529, 5.873081180466668], [53.084191139341705, 5.873084481097982], [53.08416836549936, 5.873076345752845], [53.08413584769496, 5.873031432289154], [53.08409556026476, 5.872961254148758], [53.0840578628499, 5.872910492175134], [53.084023717097075, 5.872865858601872], [53.084007593961374, 5.872830949490496], [53.08400094421276, 5.87278663917818], [53.08400081023549, 5.872695672703833], [53.08399729112153, 5.872391204350249], [53.08399008676143, 5.872055697327266], [53.083988447223916, 5.8719968320385245], [53.08398150579813, 5.871944563593095], [53.08396732725833, 5.8719087055437935], [53.08394572525907, 5.871881913838539], [53.08392109996579, 5.871871684342264], [53.083825441235405, 5.871867810400127], [53.083684366098815, 5.871863966704613], [53.083613899859095, 5.8718700297698625], [53.083520136131284, 5.871886324438561], [53.083324564955944, 5.871932569232413], [53.08312811446721, 5.871969491684642], [53.08291931429603, 5.872005021548086], [53.08276418673284, 5.872047389372373], [53.08263742266685, 5.872075641697114], [53.08251692805145, 5.872097950246072], [53.08239858854058, 5.872113984001344], [53.08232871748479, 5.872132738975617], [53.082298667792976, 5.87213511945514], [53.0822916380145, 5.872135682165933], [53.082259488114616, 5.872132950091286], [53.082222088066615, 5.87211957859239], [53.082187482921064, 5.872090791677741], [53.0821595279371, 5.872043991815099], [53.08213075844629, 5.871972006284111], [53.08209916340635, 5.871887646923096], [53.08207157887283, 5.871838195311417], [53.08203762979681, 5.871804759656209], [53.08199583473964, 5.8717895185992415], [53.0819435136779, 5.871786024162847], [53.08187634937454, 5.871786617772486], [53.08182334518438, 5.871781026186068], [53.081813400582966, 5.871773662803919], [53.081802192830764, 5.871765358967488], [53.08179035227532, 5.871729111703088], [53.081746395250946, 5.871575071291762], [53.08174177037524, 5.871558857225356], [53.08171650345368, 5.8714539757224085], [53.08165020498854, 5.87125161749373], [53.08158504715924, 5.871060479887116], [53.08152719428043, 5.8708471591080995], [53.0814476683701, 5.870582230323719], [53.08142950009133, 5.870506111280532], [53.081425285811875, 5.870425924912282], [53.081432132094506, 5.870312657129354], [53.08127265373181, 5.870324402696038], [53.081066272081046, 5.87035519029482], [53.0808951
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#c60623",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_f50279d663c34a868653e44b098f79bf = L.popup({maxWidth: '300'
});
var html_4448643f72a149d18086409b8761cf2f = $('<div id="html_4448643f72a149d18086409b8761cf2f" style="width: 100.0%; height: 100.0%;">Heerenveen (117, 84%)</div>')[0];
popup_f50279d663c34a868653e44b098f79bf.setContent(html_4448643f72a149d18086409b8761cf2f);
polygon_83a8941d52c6462f84872fdb32cc5613.bindPopup(popup_f50279d663c34a868653e44b098f79bf)
;
var polygon_1130acdeb70d46b58e69ce2489bca83f = L.polygon(
[[[53.29467007108855, 5.73581343441129], [53.294622941823796, 5.735903516799399], [53.29464216168692, 5.735928146960399], [53.294657843738975, 5.735973715624759], [53.29467833641181, 5.7360644639402505], [53.294673698965674, 5.736145261352982], [53.2946413419833, 5.736303219271786], [53.29461058505068, 5.7364670390209005], [53.29459693184507, 5.73671258161576], [53.294587598425814, 5.7368365023489165], [53.294586486040956, 5.736851259794231], [53.294584945766516, 5.736871709091462], [53.294583279974766, 5.736893827887364], [53.29455636684815, 5.737251099349593], [53.29451175271746, 5.737975547680568], [53.29446975453135, 5.738787148950071], [53.2944214210726, 5.739826501645531], [53.294375118580845, 5.740691904064966], [53.29433548779892, 5.741608498117357], [53.29429299550967, 5.7426090518144335], [53.29425829692361, 5.743402857533427], [53.294210395996124, 5.744253242746667], [53.29418200772737, 5.7448251426459125], [53.29414822585497, 5.745396997917746], [53.29410989484453, 5.745896678128958], [53.294078272963574, 5.746435556127786], [53.29405253414856, 5.746929641685797], [53.2940358673638, 5.747273982150564], [53.29402184183196, 5.7475465093912765], [53.294024936871416, 5.747623004674741], [53.29402825958456, 5.747704391625001], [53.29403012411911, 5.7477508378921165], [53.29402270108174, 5.747918740889447], [53.294004796044455, 5.74831556058915], [53.29399293968741, 5.748553162370716], [53.293962856531124, 5.748875644407773], [53.29393937422782, 5.749362847288765], [53.29393458407746, 5.7497890191818275], [53.293932687563625, 5.750179073183655], [53.29394524861445, 5.750868437763484], [53.29395336922122, 5.751213135289207], [53.293947225770246, 5.751372350672035], [53.29393670957827, 5.751876908556262], [53.293928611256796, 5.752324347551778], [53.29392217462733, 5.752756654362041], [53.29393657368194, 5.753250925141817], [53.29395553453461, 5.75360396332734], [53.29396242106563, 5.753879665489254], [53.29396967309522, 5.75418236514928], [53.293979958569984, 5.754550777409503], [53.2939943603572, 5.75474811025315], [53.293995956727905, 5.7549310867401555], [53.293987368676916, 5.755153417452902], [53.29397390926391, 5.755499131883724], [53.29398874107949, 5.755819443796086], [53.29400928959606, 5.756355310002215], [53.29403444820912, 5.756852075335567], [53.29404780170891, 5.757388480407635], [53.29405669152696, 5.757972988954264], [53.294070755801464, 5.758452413409307], [53.29407912221457, 5.758913941715893], [53.294091626983345, 5.75940235111007], [53.29409627567264, 5.75965704883129], [53.294102456099054, 5.759995875315465], [53.2941133732203, 5.7605022681381834], [53.29412517071452, 5.760753720000888], [53.29418759091036, 5.761426726346741], [53.294238811170175, 5.761742709018887], [53.294324690528654, 5.762210313602651], [53.294434404977714, 5.762842045816712], [53.29449161023956, 5.763196776098054], [53.29449106820005, 5.7632839046071735], [53.29441218545812, 5.76353921708975], [53.294307534889036, 5.763873787813065], [53.294206326969054, 5.764199088939051], [53.294116435936, 5.76443990432277], [53.29389889986343, 5.76504012772369], [53.29381627706413, 5.765283552594293], [53.29371427762757, 5.765645102625359], [53.2936675247273, 5.765799533901518], [53.2935283212751, 5.7662274904023], [53.293480944620164, 5.766422916208645], [53.293417846381494, 5.766782238449316], [53.29340687332183, 5.766868013424954], [53.29340280451819, 5.766981308107443], [53.29340478237672, 5.767100204763587], [53.29339338947, 5.767196578184185], [53.293372832319704, 5.767306983303085], [53.29334539614279, 5.767399031179917], [53.29332235676003, 5.767467302738134], [53.29332019989755, 5.767473162862594], [53.29330290654165, 5.767520234801335], [53.29328786180302, 5.767561042822517], [53.29326310128061, 5.767622415769418], [53.29323477510521, 5.767703103496732], [53.29314839578088, 5.767987487381539], [53.29311705576306, 5.768109163646196], [53.29310060965478, 5.7681751989209715], [53.293073940022964, 5.768294396311035], [53.293065376864014, 5.768331227314122], [53.2930479662884, 5.768403896386138], [53.29303045974051,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fd933e",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_ece437efd36a4c65a41b22f4faed6f09 = L.popup({maxWidth: '300'
});
var html_06706c389a99492f9ab057e1b4ac71c0 = $('<div id="html_06706c389a99492f9ab057e1b4ac71c0" style="width: 100.0%; height: 100.0%;">Leeuwarden (180, 48%)</div>')[0];
popup_ece437efd36a4c65a41b22f4faed6f09.setContent(html_06706c389a99492f9ab057e1b4ac71c0);
polygon_1130acdeb70d46b58e69ce2489bca83f.bindPopup(popup_ece437efd36a4c65a41b22f4faed6f09)
;
var polygon_ea365ceffaba41e68326cc7602f8b214 = L.polygon(
[[[52.92339365270775, 6.246637363120104], [52.923438178540636, 6.246039873821533], [52.92349204334805, 6.245218950245877], [52.923499109178266, 6.245119802200247], [52.92352559278043, 6.244749569352325], [52.923533226641226, 6.244653912042559], [52.923601339024486, 6.243678274029418], [52.923608004973126, 6.243590880085666], [52.9236191670756, 6.243479306202213], [52.923622430301286, 6.243446626949409], [52.9236331722655, 6.243329676317513], [52.9236976784566, 6.24249714866299], [52.923763183409456, 6.241603417062132], [52.92380499442227, 6.241060035237014], [52.92387481612106, 6.240150517186916], [52.92393265392701, 6.239343872984964], [52.923998553526154, 6.23848594751974], [52.92405718453197, 6.237690035064976], [52.924137439247666, 6.2365332113809435], [52.92416510657122, 6.236079910872133], [52.92416731397021, 6.236043774845062], [52.924167507908216, 6.2360424961724865], [52.92417921230438, 6.235965372330708], [52.92417926635942, 6.235964635498799], [52.9241793216984, 6.235963872371296], [52.924200062631954, 6.235685786890971], [52.92420126534108, 6.235669601341726], [52.924346624274946, 6.23371999215692], [52.92435551320954, 6.233600711456737], [52.92437305092755, 6.233365491614247], [52.9243784635512, 6.2332928961499166], [52.92441913794229, 6.232747276223095], [52.92442021392291, 6.23273119243524], [52.92444701714578, 6.232331908312756], [52.924450322576284, 6.2322826037445545], [52.92446397528783, 6.232079174793214], [52.924493509874665, 6.231639049405093], [52.92455090343259, 6.2306441900887135], [52.92458121567918, 6.23022935863989], [52.92460595606181, 6.229888175367797], [52.92462610962797, 6.229621284894818], [52.92464745450975, 6.229315352515273], [52.924650583813076, 6.229261523275657], [52.92465440337996, 6.229188910638767], [52.92465512872017, 6.229179079737471], [52.92470645900492, 6.2282293624105005], [52.924708591462185, 6.228212406600578], [52.924789889523474, 6.227565995845106], [52.92485098779344, 6.226783337678955], [52.92485371464046, 6.226748281642792], [52.92490858111243, 6.225825882144906], [52.9249486821658, 6.225377624924184], [52.92498431347596, 6.224948820324664], [52.92503163288913, 6.22434215114813], [52.92509545910863, 6.223438966133852], [52.92514490055706, 6.222742412495018], [52.92515101671916, 6.222667195881659], [52.92518389274079, 6.222237798953602], [52.92554462798293, 6.217136307971307], [52.92579450474501, 6.213630170666528], [52.92594574189356, 6.213574505762779], [52.9261394087772, 6.213493649520836], [52.926268670663255, 6.213443575064706], [52.9264253857966, 6.21337932739512], [52.926428935931696, 6.213377952397929], [52.926588257699095, 6.213316296888089], [52.92671593749798, 6.213266235904952], [52.9267171250413, 6.213266549758793], [52.92671831479719, 6.213266860931595], [52.92676654907715, 6.213245675905537], [52.92701946431672, 6.213131215379608], [52.92719819002906, 6.213058921088531], [52.92737438084739, 6.2129671413507825], [52.92749517272789, 6.212913765729207], [52.927636093283105, 6.212851490862989], [52.927924643256446, 6.212736673847221], [52.92808590448244, 6.212672507297477], [52.92815191172498, 6.212645322657915], [52.92822641416118, 6.212615056482835], [52.92833036801372, 6.212571561679011], [52.92842618623831, 6.212527213760475], [52.92847993556371, 6.212503812325491], [52.92852378315215, 6.212481531417318], [52.928618428070706, 6.212439168726138], [52.928692326436774, 6.2124066148501305], [52.928759497642, 6.212374811304882], [52.92883971881619, 6.212338897647266], [52.928944261749585, 6.212284273398289], [52.92900935304022, 6.212251745719628], [52.92902044334019, 6.212246424011131], [52.929093365102176, 6.212205641740833], [52.92925311548963, 6.212125976491811], [52.92937322776896, 6.212068166493651], [52.92946274242413, 6.212030790967197], [52.929515511950065, 6.21201001673567], [52.92957261881331, 6.211984594389259], [52.9296619136001, 6.211941325090266], [52.929716533117535, 6.211912941745805], [52.92974565592678, 6.211897802639701], [52.929860217907716, 6.211839409846043], [52.929885503155944, 6.2118269194178435], [52.92990487642407
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#e2191c",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_80dca6b246f746e28983bc9f7ec87395 = L.popup({maxWidth: '300'
});
var html_93601177a5914ba8beee64d0a065b12e = $('<div id="html_93601177a5914ba8beee64d0a065b12e" style="width: 100.0%; height: 100.0%;">Ooststellingwerf (24, 75%)</div>')[0];
popup_80dca6b246f746e28983bc9f7ec87395.setContent(html_93601177a5914ba8beee64d0a065b12e);
polygon_ea365ceffaba41e68326cc7602f8b214.bindPopup(popup_80dca6b246f746e28983bc9f7ec87395)
;
var polygon_38bc5fa4b7974d789249a2a18ea54584 = L.polygon(
[[[53.075024750782205, 6.33088403100416], [53.07499671345996, 6.330755051368262], [53.074961418035635, 6.330592694184935], [53.07470848200836, 6.329429181981148], [53.07469778075883, 6.329392481031124], [53.07435644613559, 6.327788233011823], [53.07434299569208, 6.327725031305147], [53.074327680294594, 6.327702465299188], [53.0743043064912, 6.327600655924339], [53.07416434065755, 6.326954288763919], [53.07388908070573, 6.325697137012846], [53.073879546032416, 6.325653583153511], [53.073873118426164, 6.32561375310665], [53.07387129489849, 6.325605610807539], [53.07373703557545, 6.325003802234907], [53.07360463507531, 6.324397127771732], [53.07341350898111, 6.32349590849253], [53.07321474188596, 6.322600979684662], [53.072950350901344, 6.321403071483377], [53.072851759012025, 6.320967875585375], [53.072839214675255, 6.320912441588206], [53.07266889064115, 6.320128012264357], [53.07264536349252, 6.320040412118983], [53.072491732786105, 6.319315689367889], [53.07246559881844, 6.319196997875373], [53.07208989371531, 6.317490550737626], [53.072060494007175, 6.317357019880042], [53.07203088671055, 6.317237480455523], [53.07192281020471, 6.316741878443809], [53.071813264436244, 6.316239563871966], [53.07175186095162, 6.315958036460779], [53.07172073732537, 6.315813682717981], [53.07161203898506, 6.315282713221933], [53.07158795972445, 6.315170858854745], [53.071549140483754, 6.314993232613543], [53.07151643017462, 6.314843549765585], [53.07145028781968, 6.314567818173011], [53.0714199233794, 6.314441223834028], [53.07138960383502, 6.314310019809197], [53.071368645808, 6.314220882968744], [53.07135699591466, 6.314171440617826], [53.0713154200946, 6.3140443242853115], [53.071304545336936, 6.313995778314027], [53.07118619267397, 6.313468775372425], [53.07097677496012, 6.312519148199111], [53.070668317475665, 6.3111425001543795], [53.070625785466476, 6.310952522857692], [53.07059549071986, 6.31081647492298], [53.07055681166261, 6.310638471771897], [53.07047261812388, 6.310257344160436], [53.07030652994019, 6.309484489280142], [53.07004798213705, 6.308275155194859], [53.06989488582169, 6.307609598789013], [53.06989211221739, 6.3075975293287385], [53.06973233363981, 6.306871380601445], [53.06957333177434, 6.306147655111954], [53.06954178369395, 6.305992683201085], [53.069485939469736, 6.305729505040059], [53.06923523505859, 6.304679624001984], [53.06922427901373, 6.304639973478072], [53.06920664256659, 6.30457617636794], [53.06919831970276, 6.304546055855748], [53.06916491608359, 6.304425169961116], [53.06888627731863, 6.303188872344145], [53.06885798055557, 6.303023097948107], [53.068798371677076, 6.3027143732142905], [53.06872375731938, 6.302378268153754], [53.068590767095145, 6.301750356911145], [53.06851264988086, 6.301386564784298], [53.06840082286547, 6.300876866183299], [53.068291261664534, 6.300364368549857], [53.06822382393792, 6.300050249120956], [53.0681310808945, 6.299629849491105], [53.06803669412818, 6.299186784656834], [53.06797823819079, 6.298908232248924], [53.067943577435386, 6.298743031780792], [53.06786083561045, 6.298358773129177], [53.067772171790196, 6.297949477397966], [53.06769494084855, 6.297578705113916], [53.06763130438719, 6.297276655901535], [53.06757722159562, 6.2970227722088135], [53.067558604816476, 6.29693371626963], [53.06752272337477, 6.296762062740718], [53.06745261049954, 6.296439216884625], [53.06738603792838, 6.296122278606364], [53.067303599323694, 6.2957252961199845], [53.067207389058694, 6.295263604922786], [53.067131265983235, 6.294896163711612], [53.06705767842728, 6.294539085652645], [53.06703547885233, 6.294436335405129], [53.066988961844615, 6.294220974773012], [53.0669092772633, 6.293857043381497], [53.066786780181246, 6.293272311150536], [53.066675039317026, 6.292770458868134], [53.066566023930996, 6.292253746958136], [53.06656022655965, 6.29222775637435], [53.0664675664247, 6.2917820292035485], [53.066407101100516, 6.291509154588384], [53.06631592077197, 6.291075351731674], [53.06625187909596, 6.290761750921743], [53.06619884638115, 6.290511024194362], [53.06616505086
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#a80026",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_17da40fda1754f6ba7f8673a6476eb62 = L.popup({maxWidth: '300'
});
var html_2a033017f9504c7fa1e09c75e1c8bf42 = $('<div id="html_2a033017f9504c7fa1e09c75e1c8bf42" style="width: 100.0%; height: 100.0%;">Opsterland (142, 92%)</div>')[0];
popup_17da40fda1754f6ba7f8673a6476eb62.setContent(html_2a033017f9504c7fa1e09c75e1c8bf42);
polygon_38bc5fa4b7974d789249a2a18ea54584.bindPopup(popup_17da40fda1754f6ba7f8673a6476eb62)
;
var polygon_c89a94f162404afabb2332a756ca53d8 = L.polygon(
[[[53.129004290697836, 6.185205456396789], [53.12878402801594, 6.184637382895723], [53.12866293869319, 6.184552356459142], [53.12863606870793, 6.1845350088165025], [53.12860560950466, 6.184518238956394], [53.12857366425987, 6.184503233623007], [53.12844884344676, 6.184436112392388], [53.12832017489787, 6.184374702051629], [53.128344107083166, 6.184260925641066], [53.128355836304586, 6.184205175154044], [53.12836363044045, 6.184162828850948], [53.128378421498574, 6.184072399539608], [53.128402149669, 6.18393523680231], [53.12842796256485, 6.183748063112858], [53.128445785662684, 6.183632575312069], [53.128451584226525, 6.183582228754377], [53.128450058900256, 6.183549391484616], [53.12844414842142, 6.183531504989477], [53.12829613650106, 6.1831461097744365], [53.1280839742825, 6.182591150810729], [53.12783363136727, 6.18194475237793], [53.12746737123084, 6.18100287901184], [53.127231657575614, 6.180395894190656], [53.12722714266637, 6.180384277599109], [53.12704789095999, 6.179908396571067], [53.12659416100301, 6.178714992277736], [53.1263425693519, 6.178069407443114], [53.12597940787836, 6.177120470984835], [53.12589576165826, 6.176905524243147], [53.1256777016774, 6.1763452019049545], [53.12542936033279, 6.175703677455262], [53.1253709521381, 6.175540854619665], [53.125363412038865, 6.175510884020647], [53.125339312423016, 6.175415059665019], [53.125366876258546, 6.175421432011016], [53.125304143409295, 6.175252122078895], [53.125157695974885, 6.174861239836279], [53.125019276018165, 6.1745121416340325], [53.12488779600366, 6.174167965904283], [53.12479857363469, 6.1745355900756085], [53.12479743913732, 6.174541470618477], [53.12470776702961, 6.1744865547814785], [53.12470977446335, 6.174378045702155], [53.124712020294915, 6.174323395199683], [53.12470855748041, 6.1742801150680435], [53.12470376570965, 6.174233911307572], [53.1246978115513, 6.174170448065007], [53.12469147612318, 6.174110248525987], [53.12468466337076, 6.174051654216709], [53.12467637343959, 6.173990822013972], [53.12466545436866, 6.173900632502742], [53.12466319098861, 6.173859345518153], [53.1246646814945, 6.17381578061165], [53.12466768997637, 6.173777756864613], [53.124671662013796, 6.1737407508338045], [53.12467540409892, 6.173701843180603], [53.12468429694158, 6.173635272127639], [53.124687151171905, 6.173613886712202], [53.1244712872951, 6.173528674515187], [53.12445699168946, 6.173523021964184], [53.1234835748588, 6.173189760904183], [53.12348568477298, 6.173165360101747], [53.12351476626798, 6.172712909268765], [53.123559539796624, 6.172095268447951], [53.123563475922545, 6.1720225594523805], [53.12358395306564, 6.171670368394303], [53.12358780828908, 6.17158107639038], [53.12349506613872, 6.17154751920822], [53.123498419564534, 6.171493727149189], [53.12350250012874, 6.171324742547037], [53.12350295187356, 6.171273572199391], [53.12350132656061, 6.17118418030367], [53.12349832674815, 6.171075419466997], [53.12348703789505, 6.170946685102607], [53.12346231668911, 6.17078182626627], [53.123441534886986, 6.170676941051116], [53.123432137990335, 6.1706380958573135], [53.12341891654253, 6.170576609851723], [53.12340238151293, 6.170508027903092], [53.123368732434855, 6.170398757400292], [53.12330512769661, 6.170225653041943], [53.12322996799953, 6.17003299564402], [53.12316946463769, 6.1698967853887705], [53.12312639872209, 6.1697860175215355], [53.12311419094402, 6.169744014785114], [53.123090760530154, 6.169663432590375], [53.12309105274841, 6.169631036635052], [53.123057967558424, 6.169556405506995], [53.12300122459777, 6.169457984679074], [53.12296663382123, 6.169411649517349], [53.122915813229746, 6.169366814114045], [53.12286272740363, 6.169345420212756], [53.12285311055957, 6.169341542241637], [53.12286629665298, 6.1691703646143194], [53.12284527874964, 6.169163367970837], [53.12262995346609, 6.1691066625935616], [53.12255786587129, 6.169084658383458], [53.12259363836272, 6.1687598909271495], [53.122604759130276, 6.1686462338902315], [53.12262054957527, 6.1684847977101045], [53.12239389134774, 6.167919610924144], [53.12218646
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#a60026",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_4411ef0eb4064cd8b56cb52e20240666 = L.popup({maxWidth: '300'
});
var html_7ad5623808284e8687c8c9cf2626d55a = $('<div id="html_7ad5623808284e8687c8c9cf2626d55a" style="width: 100.0%; height: 100.0%;">Smallingerland (188, 92%)</div>')[0];
popup_4411ef0eb4064cd8b56cb52e20240666.setContent(html_7ad5623808284e8687c8c9cf2626d55a);
polygon_c89a94f162404afabb2332a756ca53d8.bindPopup(popup_4411ef0eb4064cd8b56cb52e20240666)
;
var polygon_706cb5dbe8d04c4d8979a9a140b897aa = L.polygon(
[[[52.933184922154105, 6.209520416466611], [52.93315226897604, 6.2095380208533415], [52.93315348516466, 6.209554567393132], [52.9330697866076, 6.209632575426412], [52.93302010359534, 6.20967364065344], [52.93298818336949, 6.209704599524205], [52.932961583546586, 6.209730556964362], [52.93293988640776, 6.209746938948276], [52.93291422857116, 6.2097637082542665], [52.93287815544492, 6.20979635790346], [52.93286419469258, 6.209815251476848], [52.93283144494684, 6.209838028968218], [52.932812907131826, 6.2098533847532655], [52.93278906228898, 6.209876017938963], [52.932761453761316, 6.209898386723516], [52.93273545808669, 6.209925337532026], [52.93271259062147, 6.209945668793448], [52.93265203042218, 6.209991137769451], [52.93258717568516, 6.210046833397468], [52.932553855140306, 6.210076500727201], [52.932520309846204, 6.210099619603584], [52.93249784238231, 6.210119289192653], [52.93248586598731, 6.210139469054252], [52.93246900159921, 6.210170190332783], [52.93246155286567, 6.2101857115938675], [52.93245409936488, 6.210197944795396], [52.932444648127145, 6.2102092334145995], [52.93242750523568, 6.21022457166571], [52.93238763087073, 6.210249414576372], [52.93233139593451, 6.210289253647582], [52.93231109904768, 6.2103092173009715], [52.932296747503045, 6.2103287721172435], [52.93227984754834, 6.210352948388503], [52.93226332269971, 6.210374826890241], [52.932245209823265, 6.210393775062334], [52.932224098726024, 6.210408517187523], [52.93215226531471, 6.210457103672532], [52.93213037314741, 6.210474151245645], [52.93211443512682, 6.210494048155432], [52.9321004674463, 6.210511304339902], [52.93208868645199, 6.210530818576091], [52.93206641584463, 6.21055080374015], [52.932033508548905, 6.210581771706833], [52.93200684415301, 6.210597256649814], [52.93198332549194, 6.210606450250693], [52.93197499150245, 6.210613684799037], [52.931969132872595, 6.210618779285437], [52.93194922708107, 6.210635789784487], [52.931912146968486, 6.210665846373897], [52.93189545265903, 6.210682144069568], [52.93188692954665, 6.210690475227171], [52.931868236643446, 6.210712713687645], [52.93184502253985, 6.210742884097154], [52.93182315194319, 6.210764512386765], [52.93179023795767, 6.210792862816622], [52.931755121899776, 6.210819594824971], [52.93172725109919, 6.2108301784289015], [52.93170050370695, 6.210827948418665], [52.931680710664295, 6.210829879326089], [52.931663987261956, 6.210836315332083], [52.93166035778716, 6.21083870135139], [52.931649610815555, 6.210846663630464], [52.93163688295871, 6.210856089918426], [52.93161123597765, 6.21087547534989], [52.931538765380985, 6.210953585855734], [52.93151653605003, 6.210980457574799], [52.931495645014735, 6.210999783867403], [52.93147136839606, 6.2110158781059726], [52.93142275833033, 6.211036585084551], [52.93137139515903, 6.21106192400436], [52.931271285788235, 6.21111879387133], [52.93122191996471, 6.211146401602205], [52.93117199854606, 6.211181553968921], [52.93112428955072, 6.211221908617002], [52.931117963665365, 6.21122547815316], [52.9310622805079, 6.21125692223393], [52.93102413165768, 6.211271251665363], [52.93096607655103, 6.2113039152782195], [52.930896349055146, 6.211337711625443], [52.93081988218059, 6.211372599573826], [52.93077065824172, 6.211390050888131], [52.930743171586585, 6.211397339702469], [52.93070545133728, 6.2114185485988544], [52.93069306414646, 6.211422954804921], [52.930666118794065, 6.211432558567178], [52.93061912113246, 6.211459481419231], [52.9306057644248, 6.211465043889572], [52.93056853274406, 6.211480551325586], [52.93053653391154, 6.211497079013899], [52.93051738277779, 6.211508837958579], [52.9304763523868, 6.2115386102742045], [52.930422040918145, 6.211567595872744], [52.93036793832974, 6.211599216865744], [52.930342404299516, 6.211610008122568], [52.93028929214932, 6.211633468169346], [52.93016285126758, 6.211695593330663], [52.930040795665434, 6.2117564476434], [52.929935331196084, 6.21181175512422], [52.929904876424075, 6.211820727508698], [52.929885503155944, 6.2118269194178435], [52.929860217907716, 6.211839409846043], [52.929745
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fc8c3b",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_c4c29d67f8d446b3ba2ac0456c084a67 = L.popup({maxWidth: '300'
});
var html_766560fd19d248d8b3c01ff2d27095a6 = $('<div id="html_766560fd19d248d8b3c01ff2d27095a6" style="width: 100.0%; height: 100.0%;">Weststellingwerf (6, 50%)</div>')[0];
popup_c4c29d67f8d446b3ba2ac0456c084a67.setContent(html_766560fd19d248d8b3c01ff2d27095a6);
polygon_706cb5dbe8d04c4d8979a9a140b897aa.bindPopup(popup_c4c29d67f8d446b3ba2ac0456c084a67)
;
var polygon_68606ebe4cf0498da1ec0733892c9630 = L.polygon(
[[[53.281483896086264, 5.876350432489802], [53.281409691983185, 5.876542756320584], [53.2814350811341, 5.876645160012425], [53.28138683998888, 5.87669146477699], [53.281326062900234, 5.876730475846292], [53.28124472649578, 5.876774395308161], [53.28109442961543, 5.876828716887195], [53.280982730944025, 5.876870613057629], [53.28090824679273, 5.876911116871735], [53.28086002929209, 5.876944467333256], [53.28080720729678, 5.877005216556281], [53.28057405932319, 5.8773183090909615], [53.28043942234375, 5.87751162043524], [53.28031730234726, 5.877288765802078], [53.28017906566436, 5.877036480639173], [53.28012373103969, 5.876935509475357], [53.28008598685053, 5.87699630898564], [53.280047114356414, 5.877062658176017], [53.279938284625715, 5.877242692760687], [53.27978250012606, 5.877500916116479], [53.279565305607264, 5.877856592152794], [53.27891354504382, 5.878921469399144], [53.27881725737002, 5.879079255161165], [53.278741116354944, 5.879210344495592], [53.27871186414736, 5.879253037124705], [53.27852572597206, 5.87955209648595], [53.27835431023674, 5.879821473576576], [53.27830070693287, 5.879912415142213], [53.27828304078933, 5.879938763443599], [53.27826321868309, 5.879956841910336], [53.27824619641971, 5.879959390706156], [53.278231448587825, 5.879977557300113], [53.278215924974994, 5.87998376678393], [53.278200427185475, 5.880015626187003], [53.27818386908775, 5.880039243836345], [53.27813473088111, 5.8801128304485815], [53.27798607884125, 5.88034384518863], [53.27780147326138, 5.880643092632978], [53.27772413303289, 5.880770369739339], [53.27765111787636, 5.880885972891057], [53.27757433707647, 5.881010511442012], [53.27752572475264, 5.881091432901817], [53.27749358432857, 5.881141601211793], [53.27742626130327, 5.881234195761178], [53.27720793927011, 5.881592564862491], [53.27704546949802, 5.881846302344165], [53.27698634620302, 5.881946319737816], [53.27683271498583, 5.882185495213982], [53.27680099007569, 5.88221577311817], [53.27678250237223, 5.882244658367476], [53.276773319585644, 5.882259919220252], [53.27674567249871, 5.882320600169539], [53.276354011845214, 5.882956578012747], [53.275912601672104, 5.883686609492787], [53.27571816989601, 5.884008965277107], [53.27560612306347, 5.884182046874487], [53.275479731536166, 5.884369083710779], [53.27534363089975, 5.884574505128765], [53.27509241115845, 5.884967718149684], [53.274961280027405, 5.8851705993354155], [53.27491686306212, 5.8852446491040356], [53.27460448906929, 5.8857495305098455], [53.27436037180612, 5.886164562796531], [53.27407843665777, 5.88663493116314], [53.27388783364666, 5.886952928337332], [53.27372653940298, 5.8871590312073865], [53.273315946864486, 5.887827379157787], [53.273146667253236, 5.8880647134015245], [53.27298325844497, 5.888298950233496], [53.27266566195963, 5.888805479307087], [53.27256541089434, 5.888964508165652], [53.27253651699395, 5.889023890911876], [53.27251344331867, 5.889075201473695], [53.27248866116058, 5.889135456219575], [53.27247277343504, 5.889159375150139], [53.27241899934753, 5.8892378794206115], [53.27236551744713, 5.889317450912334], [53.27230427769786, 5.889399825713853], [53.2722025725447, 5.889532617972166], [53.27215698414826, 5.88959643388266], [53.27210041980568, 5.889675612667828], [53.272060669952, 5.889730910095108], [53.27199709472623, 5.88982808035586], [53.27193248482185, 5.889925703951445], [53.27178057851406, 5.890169474430799], [53.2715996055775, 5.8904622488499845], [53.27156490458143, 5.89052204184969], [53.27144699987513, 5.890735477205042], [53.27113744541345, 5.891275864926711], [53.27104359746242, 5.891441372284035], [53.27097952465667, 5.891562658628309], [53.270977993880805, 5.891565554566619], [53.27095394957726, 5.89153327267407], [53.27084262949678, 5.891699638491085], [53.27079270545102, 5.891776683135599], [53.27074738742475, 5.891843993430475], [53.270724340808584, 5.8918757850074055], [53.27068989533609, 5.891915192964102], [53.27068178878425, 5.891928408361216], [53.27067094395516, 5.891947482468142], [53.270658642599564, 5.891966659374631], [53.27065278639668, 5.8
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ee3222",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_370aa4729d404ffb9a4423295b586bd8 = L.popup({maxWidth: '300'
});
var html_a95427488dd84949a811021328eaa9fc = $('<div id="html_a95427488dd84949a811021328eaa9fc" style="width: 100.0%; height: 100.0%;">Tytsjerksteradiel (150, 69%)</div>')[0];
popup_370aa4729d404ffb9a4423295b586bd8.setContent(html_a95427488dd84949a811021328eaa9fc);
polygon_68606ebe4cf0498da1ec0733892c9630.bindPopup(popup_370aa4729d404ffb9a4423295b586bd8)
;
var polygon_5c9554f4ed9d4d119a59c91fde79518d = L.polygon(
[[[53.325069178417294, 6.034320682057868], [53.325002595004186, 6.034379293658696], [53.324950471420514, 6.034427421397184], [53.32484772280514, 6.034515880863414], [53.32478324402785, 6.034582358140175], [53.32472969605152, 6.034628048465112], [53.32466740596947, 6.034690355631371], [53.32461637008292, 6.034736698095982], [53.32458087013277, 6.034773159393012], [53.32455082015082, 6.034801943046732], [53.32452394163151, 6.03483919334969], [53.32450107647276, 6.034868715132852], [53.3244796326686, 6.03489948936329], [53.324461439574996, 6.0349291115486015], [53.32444064806984, 6.034968899857776], [53.324417659335424, 6.035014628359533], [53.32438918522258, 6.035072865724805], [53.324349285468884, 6.035168676023886], [53.3243357286332, 6.035203199648682], [53.32432127020443, 6.035261722699741], [53.32430619089177, 6.035307029451502], [53.32429642012964, 6.035362651435175], [53.32429351834815, 6.035414219916895], [53.32428844329056, 6.035515580702107], [53.32428302791402, 6.035613319967717], [53.32427689582041, 6.035712249300344], [53.324268920519664, 6.035816537863839], [53.32426392429957, 6.0359064799445905], [53.32426779476261, 6.036013438342622], [53.324276079585154, 6.036106656350729], [53.3242990195211, 6.03620982033502], [53.32432316358555, 6.036297979209965], [53.32433475568019, 6.0363290671119305], [53.32435204679155, 6.036375434641531], [53.32437112032663, 6.036420880085861], [53.3243930499737, 6.036468170389213], [53.32443844845842, 6.036548981132119], [53.32448135912937, 6.036626152812061], [53.32452138001539, 6.036704451741567], [53.32459506512813, 6.036848302282693], [53.324675114780405, 6.0370049012365135], [53.32475482030072, 6.037160294691983], [53.324798039835926, 6.037243460188857], [53.32484444254092, 6.0373345085509715], [53.32487881064609, 6.037401287055649], [53.32492251632137, 6.0374676524035324], [53.32496221449797, 6.037542345360192], [53.32500508976016, 6.037624321120649], [53.32504770743966, 6.037692471356875], [53.32507908615456, 6.03777358316042], [53.32510927900881, 6.037867884344641], [53.3251347769608, 6.037966287222233], [53.32515347866351, 6.0380603399640975], [53.32516712716467, 6.038156702677058], [53.32517505707774, 6.038248717710678], [53.325176302676944, 6.038416856618604], [53.32517124423927, 6.038615787542085], [53.325162553252014, 6.0388499174602694], [53.32515565221927, 6.039078625880013], [53.32514480200658, 6.039316340314168], [53.32513502167834, 6.039552269020803], [53.325120583677226, 6.039767175870632], [53.325103258063365, 6.040009098966318], [53.325081983838615, 6.040238399736828], [53.32506573346023, 6.040483924953478], [53.32504588002805, 6.040742648293961], [53.32502424308774, 6.04097556026364], [53.32498419928019, 6.041443787643528], [53.324973747648194, 6.041553038007304], [53.32495717719578, 6.041667102477484], [53.32493594427139, 6.041759543997913], [53.32490931554154, 6.041842974123556], [53.32485823796098, 6.0419954298912355], [53.32480140160004, 6.04214608664852], [53.3247395373901, 6.042307546957263], [53.324675152268405, 6.042466612487004], [53.32461688477443, 6.042607655601156], [53.32454746154582, 6.042772722208893], [53.324478407567284, 6.042929373975078], [53.32439640101106, 6.043126244037521], [53.3243244655102, 6.043300305260728], [53.32426727527853, 6.043443148724325], [53.324210071720664, 6.04361300539104], [53.32408596310672, 6.043950334470512], [53.32401797749605, 6.044136398816475], [53.3239859336702, 6.044297858385118], [53.323958562258014, 6.04446413109906], [53.32390743135385, 6.044752248496981], [53.323887956893635, 6.044938331382263], [53.323873885056294, 6.045101009598383], [53.3238590870733, 6.045284687681552], [53.32384353777789, 6.045539804387653], [53.32383448985872, 6.045710288178485], [53.32382328420024, 6.045889173377435], [53.32382034536781, 6.04608605774965], [53.323826746998165, 6.04625415150302], [53.32384430465369, 6.046411429567082], [53.32387692543644, 6.046633561655503], [53.323900950752, 6.046787847589045], [53.32393216373208, 6.046930718699537], [53.32401792282294, 6.047292141411166], [53.32405345059775, 6.0474
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fc7a36",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_96560a3d5f4f4e05b0226f32f96daa79 = L.popup({maxWidth: '300'
});
var html_106734145bfd4113b24735c32611849b = $('<div id="html_106734145bfd4113b24735c32611849b" style="width: 100.0%; height: 100.0%;">Dantumadiel (106, 54%)</div>')[0];
popup_96560a3d5f4f4e05b0226f32f96daa79.setContent(html_106734145bfd4113b24735c32611849b);
polygon_5c9554f4ed9d4d119a59c91fde79518d.bindPopup(popup_96560a3d5f4f4e05b0226f32f96daa79)
;
var polygon_7448cf135105482e9a3ee2e7449c3fea = L.polygon(
[[[[53.375211679718696, 5.850111068652949], [53.37531545331031, 5.849958773410351], [53.37633636166836, 5.8484913469106905], [53.37663829352857, 5.8480611646620915], [53.37668608800056, 5.8479930690937065], [53.37771226524705, 5.8465228250395285], [53.37805932611621, 5.84603087387064], [53.37846951987256, 5.8454392215604445], [53.38301091877081, 5.858531098277638], [53.38060306425852, 5.861465570816728], [53.380575018702025, 5.861503225366409], [53.380550628749525, 5.861543344545966], [53.38053010946367, 5.861585574597577], [53.380513641776815, 5.861629543150439], [53.38050137089565, 5.861674862504213], [53.380493405020786, 5.861721133047638], [53.38048981439272, 5.861767946782173], [53.380490630672426, 5.861814890919598], [53.38049584666222, 5.86186155152184], [53.38100913632899, 5.865077097471749], [53.38101856654582, 5.865122520591759], [53.38103216614431, 5.865166874168188], [53.38104981804884, 5.865209776371948], [53.382106853292385, 5.867474172402033], [53.38353618664399, 5.871348271111364], [53.38450495546026, 5.874317598052985], [53.38506006857838, 5.8770657268638224], [53.38507126159093, 5.877110418327582], [53.38592478305356, 5.879955136270764], [53.38594394929453, 5.880008009689866], [53.385968932086726, 5.880058396229085], [53.38599941535354, 5.880105658409364], [53.387027238468946, 5.881517985186846], [53.387424893222786, 5.883739143790016], [53.38716699273474, 5.886151856984064], [53.38716418009735, 5.886200572541394], [53.387166129506134, 5.886249330271658], [53.38717282239401, 5.88629766578352], [53.3871841950148, 5.88634511870705], [53.387200139050364, 5.886391237078498], [53.38722050264228, 5.886435581645014], [53.38724509183821, 5.886477730048287], [53.3872736724392, 5.886517280847293], [53.38730546457293, 5.886553282467286], [53.387305972230294, 5.886553857341799], [53.38734168357324, 5.88658711116023], [53.387380466336566, 5.886616725577732], [53.38742195113517, 5.886642418532797], [53.3874657428485, 5.886663945313753], [53.38751142438389, 5.8866811008895095], [53.38755856064911, 5.886693721862372], [53.387606702696424, 5.886701688024315], [53.38765539199853, 5.886704923501903], [53.387704164815844, 5.88670339747894], [53.38775255661334, 5.88669712448998], [53.38780010648499, 5.8866861642818895], [53.387846361543666, 5.886670621244798], [53.38789088123464, 5.8866506434178305], [53.38793324153165, 5.886626421079117], [53.387973038975474, 5.886598184933495], [53.38800989451674, 5.8865662039151685], [53.389015555922, 5.885603612616981], [53.39096138647854, 5.8837411173957435], [53.390977120293556, 5.883725371542526], [53.391421032896105, 5.8832608858908575], [53.39467718449563, 5.879853828535524], [53.39469589850425, 5.881062133895147], [53.39237674458305, 5.883731924277797], [53.392344071347374, 5.883773845032963], [53.392316032560444, 5.883818997180987], [53.392292945048226, 5.883866870522455], [53.392272936758516, 5.883914702871891], [53.39112886777234, 5.886649744613388], [53.391117333275574, 5.886680042872519], [53.389499970797296, 5.891381491741571], [53.38948846460321, 5.891419874439656], [53.38948006889565, 5.89145905525268], [53.388883476712536, 5.894913662445099], [53.388880546520504, 5.894932841992471], [53.388344701062714, 5.898962454264254], [53.38826987796031, 5.8995251315945945], [53.38762321832691, 5.9023635284632014], [53.387613600495584, 5.90242106213112], [53.38761074879807, 5.902479324412614], [53.38763453058474, 5.904993624258924], [53.38739877109083, 5.9088631794607895], [53.38684704130088, 5.913969236022098], [53.38684557943233, 5.913985139192724], [53.386593429897715, 5.917309918373544], [53.38659326256682, 5.917383265487401], [53.386784685141606, 5.920069819267495], [53.3867903975056, 5.9201175184709784], [53.387637117517926, 5.925132858738314], [53.388354959428355, 5.930443997569832], [53.388360277705345, 5.930691179728633], [53.38837536733121, 5.931392513319355], [53.38838155914306, 5.931680295513498], [53.38845351662997, 5.935024725860822], [53.38845806584665, 5.935236163738548], [53.38846170249454, 5.935286549715085], [53.388470404782666, 5.935336311568154],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fed06c",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_0cc43210b74b4be09ccb48d11d0c21b4 = L.popup({maxWidth: '300'
});
var html_c6d5da6b60394f05a360349fe1ce12a3 = $('<div id="html_c6d5da6b60394f05a360349fe1ce12a3" style="width: 100.0%; height: 100.0%;">Dongeradeel (64, 28%)</div>')[0];
popup_0cc43210b74b4be09ccb48d11d0c21b4.setContent(html_c6d5da6b60394f05a360349fe1ce12a3);
polygon_7448cf135105482e9a3ee2e7449c3fea.bindPopup(popup_0cc43210b74b4be09ccb48d11d0c21b4)
;
var polygon_15a33dbcef38472b8f85e0c07ebdb336 = L.polygon(
[[[53.465894891007025, 5.673199508015758], [53.46657886883981, 5.674744064628537], [53.46632464455889, 5.677547383176248], [53.46557705119703, 5.67845748293569], [53.46554963088327, 5.678494168471414], [53.46552568252719, 5.678533209198605], [53.46550540707488, 5.678574277533995], [53.465488974653766, 5.678617028881045], [53.46547652314515, 5.678661104521385], [53.46520045859463, 5.679842744372556], [53.46385680811263, 5.685593975208119], [53.462631444314, 5.688979625802052], [53.46261472459884, 5.689035972617415], [53.462604732529606, 5.689093892139416], [53.46201129152766, 5.694369069087091], [53.462008192444564, 5.6944190416091764], [53.46187153141161, 5.705954043385134], [53.4608104611567, 5.714824147983657], [53.46080725054871, 5.714865404180392], [53.46080746245162, 5.714906784572727], [53.46101898482034, 5.719451046351848], [53.46070261629353, 5.724049742862753], [53.46070143841069, 5.724085122758707], [53.46072225550517, 5.733873310340916], [53.459936253346875, 5.755652436481733], [53.459935998245896, 5.755678847718393], [53.46024386302679, 5.774049397462565], [53.460288147458414, 5.776691886647778], [53.46028908576624, 5.776715249483879], [53.46080734945037, 5.78486273946793], [53.461434225933324, 5.7947177033069535], [53.46241767335356, 5.810178227074355], [53.4627474342981, 5.817898514556229], [53.46254432272487, 5.821165617628655], [53.46254460413039, 5.821231902560346], [53.46314227426406, 5.829685874376156], [53.463326991242525, 5.834523291238136], [53.46332763058115, 5.8345358742361215], [53.46390234422695, 5.843593533109394], [53.46390243907107, 5.8435949940341825], [53.464247314579815, 5.848789612862489], [53.46433875724307, 5.853021876138797], [53.46433942299164, 5.853039036324931], [53.464772853401755, 5.860777612271159], [53.465212086422035, 5.869077874540455], [53.46587884239857, 5.8818162408945955], [53.46686831760723, 5.906055603221368], [53.467333954785886, 5.921552965223693], [53.467333987625544, 5.921554021041036], [53.46761575515895, 5.930315197907377], [53.467720036102115, 5.938689382041834], [53.46750269851556, 5.948115215352958], [53.46695726735625, 5.956319712210762], [53.466340212035725, 5.960338713459336], [53.46633592248631, 5.960375871796824], [53.46604457460114, 5.964126834855357], [53.46522746707026, 5.9670937787081995], [53.46423671147724, 5.968886450870387], [53.463564773869905, 5.969442511354769], [53.46340293929303, 5.968322475879614], [53.46339340417697, 5.9682737337197445], [53.46337908041579, 5.96822617800029], [53.463360109340144, 5.9681802779471775], [53.463336678135086, 5.968136486450098], [53.46330901799318, 5.9680952355939], [53.463277401833366, 5.9680569323952675], [53.462954877518555, 5.967703521515287], [53.46291967163951, 5.967668592714812], [53.462881178744816, 5.967637323367526], [53.46283977752372, 5.9676100210981415], [53.462795875277294, 5.967586954503658], [53.462749903911465, 5.967568350510928], [53.46270231568793, 5.967554392144171], [53.46265357877488, 5.967545216724406], [53.462604172641186, 5.967540914518496], [53.46255458333946, 5.967541527851112], [53.46250529872431, 5.96754705068835], [53.46245680365285, 5.967557428697089], [53.462409575214735, 5.967572559779515], [53.46236407803863, 5.9675922950775515], [53.46232075972121, 5.967616440437308], [53.46228004642375, 5.967644758319149], [53.46224233867961, 5.96767697013458], [53.462208007453796, 5.96771275898698], [53.46217739049349, 5.967751772789197], [53.46216862541859, 5.967764160761679], [53.46182601488109, 5.967393960201721], [53.46178459990108, 5.967354077192466], [53.46173888005988, 5.96731921243781], [53.46097248636352, 5.966801649044128], [53.46093576182559, 5.966779089652563], [53.46089723091134, 5.966759776794638], [53.460857179923636, 5.96674385397399], [53.459175695268115, 5.9661579450921725], [53.45920927782779, 5.966013436323674], [53.460486807894455, 5.9661449274428655], [53.46155789266127, 5.966761183070833], [53.46160143242804, 5.966783473628763], [53.46164694188089, 5.966801403212259], [53.46169398547975, 5.966814800229452], [53.46174211300227, 5.966823536466586], [53.4617
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#feea9a",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_ccf6e59941cd4d5bb78655251fd2f412 = L.popup({maxWidth: '300'
});
var html_6387f9d36bf348b49d8fba451682611c = $('<div id="html_6387f9d36bf348b49d8fba451682611c" style="width: 100.0%; height: 100.0%;">Ameland (1, 14%)</div>')[0];
popup_ccf6e59941cd4d5bb78655251fd2f412.setContent(html_6387f9d36bf348b49d8fba451682611c);
polygon_15a33dbcef38472b8f85e0c07ebdb336.bindPopup(popup_ccf6e59941cd4d5bb78655251fd2f412)
;
var polygon_f8356391d95a473f96d2d42a12e4e916 = L.polygon(
[[[53.20983813312905, 5.437989346050762], [53.209644457064186, 5.438459886729576], [53.209633709704086, 5.438485994983495], [53.20947544065938, 5.438877071721935], [53.20947064606092, 5.438888905491809], [53.209469278995904, 5.4388922867023215], [53.2094275949994, 5.438995377449227], [53.209199794016854, 5.439551291747308], [53.20906491054456, 5.439880259799018], [53.20877181790613, 5.440593974728685], [53.20853273873469, 5.441175047562663], [53.208362180960236, 5.441597236384608], [53.20827581277111, 5.44181154557753], [53.20815655026248, 5.442139142792064], [53.20787961076493, 5.442887285759172], [53.20760017046596, 5.44361138068842], [53.20741792819598, 5.444155139567909], [53.20733837927079, 5.444399965243595], [53.20724799486629, 5.444658665295334], [53.20717997247241, 5.44484889031642], [53.20716041226444, 5.4449017417841], [53.20715702070255, 5.444910912381838], [53.20714243579392, 5.444950300076739], [53.207088738622204, 5.445134871542363], [53.20706026041961, 5.445233598227448], [53.20699111346357, 5.445443905833286], [53.206925415986284, 5.4456538292087675], [53.206887011664406, 5.4457830129388975], [53.20686432906753, 5.445862170575253], [53.20683878926308, 5.445923049922264], [53.20676652225674, 5.44607963629116], [53.20668861716353, 5.446243922400654], [53.20664312816159, 5.4463429383584865], [53.20650977516406, 5.446665507350418], [53.20647776122866, 5.446752807414637], [53.206324450318085, 5.447200839617387], [53.20617418443799, 5.447629026790151], [53.20603206895108, 5.448036764404534], [53.205879836791226, 5.448474357182479], [53.205706414215314, 5.448965076492913], [53.205508732954215, 5.449516699218674], [53.205364738511804, 5.449930991211409], [53.20517120145433, 5.4504706386307324], [53.20500971087911, 5.450880617973165], [53.20489723733185, 5.451169055373813], [53.20474412263103, 5.4515559200242985], [53.20463644172421, 5.451851752644251], [53.204447401443986, 5.452368117554514], [53.20427430120093, 5.452832899631024], [53.20414685657501, 5.453179205639054], [53.204127661311354, 5.453231900393913], [53.20409763113173, 5.453314359966563], [53.20409708186081, 5.453315870850923], [53.204072559157304, 5.453383207803902], [53.20403487893998, 5.453487086272432], [53.20397754438702, 5.453645200108129], [53.20393842425309, 5.453753101369246], [53.20391516942388, 5.453817237314482], [53.20390622411595, 5.453842425828953], [53.20382350731755, 5.454075431239434], [53.203746609200905, 5.4542835723224625], [53.20362671933177, 5.454610635889836], [53.203453872995865, 5.455087118798393], [53.203320327234756, 5.4554542634019745], [53.203134288945385, 5.455958059638734], [53.2031043783037, 5.456032509591697], [53.203081746217435, 5.456090239252748], [53.203031023475816, 5.456213128453047], [53.202994545393814, 5.45627004201215], [53.202954456394025, 5.456324077944852], [53.2029041405676, 5.456380191821049], [53.202837476643126, 5.456457633788714], [53.20278579256338, 5.456502102939937], [53.202689265512156, 5.456571235713113], [53.20263929539446, 5.456604108995106], [53.20242382550475, 5.4567205052419085], [53.20211469777515, 5.4568850856936235], [53.201712483632136, 5.457102233395263], [53.20112233502518, 5.457427969727227], [53.20083922815991, 5.457578082098523], [53.20079095071449, 5.457604505427468], [53.20068920853286, 5.457647362268686], [53.20058647851668, 5.4576894245026475], [53.20051495616888, 5.457714776574229], [53.2003820022692, 5.457766202070195], [53.20025123403413, 5.4578136194000315], [53.2002246120333, 5.457824379838925], [53.20017946684657, 5.457857900696788], [53.200147837195935, 5.45788886981026], [53.20012379290945, 5.457917157849942], [53.200070984737344, 5.458007590173755], [53.20002115404246, 5.458123809942158], [53.20009778798237, 5.458221413536262], [53.20011537765825, 5.458334691843252], [53.2001432039622, 5.4584283538511755], [53.20017030171865, 5.458538834968503], [53.20017771244952, 5.4586037322896335], [53.200179131087765, 5.458680292284871], [53.200195321583614, 5.459028342747534], [53.20020917270758, 5.459215823980288], [53.200223818813306, 5.459380500368], [53.2002
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fee28a",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_d2cac161541c46458123d483572fc37c = L.popup({maxWidth: '300'
});
var html_af6458df23ea46f08da7eda30c742c76 = $('<div id="html_af6458df23ea46f08da7eda30c742c76" style="width: 100.0%; height: 100.0%;">Harlingen (7, 19%)</div>')[0];
popup_d2cac161541c46458123d483572fc37c.setContent(html_af6458df23ea46f08da7eda30c742c76);
polygon_f8356391d95a473f96d2d42a12e4e916.bindPopup(popup_d2cac161541c46458123d483572fc37c)
;
var polygon_96ea0ac5ef164692823fafa9801cb099 = L.polygon(
[[[53.34575987910701, 6.2644403476487485], [53.34560872016441, 6.26560761967956], [53.34560734031609, 6.265619363881715], [53.34547941801557, 6.266831674044096], [53.34547811957323, 6.266845932831891], [53.34534250850742, 6.2686153095215], [53.345341907250436, 6.268624191420567], [53.345209107156926, 6.270884362606905], [53.34500409100883, 6.272409530264661], [53.3448463808085, 6.273239404526662], [53.34478574401875, 6.273558476539974], [53.3447762114854, 6.273588839679805], [53.344522873973226, 6.274395773369355], [53.34447116338438, 6.2745604825586465], [53.34407931887651, 6.275597342791173], [53.34309011442218, 6.27767932045665], [53.34308090006338, 6.277699898479892], [53.34240116060968, 6.279314585392467], [53.342187533151694, 6.279822046683271], [53.34216655598584, 6.279882398702693], [53.34180517669001, 6.281185216417156], [53.34180071710401, 6.281202483673193], [53.341503763411914, 6.282443258802937], [53.341497508864876, 6.2824734860406455], [53.34121565998473, 6.28408480988579], [53.341211522133975, 6.284113264313142], [53.34094919443267, 6.286371425519061], [53.340863615041066, 6.286352239437666], [53.34040876772846, 6.286250268170416], [53.3390693133891, 6.285949995338088], [53.33863812979271, 6.285853344068522], [53.338609367837996, 6.285846899447867], [53.33727479030078, 6.2855477498841825], [53.33681855341963, 6.285445482062089], [53.3363762498783, 6.285346343069739], [53.33632964790625, 6.285335905868119], [53.33629491602774, 6.285328120080934], [53.33548190456316, 6.285145902493344], [53.33502060306914, 6.285042515970645], [53.3336859623411, 6.2847434108890345], [53.3332271314862, 6.28464058086012], [53.33248985604563, 6.284475370769359], [53.33189150668553, 6.284341284516116], [53.33154367856537, 6.284263336901821], [53.33149337808511, 6.284252095834119], [53.331437305974674, 6.284239549857192], [53.33141530054554, 6.284234625004113], [53.3309600078391, 6.284132544206995], [53.33091747626664, 6.284123014125279], [53.330101736173305, 6.283940260936832], [53.32964391733543, 6.283837694442622], [53.329003687003585, 6.283694259606402], [53.32887238839625, 6.283664839590718], [53.328425530724886, 6.2835615883794596], [53.328305197734466, 6.2835337800041495], [53.32829253549578, 6.283530845759175], [53.32826817883964, 6.283525221389903], [53.32804293666331, 6.283473183834266], [53.3279001005245, 6.28344018804904], [53.32785975026109, 6.283430481173304], [53.32712274307826, 6.283253284727051], [53.32711634786448, 6.28325179150234], [53.32696630951426, 6.283217796387554], [53.326707033612244, 6.283159047249714], [53.32650458631151, 6.283112911497704], [53.32645259598522, 6.283100972475487], [53.32619204694955, 6.283039116612165], [53.326185902642884, 6.283037698785784], [53.326059470780244, 6.283009362563755], [53.325947824692115, 6.282984330877752], [53.325567754300806, 6.282897585787833], [53.32540177654515, 6.282856990597649], [53.3252689058525, 6.282824020019796], [53.32526107106787, 6.28282214277011], [53.3249714306252, 6.282755206409508], [53.32472132572522, 6.282696756244619], [53.32470220069415, 6.2826922837710555], [53.32469122249212, 6.282689846343607], [53.32462045793453, 6.282674967879334], [53.32426905568593, 6.282594920710345], [53.32303434028945, 6.282313988555181], [53.323029484631746, 6.282312909132756], [53.322917784917884, 6.282288660499118], [53.322475597569, 6.2821855515037885], [53.32159105071417, 6.281979266691299], [53.32159049963246, 6.281979138502471], [53.32113093694555, 6.281872512249793], [53.32097276456199, 6.281835807824855], [53.32097029586179, 6.281835241540424], [53.32067555238294, 6.281768416970366], [53.31992596481595, 6.281598460814422], [53.319901540384116, 6.281593559321256], [53.319783540239854, 6.281572922720451], [53.31974646683012, 6.281564884884437], [53.3195148823543, 6.281513320736784], [53.319428140506865, 6.281494017094762], [53.319337970015866, 6.281472491986246], [53.31899405928827, 6.281390382141078], [53.31895700959851, 6.281383003636174], [53.31884307121489, 6.281364757352574], [53.3186413736887, 6.281319069168974], [53.31847181443588, 6.2812
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ca0922",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_0f14594637bc437b9117073a71ec8010 = L.popup({maxWidth: '300'
});
var html_0c2ea0ecb5ed4648a64d0fd3006bcb96 = $('<div id="html_0c2ea0ecb5ed4648a64d0fd3006bcb96" style="width: 100.0%; height: 100.0%;">Kollumerland en Nieuwkruisland (87, 83%)</div>')[0];
popup_0f14594637bc437b9117073a71ec8010.setContent(html_0c2ea0ecb5ed4648a64d0fd3006bcb96);
polygon_96ea0ac5ef164692823fafa9801cb099.bindPopup(popup_0f14594637bc437b9117073a71ec8010)
;
var polygon_9b48cfffccd7462d8051405a8c3cf363 = L.polygon(
[[[[53.47193300178735, 6.0595555504378], [53.47201860868304, 6.0595160007165125], [53.47180487209525, 6.060001034817661], [53.47060816348886, 6.062716734966402], [53.46901875523744, 6.0641774176009555], [53.46898297186578, 6.0642138440515305], [53.46895109026047, 6.064253730129705], [53.46892344292575, 6.064296659849851], [53.46890031820517, 6.064342185483152], [53.46888195727441, 6.0643898322271195], [53.468868551625924, 6.064439103157472], [53.46886024107184, 6.064489484410729], [53.46874972048504, 6.065468646880935], [53.46621893860135, 6.0650373062714085], [53.465845814990814, 6.0646536651819805], [53.4669766249255, 6.06420737250214], [53.467022632191394, 6.064186469703], [53.467066294621404, 6.064161029818327], [53.4671071662308, 6.064131312700821], [53.467144829541326, 6.064097621892477], [53.46717889984554, 6.064060301524084], [53.467209029136356, 6.064019732800146], [53.46723490966167, 6.06397633010511], [53.4684890712322, 6.0616086871474995], [53.46901444017756, 6.060903166391211], [53.47193300178735, 6.0595555504378]]], [[[53.4750862538122, 6.058098743652412], [53.47515988273995, 6.058064724884541], [53.47500007101985, 6.0583722429294316], [53.4750862538122, 6.058098743652412]]], [[[53.51529009773884, 6.389837834905169], [53.51436839268511, 6.390691584619445], [53.51419366395357, 6.390739785728176], [53.513437290892746, 6.390948440709099], [53.5126749945378, 6.390384043897177], [53.51263560293228, 6.390357674628782], [53.51259389120519, 6.390335154221938], [53.51255023426769, 6.390316685093387], [53.51250502451479, 6.390302433246382], [53.5124586682984, 6.3902925267786275], [53.51241158227505, 6.390287054730917], [53.512364189660865, 6.390286066286825], [53.51231691642766, 6.390289570330631], [53.51227018747422, 6.390297535367473], [53.51222442280729, 6.390309889806424], [53.51218003376645, 6.390326522603964], [53.51213741932694, 6.3903472842620515], [53.512096962513645, 6.390371988171841], [53.51205902695837, 6.390400412290946], [53.51156785530583, 6.390806171411768], [53.51082264212277, 6.389608734801434], [53.510796785021185, 6.389571128574035], [53.51076760666882, 6.389536036669059], [53.510735350158484, 6.389503751446714], [53.510700284227916, 6.389474541883978], [53.510662701020955, 6.389448651333665], [53.510622913653506, 6.389426295496997], [53.50930999240396, 6.388765530882528], [53.50785403764404, 6.382132529455669], [53.50684553317898, 6.372059818235013], [53.506840108089655, 6.372021030627502], [53.50683166372858, 6.371982786636383], [53.50574219523144, 6.367828747985116], [53.505726015709016, 6.3677781719312145], [53.505704563731776, 6.367729596970107], [53.5056780812535, 6.367683570971816], [53.50564686696627, 6.367640613056982], [53.50561127293156, 6.367601207741769], [53.50557170060938, 6.367565799473082], [53.502841320358385, 6.365372286463799], [53.50240659272257, 6.364417873156026], [53.50490618145486, 6.35926451801928], [53.504924253259794, 6.359222457718269], [53.50493840245331, 6.359178920844499], [53.50601742060145, 6.355256220113671], [53.50604479259424, 6.355156711003192], [53.50605652308993, 6.355102442386275], [53.5066787812642, 6.351180026579947], [53.506684482548415, 6.35112345598349], [53.506683724490166, 6.3510666038738295], [53.50626118956552, 6.3450592741120815], [53.50625709394488, 6.345021558247238], [53.506208396878186, 6.344690652781338], [53.50591918563231, 6.34272540952241], [53.505912108539164, 6.342687522451114], [53.50590213412617, 6.342650293074216], [53.504635211329614, 6.338559343017373], [53.504621509649816, 6.338520765110462], [53.504604697874164, 6.338483437438014], [53.50352110176084, 6.336318819977605], [53.503510640517234, 6.336299040780712], [53.501589295856256, 6.332855067796914], [53.500822590702995, 6.330472335026986], [53.50085659867049, 6.329443361381655], [53.50090556174612, 6.327961893415878], [53.50090908502549, 6.327855290114307], [53.50090889590105, 6.327817285124096], [53.500905820615685, 6.327779404288982], [53.50090300887829, 6.327755891893008], [53.50054509797823, 6.324762958476599], [53.50029365354688, 6.319857923685882], [53.50
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#febf5a",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_570f5b759bed40158581c95a1c2054ab = L.popup({maxWidth: '300'
});
var html_e2f80ec0263e437a9d29937a4aba5122 = $('<div id="html_e2f80ec0263e437a9d29937a4aba5122" style="width: 100.0%; height: 100.0%;">Schiermonnikoog (4, 33%)</div>')[0];
popup_570f5b759bed40158581c95a1c2054ab.setContent(html_e2f80ec0263e437a9d29937a4aba5122);
polygon_9b48cfffccd7462d8051405a8c3cf363.bindPopup(popup_570f5b759bed40158581c95a1c2054ab)
;
var polygon_fb6f6bbc8e794b0fae889470e20cde8d = L.polygon(
[[[[53.25455860028397, 5.2555114077055745], [53.253784176804835, 5.259036185307247], [53.25254344032144, 5.263469889456295], [53.2525313995101, 5.263524535614219], [53.25252554018863, 5.2635801849813815], [53.25236569937922, 5.266845153416133], [53.25220184693421, 5.267338858938373], [53.25211087134121, 5.265263775950789], [53.25210760136635, 5.262080717157426], [53.252105025452224, 5.262030540167252], [53.2520974268196, 5.261980875023952], [53.252084882195405, 5.2619322232194605], [53.2520675182485, 5.2618850760135585], [53.252045510310694, 5.261839909473398], [53.25201908060632, 5.261797179666436], [53.25198849600832, 5.261757318055302], [53.251954065343554, 5.261720727141131], [53.25191613627435, 5.261687776399311], [53.251875091788094, 5.261658798548731], [53.25183134632994, 5.261634086192156], [53.25178534161803, 5.261613888861684], [53.251737542183214, 5.261598410499107], [53.25168843067851, 5.261587807396614], [53.25098950328609, 5.261473314175499], [53.250651822188125, 5.261193025645646], [53.25058093833399, 5.261134189271962], [53.25043835172284, 5.259927257733124], [53.24993466886504, 5.255663808859628], [53.249849843099696, 5.25267398135802], [53.2502414407274, 5.249908626836014], [53.25103105546529, 5.248697144105266], [53.25234347638244, 5.2486929253372985], [53.25239483238559, 5.2486901149025105], [53.252445627966125, 5.248682043558046], [53.25249532563821, 5.248668796709628], [53.25254339953335, 5.248650514526802], [53.25258934096483, 5.248627390459752], [53.25263266381025, 5.248599669192331], [53.25267290965542, 5.2485676440529865], [53.25270965264494, 5.248531653910939], [53.25274250398836, 5.248492079590491], [53.25336992489284, 5.247651814596112], [53.254287263955035, 5.247903703198259], [53.25508834187034, 5.250200826430741], [53.25493201921116, 5.253811796696817], [53.25468396141696, 5.254940828267383], [53.25455860028397, 5.2555114077055745]]], [[[53.2946547841704, 5.159351500691284], [53.295743174863404, 5.159644939741725], [53.29651170692961, 5.159852193558006], [53.296484648877716, 5.159869488531998], [53.295508806657075, 5.1600871514143325], [53.294803357305845, 5.160244502813853], [53.2942514699249, 5.160032633927113], [53.29276413722555, 5.159461648733198], [53.292762956360434, 5.158841551797027], [53.2946547841704, 5.159351500691284]]], [[[53.41005849770674, 5.47559186606592], [53.40969022865513, 5.476931088323671], [53.409459118992494, 5.47705228910617], [53.408764107134964, 5.476062844268292], [53.40791695970415, 5.472780299312327], [53.40791206409665, 5.472762669423449], [53.407359620096194, 5.470905713560811], [53.407330831123375, 5.470808943839693], [53.40667830156471, 5.468615565708126], [53.406282250893035, 5.466643756282099], [53.40627854463461, 5.4666268288381135], [53.405575893079096, 5.463664313477331], [53.40521413227165, 5.460770671782554], [53.40482657747149, 5.457465056662207], [53.40466648718227, 5.455854604867869], [53.40464326029576, 5.455620950589169], [53.404467505781156, 5.4538529222172745], [53.4044892371747, 5.452731124711095], [53.40467558024402, 5.451081152057839], [53.40467867580161, 5.451032974400662], [53.404706532795075, 5.449277686018612], [53.40470603496646, 5.449246077629033], [53.40467335453875, 5.448556640670813], [53.40465687029993, 5.448208883794033], [53.404627451274905, 5.447588250450118], [53.404696626939085, 5.444892713520334], [53.40469609514212, 5.444853506713541], [53.404419969819884, 5.439627087818351], [53.404595577238396, 5.437081811804614], [53.40459640237333, 5.437028409309296], [53.40424762915649, 5.427850784728228], [53.404252995740386, 5.4277474321707775], [53.40430486748512, 5.426748458228085], [53.404692413296985, 5.419284892666318], [53.4046930317799, 5.419251602601139], [53.40463076274579, 5.415023254624704], [53.40460972509305, 5.413594703216496], [53.404600274160245, 5.41295294229661], [53.40460003467896, 5.412573038683106], [53.40459986084708, 5.412297278683437], [53.404598152176895, 5.4095867120644], [53.4046197245106, 5.40874814092547], [53.40466946365183, 5.406814654781576], [53.404727396475586, 5.404562659487047],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_54c5ca39d5f04502b16c97a6e69b1b6a = L.popup({maxWidth: '300'
});
var html_4237d209cd1942fda6f460f2e3ef5a78 = $('<div id="html_4237d209cd1942fda6f460f2e3ef5a78" style="width: 100.0%; height: 100.0%;">Terschelling (0, 0%)</div>')[0];
popup_54c5ca39d5f04502b16c97a6e69b1b6a.setContent(html_4237d209cd1942fda6f460f2e3ef5a78);
polygon_fb6f6bbc8e794b0fae889470e20cde8d.bindPopup(popup_54c5ca39d5f04502b16c97a6e69b1b6a)
;
var polygon_ae2742eac4794d91973a4b9c3b41fef7 = L.polygon(
[[[[53.295743174863404, 5.159644939741725], [53.2946547841704, 5.159351500691284], [53.292762956360434, 5.158841551797027], [53.292758702623274, 5.156607825556846], [53.292756630070436, 5.156563289694052], [53.29243634749576, 5.153057373527685], [53.29281592779627, 5.150371920187414], [53.29282028201786, 5.150325745107803], [53.292820338922766, 5.150279365220086], [53.292816098021355, 5.150233179594855], [53.29280759580399, 5.15018758563119], [53.29249407466455, 5.148853117223442], [53.2924914084605, 5.148842310515585], [53.292141166836394, 5.147487719969363], [53.29212370188967, 5.147433245580077], [53.29210012897376, 5.147381122638032], [53.29143799709352, 5.146115365781446], [53.2914154592796, 5.146076616782182], [53.291389541550664, 5.146040042073336], [53.28987704556708, 5.144096564852228], [53.28798527830324, 5.140443416452684], [53.28644811161107, 5.13716838388221], [53.286439442301926, 5.137150816584368], [53.28469051029984, 5.133775117039892], [53.28317353497084, 5.129481579169042], [53.282649529449806, 5.127953361110129], [53.28244844020839, 5.126451031544452], [53.28244712257906, 5.1264418377909315], [53.282127921031034, 5.124352950845987], [53.282163000986344, 5.122231379151409], [53.28232867070389, 5.120958727628396], [53.28243074244527, 5.120174626834062], [53.28337815368462, 5.118714621800031], [53.28340343294244, 5.118670994795331], [53.28560614723333, 5.11438489593397], [53.28612374782612, 5.113589000701716], [53.28749380537031, 5.111482314035326], [53.28810133857393, 5.111548409569888], [53.28893187059216, 5.113083655938952], [53.28921179822027, 5.113641478800509], [53.28963553138475, 5.114485868644885], [53.29101203404351, 5.118960954676816], [53.29103647870919, 5.119024610552684], [53.29245532792173, 5.122078837902841], [53.29247695675715, 5.122120221101264], [53.29250235179391, 5.122159406146133], [53.29253129154914, 5.122196051284976], [53.29256352362468, 5.122229836917123], [53.29259876690841, 5.122260468381098], [53.29263671402594, 5.12228767852451], [53.29267703402139, 5.122311230034025], [53.29413116208555, 5.123071865030063], [53.29537910421954, 5.124024366277826], [53.297194506054886, 5.125409985423349], [53.298894346873205, 5.127343148189414], [53.29992209615952, 5.129125976327714], [53.2998740397055, 5.132645912924335], [53.299875023438084, 5.132684820744028], [53.30004444425185, 5.135319802997208], [53.30021620913329, 5.1401433302034345], [53.29894420802638, 5.145358727444268], [53.29893477245873, 5.145408062528125], [53.29893033437788, 5.145458095356091], [53.298772025892816, 5.149597959277943], [53.298772258255944, 5.14964150259999], [53.29910914272855, 5.15652610536356], [53.29865119774167, 5.158484673158044], [53.29651170692961, 5.159852193558006], [53.295743174863404, 5.159644939741725]]], [[[53.30105231611505, 5.099383420536489], [53.30080299269759, 5.0986395097366115], [53.30078623911882, 5.098596284621974], [53.30076555417225, 5.098554796962093], [53.30025981159494, 5.0976482820209], [53.30023664959185, 5.0976107568184], [53.30021027133028, 5.097575418361636], [53.30018088199294, 5.097542541529973], [53.30014871018409, 5.097512382055085], [53.29938724410355, 5.096859186187986], [53.29938213765126, 5.096854864763887], [53.29881576138757, 5.0963820247955205], [53.29842429217624, 5.095918504319968], [53.29839675733769, 5.095888474276736], [53.29836686893257, 5.0958607857580045], [53.29727987931152, 5.09493316702005], [53.29683421771577, 5.094361937252231], [53.29626587900617, 5.0933111719071205], [53.29599593009603, 5.092507500957651], [53.29600657800135, 5.092451350652432], [53.29617244208979, 5.092278360539105], [53.29640834472491, 5.092192318276325], [53.296451694048464, 5.092174155813423], [53.29649314645155, 5.0921520032246566], [53.2965323356543, 5.092126056253749], [53.2965689153748, 5.092096544172174], [53.29660256238896, 5.092063727753277], [53.29663297938652, 5.092027896968042], [53.296659897598154, 5.091989368422866], [53.296683079170364, 5.091948482561972], [53.29710893726282, 5.091107563736949], [53.297132352072616, 5.091053690114549], [53.29714928693382,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_3e46565128fc4e4ea45bdc1cddc43d79 = L.popup({maxWidth: '300'
});
var html_2a1076bf3db647cc8f25c1824dfee688 = $('<div id="html_2a1076bf3db647cc8f25c1824dfee688" style="width: 100.0%; height: 100.0%;">Vlieland (0, 0%)</div>')[0];
popup_3e46565128fc4e4ea45bdc1cddc43d79.setContent(html_2a1076bf3db647cc8f25c1824dfee688);
polygon_ae2742eac4794d91973a4b9c3b41fef7.bindPopup(popup_3e46565128fc4e4ea45bdc1cddc43d79)
;
var polygon_3285774974fd478d9e72276f48cac577 = L.polygon(
[[[53.37332465989894, 5.852787503939816], [53.3726815166471, 5.853689945758588], [53.37258642958759, 5.8538095455246575], [53.372398731815274, 5.854058896923892], [53.372186333323754, 5.854377495462308], [53.372178688266864, 5.854388696230421], [53.37161495189858, 5.855215102577823], [53.371519654914984, 5.85535371404308], [53.37126057253685, 5.855730595125918], [53.37094964568407, 5.856180929106106], [53.37064478534462, 5.856598225466993], [53.37050301732875, 5.8568121636700745], [53.370345747585354, 5.857049517474567], [53.370253614008405, 5.85717588176254], [53.370121252869076, 5.857357437293496], [53.36999195431945, 5.857534789744228], [53.36972859538855, 5.857896002937669], [53.36948519479387, 5.858265633285171], [53.368940478868915, 5.859053221063307], [53.3686608508673, 5.8594651513041605], [53.36798027934038, 5.860476587598827], [53.367247726039686, 5.861550273689842], [53.36664230125065, 5.862435926764554], [53.36595612641499, 5.863446862194752], [53.36556503848659, 5.86402882587451], [53.3653382759931, 5.864371515728814], [53.36531753927239, 5.864393924033894], [53.36529901263954, 5.864402791848536], [53.365287982447434, 5.86439047158981], [53.36512592214824, 5.864642497573906], [53.364994916526506, 5.8648192322142965], [53.364907652753004, 5.864814538451411], [53.36482154478504, 5.864817503167783], [53.36480853469291, 5.8651204067710845], [53.36483376287823, 5.865091560395614], [53.3647024170133, 5.867358793386248], [53.36470198328744, 5.867476347954564], [53.36470075605525, 5.8678128053214476], [53.364732695067595, 5.867820522524164], [53.36472515823113, 5.868078585826399], [53.36471483326234, 5.868267547874881], [53.36464767725858, 5.86828108252315], [53.36465910442571, 5.868295106040772], [53.364665344481296, 5.868316445789094], [53.364659329741244, 5.8684049314865305], [53.3646346398017, 5.868949956543376], [53.36460977551125, 5.8695333289603475], [53.364597483858255, 5.869880550888275], [53.36458901152052, 5.870119870441313], [53.364573497120745, 5.870568678295353], [53.36456667571983, 5.870893113317734], [53.364538349461405, 5.871026066822598], [53.36459634775121, 5.871064348201029], [53.36459195363948, 5.8711292822099255], [53.36457166164369, 5.871429201401665], [53.364571225447655, 5.871660214517911], [53.36452961945948, 5.871694776057812], [53.36448872543429, 5.871728760600261], [53.364523696888945, 5.871826734331474], [53.36459477364484, 5.872033166368012], [53.36464305580219, 5.872181372547079], [53.36468135001484, 5.8723219712105195], [53.36469641376329, 5.872456720871266], [53.364706311692984, 5.8725466618117155], [53.36470261795174, 5.872676061979042], [53.36468106790949, 5.872721319355027], [53.36458302636596, 5.872862513413817], [53.364486969429045, 5.873001655331915], [53.36424336182599, 5.873337415485776], [53.36391362877761, 5.873804460611684], [53.363766206301804, 5.874009141832543], [53.36370317092989, 5.8740966496933], [53.363321006882416, 5.874623369438782], [53.36310764445297, 5.874922261702559], [53.36295866243234, 5.875125475458069], [53.36283154144671, 5.875304391845639], [53.36261363497072, 5.875619973079301], [53.36236446267096, 5.875972208203667], [53.3622898376148, 5.876061245443828], [53.36227383506458, 5.876072254103275], [53.362211275535536, 5.876115314082691], [53.36214271812824, 5.876157389910486], [53.36207699858155, 5.876164303943739], [53.36199191824945, 5.8761132281167985], [53.36197733473205, 5.876104470257073], [53.36175342305552, 5.875909782471931], [53.361651420131956, 5.875828608924292], [53.36159988044125, 5.875775587339589], [53.36147637871766, 5.875733494802566], [53.361152124476604, 5.875630348458489], [53.361046871332384, 5.875594982124947], [53.36103142396478, 5.875621888271103], [53.360977626502645, 5.875715606124969], [53.36105464002865, 5.875947494218196], [53.361069121537525, 5.876001190891142], [53.36106864955723, 5.876039998949734], [53.361062433128524, 5.8760772684979665], [53.361058935002774, 5.876084634451025], [53.36104090877673, 5.876122626081722], [53.3610101075596, 5.876171182263751], [53.36094045128508, 5.876297764153733], [53.36
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#feeb9b",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_d640afc940d64f349317afde2faf66a6 = L.popup({maxWidth: '300'
});
var html_6a03d79624aa4d5c9c44f4e3c8fcbec8 = $('<div id="html_6a03d79624aa4d5c9c44f4e3c8fcbec8" style="width: 100.0%; height: 100.0%;">Ferwerderadiel (17, 14%)</div>')[0];
popup_d640afc940d64f349317afde2faf66a6.setContent(html_6a03d79624aa4d5c9c44f4e3c8fcbec8);
polygon_3285774974fd478d9e72276f48cac577.bindPopup(popup_d640afc940d64f349317afde2faf66a6)
;
var polygon_f3d727cc46244cb781848e50fcaa83b3 = L.polygon(
[[[[52.95446367289039, 5.408531037716525], [52.95426090139331, 5.407874904035726], [52.954825511951356, 5.407523081551722], [52.95494576594951, 5.407578899118848], [52.954993013232674, 5.407597967674468], [52.955041955782946, 5.407612128972177], [52.9550920853974, 5.40762123596584], [52.95514288154707, 5.40762519409151], [52.95519381678187, 5.407623962249347], [52.95524436220754, 5.407617553230383], [52.95529399297743, 5.407606033583708], [52.955342193742396, 5.407589522925441], [52.95538846400197, 5.407568192696684], [52.95574827778572, 5.407379527900801], [52.9559454244806, 5.407571827798478], [52.95613133781713, 5.407927885326217], [52.955976449558484, 5.408908635357154], [52.955971128261126, 5.408958363789995], [52.9559708014285, 5.409008375052916], [52.95597547233054, 5.409058168786583], [52.95598509423521, 5.409107246808029], [52.956083428067075, 5.409502847323309], [52.95609223525207, 5.409538278942908], [52.95610609832982, 5.409584425958679], [52.956124338997654, 5.409629024277326], [52.95614037007444, 5.409659470904519], [52.9561467878558, 5.409671659717478], [52.95617323642333, 5.409711936326874], [52.956203439074315, 5.409749480059546], [52.9562371153189, 5.4097839422495495], [52.956273952408225, 5.409815002849012], [52.9563136082389, 5.409842373400383], [52.95635571453009, 5.409865799715323], [52.95639988024369, 5.409885064235335], [52.956445695215905, 5.409899988052207], [52.956492733966385, 5.409910432569529], [52.95654055964965, 5.40991630078982], [52.956588728112024, 5.40991753821534], [52.95663679201646, 5.409914133354209], [52.95668430499695, 5.409906117827126], [52.95673082580386, 5.409893566073714], [52.9567759224018, 5.4098765946612035], [52.956819175981934, 5.4098553612018785], [52.95686018485137, 5.4098300628893465], [52.95689856816369, 5.4098009346672145], [52.95749840527068, 5.4092983984511465], [52.9575293187294, 5.409270216739084], [52.9575577683133, 5.409239549623133], [52.95758355489227, 5.409206611754803], [52.95795646222654, 5.408686879988288], [52.95978322013656, 5.408434899283802], [52.960077232447425, 5.411172995041629], [52.96008479807174, 5.411221174597558], [52.960097021543426, 5.411268387890396], [52.96011378656798, 5.41131418573131], [52.9601349336424, 5.411358132398126], [52.96016026157272, 5.4113998097808], [52.96018952938817, 5.411438821359332], [52.96022245863379, 5.411474795976273], [52.96025873601963, 5.411507391367923], [52.96029801640146, 5.41153629742065], [52.960339926064414, 5.411561239121308], [52.960619223211296, 5.411709511073901], [52.96139008338477, 5.412118741688575], [52.96328538503444, 5.413124910492954], [52.96333134604737, 5.413146395793685], [52.963379247752684, 5.413163112835441], [52.96342859694813, 5.413174889497363], [52.9634788855279, 5.4131816045253895], [52.96352959571418, 5.413183188780711], [52.96358020538821, 5.413179625951626], [52.96363019346615, 5.413170952721492], [52.96367904526417, 5.413157258391025], [52.963726257797745, 5.413138683958851], [52.96467532758285, 5.4127084884247685], [52.9678337814051, 5.411761503481357], [52.96787816604808, 5.411745884515081], [52.96792088596195, 5.411726162507091], [52.96796156282793, 5.411702512111436], [52.96948469262392, 5.410718228019252], [52.97039520873853, 5.410491880897907], [52.97051066162993, 5.410463180220127], [52.970942876516716, 5.410355735009817], [52.97099110178201, 5.410341130341056], [52.9710376122252, 5.41032174603718], [52.971081935491334, 5.410297778963052], [52.971123621438174, 5.410269472525645], [52.97116224670782, 5.410237114202031], [52.97119741902628, 5.410201032619795], [52.97122878118734, 5.410161594219524], [52.97125601468035, 5.410119199533283], [52.971278842924924, 5.410074279116854], [52.971297034079925, 5.410027289177055], [52.97131040339798, 5.409978706938558], [52.97139447307927, 5.409599433133757], [52.97205109337038, 5.409598570897714], [52.9721037024817, 5.409598501814451], [52.97215443785903, 5.409595854100541], [52.97220464264762, 5.409588071549216], [52.972253107586404, 5.409575414946181], [52.972253798515375, 5.409575234510304], [52.972301397959626, 5.4
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#e51f1d",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_c64f352ff5204e3c8ee399d53223322c = L.popup({maxWidth: '300'
});
var html_31f92d997d1e4eeeb8bb79eae1866373 = $('<div id="html_31f92d997d1e4eeeb8bb79eae1866373" style="width: 100.0%; height: 100.0%;">Súdwest-Fryslân (368, 74%)</div>')[0];
popup_c64f352ff5204e3c8ee399d53223322c.setContent(html_31f92d997d1e4eeeb8bb79eae1866373);
polygon_f3d727cc46244cb781848e50fcaa83b3.bindPopup(popup_c64f352ff5204e3c8ee399d53223322c)
;
var polygon_8b52ba0a8f6847c1a18a8141a873f24d = L.polygon(
[[[[53.04991737218333, 5.797867859250339], [53.04980870085548, 5.797947047380133], [53.0498584173969, 5.798073707964035], [53.049715767770955, 5.798231744438682], [53.04971023050528, 5.798237627412537], [53.04963724815387, 5.798315123188399], [53.04941906389348, 5.798571641473139], [53.049210956469246, 5.79886359505992], [53.04904224106722, 5.799085771015765], [53.04897931572874, 5.799160153911213], [53.04875032838869, 5.799403676262753], [53.04859363318501, 5.799569087218999], [53.04844622415095, 5.7997048354672], [53.04836318369567, 5.799782917276036], [53.0482712839267, 5.799850296671125], [53.04822696359179, 5.799902649595146], [53.048083741588194, 5.800069586462974], [53.047963301055525, 5.800212715254577], [53.04790839519645, 5.800272662151748], [53.047690071546675, 5.800633333163056], [53.047617492082864, 5.800812285872637], [53.047552058247916, 5.800967327293216], [53.04747822177974, 5.801104260920357], [53.04742881978197, 5.80120180560636], [53.04740816767129, 5.801238739065667], [53.047202721927974, 5.80164499001245], [53.04716617548572, 5.801712340292025], [53.046998679633575, 5.801928586909914], [53.04687326106914, 5.802091492184895], [53.04679938714532, 5.8022233510713805], [53.046707048082034, 5.802536028835384], [53.046646201546345, 5.802774449724454], [53.046320812146206, 5.8034416667159565], [53.04626047430259, 5.803579913916537], [53.04621918553454, 5.803682466430958], [53.04617004317458, 5.8038185532309114], [53.04600093794807, 5.804350936407914], [53.04595985828481, 5.804455145089562], [53.0459101852771, 5.8045754947080725], [53.04586220713665, 5.804653034078457], [53.04578648429387, 5.804783451663434], [53.04554889169144, 5.805230918780259], [53.04546043771119, 5.805404155158272], [53.04528404808269, 5.805761531074106], [53.0449985728236, 5.806275760062028], [53.04487216656318, 5.806554896437374], [53.04471664518638, 5.806943776986996], [53.04466877417109, 5.807056920758117], [53.04461560738823, 5.807176051515522], [53.044580779021366, 5.807242112900576], [53.04448838543825, 5.807392474701117], [53.04435881285641, 5.807633253136694], [53.04430192759401, 5.807754359448399], [53.04422789633609, 5.807916363996081], [53.0441384311256, 5.808066766988414], [53.04396922647796, 5.808376983639154], [53.04383539645654, 5.808660061474263], [53.043751275197465, 5.808859464216784], [53.043690997336064, 5.809019809176928], [53.043690313485946, 5.809022115929049], [53.04369026076047, 5.809022291970233], [53.04368944928055, 5.8090250188443555], [53.04368457705137, 5.809041396435654], [53.04356697299575, 5.809436844484435], [53.04338812206688, 5.810024441038522], [53.04333005699419, 5.810208929376264], [53.04323728633708, 5.810490220598954], [53.04303326302144, 5.811056778107913], [53.04284205542602, 5.811528224257556], [53.042650574737415, 5.812068623234812], [53.04237214069131, 5.812831548186679], [53.0421642180006, 5.813419829703613], [53.041875531374465, 5.81440167910748], [53.041789818303194, 5.814649071069828], [53.04164145084288, 5.815015124114029], [53.04143441371589, 5.8155564871054395], [53.0412968596076, 5.815993760474655], [53.041078867772804, 5.816816814625667], [53.04105555570383, 5.816897394168216], [53.04099865162736, 5.81707100581671], [53.040342535690264, 5.818887710988184], [53.04027249895803, 5.81905171908382], [53.03993180282013, 5.819868372703048], [53.03963370562619, 5.820528549251262], [53.03959089960485, 5.820611658747895], [53.03953207337661, 5.820719088572318], [53.03926232248376, 5.8211812756035695], [53.03906292997206, 5.821505104906763], [53.03904685571826, 5.821539294743002], [53.0390118193511, 5.821610880414288], [53.03882949680962, 5.822044262807864], [53.038647033243365, 5.822540675091895], [53.0386304799448, 5.822590215033196], [53.03843152271311, 5.823185779251598], [53.03843146111856, 5.823185975184565], [53.03830917920402, 5.823571790638473], [53.03821406261678, 5.823842173636641], [53.03818071274977, 5.823926460513632], [53.03811696999169, 5.824057999464271], [53.03797215134026, 5.824315491305799], [53.037791549649256, 5.824604972558494], [53.0376528460754, 5.82
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#a00026",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_b51c4eb34656485eb3a384a7e1bfe8d5 = L.popup({maxWidth: '300'
});
var html_11902f693ee6406ea7d137056494ff0a = $('<div id="html_11902f693ee6406ea7d137056494ff0a" style="width: 100.0%; height: 100.0%;">De Fryske Marren (217, 93%)</div>')[0];
popup_b51c4eb34656485eb3a384a7e1bfe8d5.setContent(html_11902f693ee6406ea7d137056494ff0a);
polygon_8b52ba0a8f6847c1a18a8141a873f24d.bindPopup(popup_b51c4eb34656485eb3a384a7e1bfe8d5)
;
var polygon_34960c62be0c459c8105c923b3d547d6 = L.polygon(
[[[53.32455228385236, 5.721834508178419], [53.323963950076234, 5.7219554147236815], [53.32396416557883, 5.721984559996337], [53.32383550042409, 5.721986201740931], [53.32298426518724, 5.722210514276576], [53.32234600425163, 5.722381189971215], [53.322313754786606, 5.722391309338989], [53.32229296441225, 5.722393998899744], [53.320072597753395, 5.722053029165614], [53.31848414101858, 5.721794745460838], [53.31759789513867, 5.721657285410032], [53.316033227708274, 5.7214146123963], [53.31603505516773, 5.721438423820188], [53.316073404842015, 5.721444813253394], [53.316076239013526, 5.721466126859752], [53.31608941432579, 5.721565244434036], [53.31611024814956, 5.721717978929829], [53.3161240906622, 5.72181946646083], [53.31614915424059, 5.722121329704542], [53.31621111199848, 5.722474299601289], [53.31644125850091, 5.723655042143826], [53.316536144920896, 5.724084304345007], [53.31741525882212, 5.727683300868041], [53.317450887073534, 5.727815792713361], [53.31746017785865, 5.727885624602718], [53.31745826209004, 5.729580718829052], [53.317452177118625, 5.7296822249632555], [53.31743761928516, 5.7297711194784435], [53.31715309109211, 5.731051137454177], [53.31712944371872, 5.7311636362311305], [53.317109741440426, 5.731259901240429], [53.31700223967885, 5.732216206892468], [53.31692204011483, 5.732659139778424], [53.31687571691106, 5.7328917186760435], [53.31676818036722, 5.733466036883563], [53.31659524136057, 5.734297158277772], [53.316485800049655, 5.7347914627657826], [53.31644371843924, 5.735006846606875], [53.31640755418973, 5.735214175602039], [53.316375309874964, 5.735432983617689], [53.31636531958956, 5.735500814208836], [53.316332322409025, 5.735703141129549], [53.31632004240697, 5.7357733982915455], [53.31630278835959, 5.735854749627887], [53.31628592072127, 5.735917452576772], [53.31620738235472, 5.736204455951201], [53.31607432104055, 5.7366704415420395], [53.31593739579349, 5.737203884110312], [53.31590149227795, 5.737360524824703], [53.31587735574382, 5.737490732835008], [53.31584988034271, 5.737647247489638], [53.31582911020632, 5.7377660038932445], [53.315820143803705, 5.7378241787830975], [53.31581692951646, 5.737845038437017], [53.31579327259329, 5.737998448027423], [53.31575906911795, 5.738184795373912], [53.31573980230331, 5.738277996171121], [53.31570387794425, 5.738428904029746], [53.31567086382003, 5.738571011635007], [53.315649480748164, 5.738644014246872], [53.315569658258276, 5.738833499369258], [53.3155252495341, 5.73894193367127], [53.31550838071331, 5.738983133205876], [53.31548581901839, 5.739050454189476], [53.31546127977262, 5.739136468659302], [53.315440619011596, 5.739223566049463], [53.31542085872191, 5.73930990511014], [53.315310379057806, 5.739955104062532], [53.3152944115331, 5.740074542844514], [53.31528984562793, 5.740111806583595], [53.31528822510899, 5.740125042076042], [53.31528006465291, 5.740208293990224], [53.31515554687815, 5.740819119165249], [53.315114850968385, 5.741097354314708], [53.31508372188731, 5.741312230036696], [53.315032904218356, 5.741746830366579], [53.31498512996917, 5.742145174983847], [53.31492758797911, 5.7423732899871975], [53.31488648241455, 5.742488048705465], [53.31485557490993, 5.742554127700975], [53.31484370205121, 5.742579566393872], [53.314815884088816, 5.742643120289699], [53.314805500718364, 5.742675233535676], [53.31479788757894, 5.74271266558704], [53.314793059320394, 5.742765290527487], [53.31478417776948, 5.74288810138595], [53.31476860336459, 5.7430528839619015], [53.314759575381665, 5.743140238105705], [53.31475069308724, 5.743202462559465], [53.31473420035816, 5.743307054960008], [53.314713846393396, 5.743413956096441], [53.3144867741563, 5.7445530782226815], [53.31441398964005, 5.744916637560672], [53.31440813699798, 5.744947917592501], [53.314272394470635, 5.745671873234631], [53.31416095547107, 5.7462627166821925], [53.31396306750101, 5.747311910048312], [53.31395083550619, 5.74736991763583], [53.31392871382961, 5.747474745181547], [53.31387669456909, 5.747721363759591], [53.313555283063565, 5.749301163802779], [53.3129
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#feca65",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_1502219ea0134be288779dc88c7a395d);
var popup_3bae75ba34c843f282d44bfa8b7b9f7f = L.popup({maxWidth: '300'
});
var html_499b2087f283476a9102ca983b0748c4 = $('<div id="html_499b2087f283476a9102ca983b0748c4" style="width: 100.0%; height: 100.0%;">Waadhoeke (103, 30%)</div>')[0];
popup_3bae75ba34c843f282d44bfa8b7b9f7f.setContent(html_499b2087f283476a9102ca983b0748c4);
polygon_34960c62be0c459c8105c923b3d547d6.bindPopup(popup_3bae75ba34c843f282d44bfa8b7b9f7f)
;
var feature_group_40025619134b4788ade62e4f43ff7da9 = L.featureGroup(
).addTo(map_08fa7b2de2344893b5e222cc7ef30d78);
var tile_layer_88d44e00a8bb4433bb7ea6e0ce4e01a9 = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"subdomains": "abc"
}).addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var polygon_906ad319f3504de99cd87b2f25099091 = L.polygon(
[[[53.269759508775365, 6.194671132611735], [53.26966256466082, 6.1949765937649], [53.26960830536876, 6.195151984432215], [53.26964221149918, 6.195179629389442], [53.269623008143704, 6.195242553242415], [53.26961811063762, 6.195258589550095], [53.26937791554775, 6.19604553754901], [53.26921755430138, 6.196613832786641], [53.269086120483635, 6.197084055563407], [53.268907899497286, 6.197738897615405], [53.26881991147339, 6.198088851008265], [53.26877497954512, 6.198267556729182], [53.26876743260404, 6.1983033278076665], [53.268764465279176, 6.19833023690617], [53.268761605003284, 6.198346655731733], [53.26876232793156, 6.198364670592993], [53.26876488694076, 6.198378238169626], [53.26876834463733, 6.198391838190719], [53.268777144133935, 6.198410079872639], [53.26878772031936, 6.198431367520512], [53.26881414914032, 6.198487038237103], [53.268831726259805, 6.198524075668228], [53.26883429592207, 6.19853614496885], [53.268840312582604, 6.198563313550326], [53.26884365306568, 6.198588901301505], [53.26884394524377, 6.198590870956022], [53.26884702255867, 6.198611493500448], [53.26884804640412, 6.1986262014232025], [53.268848595667585, 6.198634035463153], [53.268850013207874, 6.198671564160531], [53.268851320622396, 6.198702825048716], [53.26885139068103, 6.198704469419138], [53.26885146031491, 6.1987060954847735], [53.26884839353408, 6.198744786796262], [53.268848376234054, 6.1987449932248655], [53.268846489327316, 6.19875428088197], [53.26884298438064, 6.198771619811379], [53.26883419022517, 6.198815084081894], [53.26880876539925, 6.198931337659331], [53.26870780958379, 6.199375293158311], [53.26870439211742, 6.19939030719791], [53.268617884465414, 6.199771789529354], [53.268610376272804, 6.199803064534829], [53.26856391747034, 6.199954729317168], [53.26840382162373, 6.2005035946131954], [53.268235472362036, 6.2010687268907505], [53.26816979608277, 6.201344312109932], [53.268073703573116, 6.2017840000635225], [53.267992998786774, 6.202229447287939], [53.267910976375624, 6.2026821975194455], [53.2678932043684, 6.2028406489501595], [53.267731307699854, 6.203834840757127], [53.26768004858667, 6.204283280700766], [53.26766782100095, 6.204426893031735], [53.26762005633225, 6.204884391387382], [53.26758332477131, 6.2051413291265645], [53.26750503251955, 6.205602819233884], [53.26749898488233, 6.205638451771671], [53.267494453509585, 6.205665179910391], [53.267456199035415, 6.205893535192691], [53.26740471211465, 6.206097537422055], [53.267329306972236, 6.2064448081412795], [53.267303343637586, 6.206426838848215], [53.26729092999902, 6.206418240062203], [53.2671921357428, 6.2067678526254095], [53.26714493241874, 6.2067574688941605], [53.26713743160457, 6.206755812469838], [53.267109615747216, 6.2067499638139525], [53.26704685903486, 6.20673675171938], [53.26700374575687, 6.206734044974832], [53.267010060843866, 6.206821200981218], [53.266967723704866, 6.20695491490284], [53.26694301922232, 6.207032938359169], [53.266940428687064, 6.207041162612057], [53.266910945752315, 6.207159713236561], [53.26688741341757, 6.207418709757151], [53.266858059800725, 6.2076326759736205], [53.266764076603636, 6.208483273656984], [53.26671646932924, 6.208722476172495], [53.266714173323, 6.2087494409111335], [53.26671241268521, 6.208770300425963], [53.266634239937346, 6.209267402868237], [53.266631079785206, 6.209286707962972], [53.266629176064896, 6.209298331672999], [53.266614415248725, 6.209388428522967], [53.26656765938793, 6.209619806597593], [53.26654595668374, 6.20975128696196], [53.266473336981015, 6.210416941286713], [53.266456358189025, 6.210518520583605], [53.26643734978252, 6.210650051570928], [53.26641576682591, 6.210766545402872], [53.26638860179508, 6.211020851732452], [53.26632413383465, 6.211448259872339], [53.266310793846216, 6.211515779931415], [53.26623685020235, 6.211906930022046], [53.26621515200588, 6.211900040594912], [53.26601706153361, 6.211945565333452], [53.266010408459756, 6.2119565592105115], [53.26600098929331, 6.211981724164535], [53.26597329118088, 6.2120712715344], [53.26593984958193, 6.21218972492678
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff8bb",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_5c80cc35d32342648b1e69b461635436 = L.popup({maxWidth: '300'
});
var html_3b4bb95a00284c44bf424cb0aac74157 = $('<div id="html_3b4bb95a00284c44bf424cb0aac74157" style="width: 100.0%; height: 100.0%;">Achtkarspelen (13, 5%)</div>')[0];
popup_5c80cc35d32342648b1e69b461635436.setContent(html_3b4bb95a00284c44bf424cb0aac74157);
polygon_906ad319f3504de99cd87b2f25099091.bindPopup(popup_5c80cc35d32342648b1e69b461635436)
;
var polygon_881f98736df641c4b57bc833007b096b = L.polygon(
[[[53.085088543925515, 5.874575981389083], [53.085073180952044, 5.874634822180829], [53.08507017193695, 5.874643340273311], [53.08506889045081, 5.874635863471304], [53.085056565491556, 5.874643769529419], [53.085034392838004, 5.87465571337816], [53.085017549230436, 5.874654420122894], [53.08501498093187, 5.874605483049306], [53.085013635600994, 5.874474651879138], [53.08500660910789, 5.874428052333491], [53.08495843096827, 5.874373827218185], [53.084956284649834, 5.874201198046077], [53.08497610816547, 5.874121707191524], [53.084976366590084, 5.874082443263308], [53.08497231085913, 5.874058800863846], [53.08496408486037, 5.874055320805154], [53.08495029467539, 5.87407004623361], [53.08494274956134, 5.87407581252407], [53.08493362415112, 5.874070291898426], [53.084926812258765, 5.874050589370601], [53.08492569167721, 5.874032264264528], [53.08494198741108, 5.873964897545452], [53.084976012602496, 5.87385562704371], [53.08500418574085, 5.87375130546824], [53.085036368759624, 5.873635342286888], [53.085072607701996, 5.873558497270963], [53.08508336027202, 5.873532872830523], [53.08508196691698, 5.8733912955264165], [53.08506909540108, 5.873263827640352], [53.0850492442375, 5.873193309123472], [53.08498057178848, 5.873091737648598], [53.084933432040806, 5.872996243903468], [53.08484862000784, 5.872905820749675], [53.084808356326775, 5.872905071319804], [53.08478624330206, 5.872904659856547], [53.08478542569847, 5.8729046206449285], [53.08478460809115, 5.872904582344204], [53.08474844790223, 5.872920220957429], [53.08463644855481, 5.872961547872281], [53.084622535104955, 5.872966675519677], [53.08454359440721, 5.872990596437782], [53.08444727549939, 5.873012099156913], [53.08434522765401, 5.873036895308143], [53.08422291824529, 5.873081180466668], [53.084191139341705, 5.873084481097982], [53.08416836549936, 5.873076345752845], [53.08413584769496, 5.873031432289154], [53.08409556026476, 5.872961254148758], [53.0840578628499, 5.872910492175134], [53.084023717097075, 5.872865858601872], [53.084007593961374, 5.872830949490496], [53.08400094421276, 5.87278663917818], [53.08400081023549, 5.872695672703833], [53.08399729112153, 5.872391204350249], [53.08399008676143, 5.872055697327266], [53.083988447223916, 5.8719968320385245], [53.08398150579813, 5.871944563593095], [53.08396732725833, 5.8719087055437935], [53.08394572525907, 5.871881913838539], [53.08392109996579, 5.871871684342264], [53.083825441235405, 5.871867810400127], [53.083684366098815, 5.871863966704613], [53.083613899859095, 5.8718700297698625], [53.083520136131284, 5.871886324438561], [53.083324564955944, 5.871932569232413], [53.08312811446721, 5.871969491684642], [53.08291931429603, 5.872005021548086], [53.08276418673284, 5.872047389372373], [53.08263742266685, 5.872075641697114], [53.08251692805145, 5.872097950246072], [53.08239858854058, 5.872113984001344], [53.08232871748479, 5.872132738975617], [53.082298667792976, 5.87213511945514], [53.0822916380145, 5.872135682165933], [53.082259488114616, 5.872132950091286], [53.082222088066615, 5.87211957859239], [53.082187482921064, 5.872090791677741], [53.0821595279371, 5.872043991815099], [53.08213075844629, 5.871972006284111], [53.08209916340635, 5.871887646923096], [53.08207157887283, 5.871838195311417], [53.08203762979681, 5.871804759656209], [53.08199583473964, 5.8717895185992415], [53.0819435136779, 5.871786024162847], [53.08187634937454, 5.871786617772486], [53.08182334518438, 5.871781026186068], [53.081813400582966, 5.871773662803919], [53.081802192830764, 5.871765358967488], [53.08179035227532, 5.871729111703088], [53.081746395250946, 5.871575071291762], [53.08174177037524, 5.871558857225356], [53.08171650345368, 5.8714539757224085], [53.08165020498854, 5.87125161749373], [53.08158504715924, 5.871060479887116], [53.08152719428043, 5.8708471591080995], [53.0814476683701, 5.870582230323719], [53.08142950009133, 5.870506111280532], [53.081425285811875, 5.870425924912282], [53.081432132094506, 5.870312657129354], [53.08127265373181, 5.870324402696038], [53.081066272081046, 5.87035519029482], [53.0808951
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ffeda1",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_843b015cf40a458da3ffe250b9a3c095 = L.popup({maxWidth: '300'
});
var html_ea87a3973dc6416b8dc8a86896ed438a = $('<div id="html_ea87a3973dc6416b8dc8a86896ed438a" style="width: 100.0%; height: 100.0%;">Heerenveen (17, 12%)</div>')[0];
popup_843b015cf40a458da3ffe250b9a3c095.setContent(html_ea87a3973dc6416b8dc8a86896ed438a);
polygon_881f98736df641c4b57bc833007b096b.bindPopup(popup_843b015cf40a458da3ffe250b9a3c095)
;
var polygon_629ef712913d41068b4a8974e80645e4 = L.polygon(
[[[53.29467007108855, 5.73581343441129], [53.294622941823796, 5.735903516799399], [53.29464216168692, 5.735928146960399], [53.294657843738975, 5.735973715624759], [53.29467833641181, 5.7360644639402505], [53.294673698965674, 5.736145261352982], [53.2946413419833, 5.736303219271786], [53.29461058505068, 5.7364670390209005], [53.29459693184507, 5.73671258161576], [53.294587598425814, 5.7368365023489165], [53.294586486040956, 5.736851259794231], [53.294584945766516, 5.736871709091462], [53.294583279974766, 5.736893827887364], [53.29455636684815, 5.737251099349593], [53.29451175271746, 5.737975547680568], [53.29446975453135, 5.738787148950071], [53.2944214210726, 5.739826501645531], [53.294375118580845, 5.740691904064966], [53.29433548779892, 5.741608498117357], [53.29429299550967, 5.7426090518144335], [53.29425829692361, 5.743402857533427], [53.294210395996124, 5.744253242746667], [53.29418200772737, 5.7448251426459125], [53.29414822585497, 5.745396997917746], [53.29410989484453, 5.745896678128958], [53.294078272963574, 5.746435556127786], [53.29405253414856, 5.746929641685797], [53.2940358673638, 5.747273982150564], [53.29402184183196, 5.7475465093912765], [53.294024936871416, 5.747623004674741], [53.29402825958456, 5.747704391625001], [53.29403012411911, 5.7477508378921165], [53.29402270108174, 5.747918740889447], [53.294004796044455, 5.74831556058915], [53.29399293968741, 5.748553162370716], [53.293962856531124, 5.748875644407773], [53.29393937422782, 5.749362847288765], [53.29393458407746, 5.7497890191818275], [53.293932687563625, 5.750179073183655], [53.29394524861445, 5.750868437763484], [53.29395336922122, 5.751213135289207], [53.293947225770246, 5.751372350672035], [53.29393670957827, 5.751876908556262], [53.293928611256796, 5.752324347551778], [53.29392217462733, 5.752756654362041], [53.29393657368194, 5.753250925141817], [53.29395553453461, 5.75360396332734], [53.29396242106563, 5.753879665489254], [53.29396967309522, 5.75418236514928], [53.293979958569984, 5.754550777409503], [53.2939943603572, 5.75474811025315], [53.293995956727905, 5.7549310867401555], [53.293987368676916, 5.755153417452902], [53.29397390926391, 5.755499131883724], [53.29398874107949, 5.755819443796086], [53.29400928959606, 5.756355310002215], [53.29403444820912, 5.756852075335567], [53.29404780170891, 5.757388480407635], [53.29405669152696, 5.757972988954264], [53.294070755801464, 5.758452413409307], [53.29407912221457, 5.758913941715893], [53.294091626983345, 5.75940235111007], [53.29409627567264, 5.75965704883129], [53.294102456099054, 5.759995875315465], [53.2941133732203, 5.7605022681381834], [53.29412517071452, 5.760753720000888], [53.29418759091036, 5.761426726346741], [53.294238811170175, 5.761742709018887], [53.294324690528654, 5.762210313602651], [53.294434404977714, 5.762842045816712], [53.29449161023956, 5.763196776098054], [53.29449106820005, 5.7632839046071735], [53.29441218545812, 5.76353921708975], [53.294307534889036, 5.763873787813065], [53.294206326969054, 5.764199088939051], [53.294116435936, 5.76443990432277], [53.29389889986343, 5.76504012772369], [53.29381627706413, 5.765283552594293], [53.29371427762757, 5.765645102625359], [53.2936675247273, 5.765799533901518], [53.2935283212751, 5.7662274904023], [53.293480944620164, 5.766422916208645], [53.293417846381494, 5.766782238449316], [53.29340687332183, 5.766868013424954], [53.29340280451819, 5.766981308107443], [53.29340478237672, 5.767100204763587], [53.29339338947, 5.767196578184185], [53.293372832319704, 5.767306983303085], [53.29334539614279, 5.767399031179917], [53.29332235676003, 5.767467302738134], [53.29332019989755, 5.767473162862594], [53.29330290654165, 5.767520234801335], [53.29328786180302, 5.767561042822517], [53.29326310128061, 5.767622415769418], [53.29323477510521, 5.767703103496732], [53.29314839578088, 5.767987487381539], [53.29311705576306, 5.768109163646196], [53.29310060965478, 5.7681751989209715], [53.293073940022964, 5.768294396311035], [53.293065376864014, 5.768331227314122], [53.2930479662884, 5.768403896386138], [53.29303045974051,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fec661",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_2d534be0cf694ff787223aa8b7c16c2d = L.popup({maxWidth: '300'
});
var html_65832d70526e40828a737519d5b2b58e = $('<div id="html_65832d70526e40828a737519d5b2b58e" style="width: 100.0%; height: 100.0%;">Leeuwarden (117, 31%)</div>')[0];
popup_2d534be0cf694ff787223aa8b7c16c2d.setContent(html_65832d70526e40828a737519d5b2b58e);
polygon_629ef712913d41068b4a8974e80645e4.bindPopup(popup_2d534be0cf694ff787223aa8b7c16c2d)
;
var polygon_f7667ec3188f47478d6321300a9a4ef2 = L.polygon(
[[[52.92339365270775, 6.246637363120104], [52.923438178540636, 6.246039873821533], [52.92349204334805, 6.245218950245877], [52.923499109178266, 6.245119802200247], [52.92352559278043, 6.244749569352325], [52.923533226641226, 6.244653912042559], [52.923601339024486, 6.243678274029418], [52.923608004973126, 6.243590880085666], [52.9236191670756, 6.243479306202213], [52.923622430301286, 6.243446626949409], [52.9236331722655, 6.243329676317513], [52.9236976784566, 6.24249714866299], [52.923763183409456, 6.241603417062132], [52.92380499442227, 6.241060035237014], [52.92387481612106, 6.240150517186916], [52.92393265392701, 6.239343872984964], [52.923998553526154, 6.23848594751974], [52.92405718453197, 6.237690035064976], [52.924137439247666, 6.2365332113809435], [52.92416510657122, 6.236079910872133], [52.92416731397021, 6.236043774845062], [52.924167507908216, 6.2360424961724865], [52.92417921230438, 6.235965372330708], [52.92417926635942, 6.235964635498799], [52.9241793216984, 6.235963872371296], [52.924200062631954, 6.235685786890971], [52.92420126534108, 6.235669601341726], [52.924346624274946, 6.23371999215692], [52.92435551320954, 6.233600711456737], [52.92437305092755, 6.233365491614247], [52.9243784635512, 6.2332928961499166], [52.92441913794229, 6.232747276223095], [52.92442021392291, 6.23273119243524], [52.92444701714578, 6.232331908312756], [52.924450322576284, 6.2322826037445545], [52.92446397528783, 6.232079174793214], [52.924493509874665, 6.231639049405093], [52.92455090343259, 6.2306441900887135], [52.92458121567918, 6.23022935863989], [52.92460595606181, 6.229888175367797], [52.92462610962797, 6.229621284894818], [52.92464745450975, 6.229315352515273], [52.924650583813076, 6.229261523275657], [52.92465440337996, 6.229188910638767], [52.92465512872017, 6.229179079737471], [52.92470645900492, 6.2282293624105005], [52.924708591462185, 6.228212406600578], [52.924789889523474, 6.227565995845106], [52.92485098779344, 6.226783337678955], [52.92485371464046, 6.226748281642792], [52.92490858111243, 6.225825882144906], [52.9249486821658, 6.225377624924184], [52.92498431347596, 6.224948820324664], [52.92503163288913, 6.22434215114813], [52.92509545910863, 6.223438966133852], [52.92514490055706, 6.222742412495018], [52.92515101671916, 6.222667195881659], [52.92518389274079, 6.222237798953602], [52.92554462798293, 6.217136307971307], [52.92579450474501, 6.213630170666528], [52.92594574189356, 6.213574505762779], [52.9261394087772, 6.213493649520836], [52.926268670663255, 6.213443575064706], [52.9264253857966, 6.21337932739512], [52.926428935931696, 6.213377952397929], [52.926588257699095, 6.213316296888089], [52.92671593749798, 6.213266235904952], [52.9267171250413, 6.213266549758793], [52.92671831479719, 6.213266860931595], [52.92676654907715, 6.213245675905537], [52.92701946431672, 6.213131215379608], [52.92719819002906, 6.213058921088531], [52.92737438084739, 6.2129671413507825], [52.92749517272789, 6.212913765729207], [52.927636093283105, 6.212851490862989], [52.927924643256446, 6.212736673847221], [52.92808590448244, 6.212672507297477], [52.92815191172498, 6.212645322657915], [52.92822641416118, 6.212615056482835], [52.92833036801372, 6.212571561679011], [52.92842618623831, 6.212527213760475], [52.92847993556371, 6.212503812325491], [52.92852378315215, 6.212481531417318], [52.928618428070706, 6.212439168726138], [52.928692326436774, 6.2124066148501305], [52.928759497642, 6.212374811304882], [52.92883971881619, 6.212338897647266], [52.928944261749585, 6.212284273398289], [52.92900935304022, 6.212251745719628], [52.92902044334019, 6.212246424011131], [52.929093365102176, 6.212205641740833], [52.92925311548963, 6.212125976491811], [52.92937322776896, 6.212068166493651], [52.92946274242413, 6.212030790967197], [52.929515511950065, 6.21201001673567], [52.92957261881331, 6.211984594389259], [52.9296619136001, 6.211941325090266], [52.929716533117535, 6.211912941745805], [52.92974565592678, 6.211897802639701], [52.929860217907716, 6.211839409846043], [52.929885503155944, 6.2118269194178435], [52.92990487642407
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff1aa",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_7974445e4a5a463791ba662a05a87c9e = L.popup({maxWidth: '300'
});
var html_3cf896199876464095746e73d8f77dc7 = $('<div id="html_3cf896199876464095746e73d8f77dc7" style="width: 100.0%; height: 100.0%;">Ooststellingwerf (3, 9%)</div>')[0];
popup_7974445e4a5a463791ba662a05a87c9e.setContent(html_3cf896199876464095746e73d8f77dc7);
polygon_f7667ec3188f47478d6321300a9a4ef2.bindPopup(popup_7974445e4a5a463791ba662a05a87c9e)
;
var polygon_b2bf402477e6432695ea7564fcc60502 = L.polygon(
[[[53.075024750782205, 6.33088403100416], [53.07499671345996, 6.330755051368262], [53.074961418035635, 6.330592694184935], [53.07470848200836, 6.329429181981148], [53.07469778075883, 6.329392481031124], [53.07435644613559, 6.327788233011823], [53.07434299569208, 6.327725031305147], [53.074327680294594, 6.327702465299188], [53.0743043064912, 6.327600655924339], [53.07416434065755, 6.326954288763919], [53.07388908070573, 6.325697137012846], [53.073879546032416, 6.325653583153511], [53.073873118426164, 6.32561375310665], [53.07387129489849, 6.325605610807539], [53.07373703557545, 6.325003802234907], [53.07360463507531, 6.324397127771732], [53.07341350898111, 6.32349590849253], [53.07321474188596, 6.322600979684662], [53.072950350901344, 6.321403071483377], [53.072851759012025, 6.320967875585375], [53.072839214675255, 6.320912441588206], [53.07266889064115, 6.320128012264357], [53.07264536349252, 6.320040412118983], [53.072491732786105, 6.319315689367889], [53.07246559881844, 6.319196997875373], [53.07208989371531, 6.317490550737626], [53.072060494007175, 6.317357019880042], [53.07203088671055, 6.317237480455523], [53.07192281020471, 6.316741878443809], [53.071813264436244, 6.316239563871966], [53.07175186095162, 6.315958036460779], [53.07172073732537, 6.315813682717981], [53.07161203898506, 6.315282713221933], [53.07158795972445, 6.315170858854745], [53.071549140483754, 6.314993232613543], [53.07151643017462, 6.314843549765585], [53.07145028781968, 6.314567818173011], [53.0714199233794, 6.314441223834028], [53.07138960383502, 6.314310019809197], [53.071368645808, 6.314220882968744], [53.07135699591466, 6.314171440617826], [53.0713154200946, 6.3140443242853115], [53.071304545336936, 6.313995778314027], [53.07118619267397, 6.313468775372425], [53.07097677496012, 6.312519148199111], [53.070668317475665, 6.3111425001543795], [53.070625785466476, 6.310952522857692], [53.07059549071986, 6.31081647492298], [53.07055681166261, 6.310638471771897], [53.07047261812388, 6.310257344160436], [53.07030652994019, 6.309484489280142], [53.07004798213705, 6.308275155194859], [53.06989488582169, 6.307609598789013], [53.06989211221739, 6.3075975293287385], [53.06973233363981, 6.306871380601445], [53.06957333177434, 6.306147655111954], [53.06954178369395, 6.305992683201085], [53.069485939469736, 6.305729505040059], [53.06923523505859, 6.304679624001984], [53.06922427901373, 6.304639973478072], [53.06920664256659, 6.30457617636794], [53.06919831970276, 6.304546055855748], [53.06916491608359, 6.304425169961116], [53.06888627731863, 6.303188872344145], [53.06885798055557, 6.303023097948107], [53.068798371677076, 6.3027143732142905], [53.06872375731938, 6.302378268153754], [53.068590767095145, 6.301750356911145], [53.06851264988086, 6.301386564784298], [53.06840082286547, 6.300876866183299], [53.068291261664534, 6.300364368549857], [53.06822382393792, 6.300050249120956], [53.0681310808945, 6.299629849491105], [53.06803669412818, 6.299186784656834], [53.06797823819079, 6.298908232248924], [53.067943577435386, 6.298743031780792], [53.06786083561045, 6.298358773129177], [53.067772171790196, 6.297949477397966], [53.06769494084855, 6.297578705113916], [53.06763130438719, 6.297276655901535], [53.06757722159562, 6.2970227722088135], [53.067558604816476, 6.29693371626963], [53.06752272337477, 6.296762062740718], [53.06745261049954, 6.296439216884625], [53.06738603792838, 6.296122278606364], [53.067303599323694, 6.2957252961199845], [53.067207389058694, 6.295263604922786], [53.067131265983235, 6.294896163711612], [53.06705767842728, 6.294539085652645], [53.06703547885233, 6.294436335405129], [53.066988961844615, 6.294220974773012], [53.0669092772633, 6.293857043381497], [53.066786780181246, 6.293272311150536], [53.066675039317026, 6.292770458868134], [53.066566023930996, 6.292253746958136], [53.06656022655965, 6.29222775637435], [53.0664675664247, 6.2917820292035485], [53.066407101100516, 6.291509154588384], [53.06631592077197, 6.291075351731674], [53.06625187909596, 6.290761750921743], [53.06619884638115, 6.290511024194362], [53.06616505086
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff9bf",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_1a74e85e6a134cae9d0a8efb277fbd69 = L.popup({maxWidth: '300'
});
var html_3237856df99b461290c950a7d3d69254 = $('<div id="html_3237856df99b461290c950a7d3d69254" style="width: 100.0%; height: 100.0%;">Opsterland (6, 4%)</div>')[0];
popup_1a74e85e6a134cae9d0a8efb277fbd69.setContent(html_3237856df99b461290c950a7d3d69254);
polygon_b2bf402477e6432695ea7564fcc60502.bindPopup(popup_1a74e85e6a134cae9d0a8efb277fbd69)
;
var polygon_b3c699a87aa14709b6d85a6749c5193f = L.polygon(
[[[53.129004290697836, 6.185205456396789], [53.12878402801594, 6.184637382895723], [53.12866293869319, 6.184552356459142], [53.12863606870793, 6.1845350088165025], [53.12860560950466, 6.184518238956394], [53.12857366425987, 6.184503233623007], [53.12844884344676, 6.184436112392388], [53.12832017489787, 6.184374702051629], [53.128344107083166, 6.184260925641066], [53.128355836304586, 6.184205175154044], [53.12836363044045, 6.184162828850948], [53.128378421498574, 6.184072399539608], [53.128402149669, 6.18393523680231], [53.12842796256485, 6.183748063112858], [53.128445785662684, 6.183632575312069], [53.128451584226525, 6.183582228754377], [53.128450058900256, 6.183549391484616], [53.12844414842142, 6.183531504989477], [53.12829613650106, 6.1831461097744365], [53.1280839742825, 6.182591150810729], [53.12783363136727, 6.18194475237793], [53.12746737123084, 6.18100287901184], [53.127231657575614, 6.180395894190656], [53.12722714266637, 6.180384277599109], [53.12704789095999, 6.179908396571067], [53.12659416100301, 6.178714992277736], [53.1263425693519, 6.178069407443114], [53.12597940787836, 6.177120470984835], [53.12589576165826, 6.176905524243147], [53.1256777016774, 6.1763452019049545], [53.12542936033279, 6.175703677455262], [53.1253709521381, 6.175540854619665], [53.125363412038865, 6.175510884020647], [53.125339312423016, 6.175415059665019], [53.125366876258546, 6.175421432011016], [53.125304143409295, 6.175252122078895], [53.125157695974885, 6.174861239836279], [53.125019276018165, 6.1745121416340325], [53.12488779600366, 6.174167965904283], [53.12479857363469, 6.1745355900756085], [53.12479743913732, 6.174541470618477], [53.12470776702961, 6.1744865547814785], [53.12470977446335, 6.174378045702155], [53.124712020294915, 6.174323395199683], [53.12470855748041, 6.1742801150680435], [53.12470376570965, 6.174233911307572], [53.1246978115513, 6.174170448065007], [53.12469147612318, 6.174110248525987], [53.12468466337076, 6.174051654216709], [53.12467637343959, 6.173990822013972], [53.12466545436866, 6.173900632502742], [53.12466319098861, 6.173859345518153], [53.1246646814945, 6.17381578061165], [53.12466768997637, 6.173777756864613], [53.124671662013796, 6.1737407508338045], [53.12467540409892, 6.173701843180603], [53.12468429694158, 6.173635272127639], [53.124687151171905, 6.173613886712202], [53.1244712872951, 6.173528674515187], [53.12445699168946, 6.173523021964184], [53.1234835748588, 6.173189760904183], [53.12348568477298, 6.173165360101747], [53.12351476626798, 6.172712909268765], [53.123559539796624, 6.172095268447951], [53.123563475922545, 6.1720225594523805], [53.12358395306564, 6.171670368394303], [53.12358780828908, 6.17158107639038], [53.12349506613872, 6.17154751920822], [53.123498419564534, 6.171493727149189], [53.12350250012874, 6.171324742547037], [53.12350295187356, 6.171273572199391], [53.12350132656061, 6.17118418030367], [53.12349832674815, 6.171075419466997], [53.12348703789505, 6.170946685102607], [53.12346231668911, 6.17078182626627], [53.123441534886986, 6.170676941051116], [53.123432137990335, 6.1706380958573135], [53.12341891654253, 6.170576609851723], [53.12340238151293, 6.170508027903092], [53.123368732434855, 6.170398757400292], [53.12330512769661, 6.170225653041943], [53.12322996799953, 6.17003299564402], [53.12316946463769, 6.1698967853887705], [53.12312639872209, 6.1697860175215355], [53.12311419094402, 6.169744014785114], [53.123090760530154, 6.169663432590375], [53.12309105274841, 6.169631036635052], [53.123057967558424, 6.169556405506995], [53.12300122459777, 6.169457984679074], [53.12296663382123, 6.169411649517349], [53.122915813229746, 6.169366814114045], [53.12286272740363, 6.169345420212756], [53.12285311055957, 6.169341542241637], [53.12286629665298, 6.1691703646143194], [53.12284527874964, 6.169163367970837], [53.12262995346609, 6.1691066625935616], [53.12255786587129, 6.169084658383458], [53.12259363836272, 6.1687598909271495], [53.122604759130276, 6.1686462338902315], [53.12262054957527, 6.1684847977101045], [53.12239389134774, 6.167919610924144], [53.12218646
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff8bb",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_f4ea712575764b1282b9945f655c8bca = L.popup({maxWidth: '300'
});
var html_a25e7e615b554611bc070685d4ca7af5 = $('<div id="html_a25e7e615b554611bc070685d4ca7af5" style="width: 100.0%; height: 100.0%;">Smallingerland (10, 5%)</div>')[0];
popup_f4ea712575764b1282b9945f655c8bca.setContent(html_a25e7e615b554611bc070685d4ca7af5);
polygon_b3c699a87aa14709b6d85a6749c5193f.bindPopup(popup_f4ea712575764b1282b9945f655c8bca)
;
var polygon_74f2b55550a945938bccc021fc016390 = L.polygon(
[[[52.933184922154105, 6.209520416466611], [52.93315226897604, 6.2095380208533415], [52.93315348516466, 6.209554567393132], [52.9330697866076, 6.209632575426412], [52.93302010359534, 6.20967364065344], [52.93298818336949, 6.209704599524205], [52.932961583546586, 6.209730556964362], [52.93293988640776, 6.209746938948276], [52.93291422857116, 6.2097637082542665], [52.93287815544492, 6.20979635790346], [52.93286419469258, 6.209815251476848], [52.93283144494684, 6.209838028968218], [52.932812907131826, 6.2098533847532655], [52.93278906228898, 6.209876017938963], [52.932761453761316, 6.209898386723516], [52.93273545808669, 6.209925337532026], [52.93271259062147, 6.209945668793448], [52.93265203042218, 6.209991137769451], [52.93258717568516, 6.210046833397468], [52.932553855140306, 6.210076500727201], [52.932520309846204, 6.210099619603584], [52.93249784238231, 6.210119289192653], [52.93248586598731, 6.210139469054252], [52.93246900159921, 6.210170190332783], [52.93246155286567, 6.2101857115938675], [52.93245409936488, 6.210197944795396], [52.932444648127145, 6.2102092334145995], [52.93242750523568, 6.21022457166571], [52.93238763087073, 6.210249414576372], [52.93233139593451, 6.210289253647582], [52.93231109904768, 6.2103092173009715], [52.932296747503045, 6.2103287721172435], [52.93227984754834, 6.210352948388503], [52.93226332269971, 6.210374826890241], [52.932245209823265, 6.210393775062334], [52.932224098726024, 6.210408517187523], [52.93215226531471, 6.210457103672532], [52.93213037314741, 6.210474151245645], [52.93211443512682, 6.210494048155432], [52.9321004674463, 6.210511304339902], [52.93208868645199, 6.210530818576091], [52.93206641584463, 6.21055080374015], [52.932033508548905, 6.210581771706833], [52.93200684415301, 6.210597256649814], [52.93198332549194, 6.210606450250693], [52.93197499150245, 6.210613684799037], [52.931969132872595, 6.210618779285437], [52.93194922708107, 6.210635789784487], [52.931912146968486, 6.210665846373897], [52.93189545265903, 6.210682144069568], [52.93188692954665, 6.210690475227171], [52.931868236643446, 6.210712713687645], [52.93184502253985, 6.210742884097154], [52.93182315194319, 6.210764512386765], [52.93179023795767, 6.210792862816622], [52.931755121899776, 6.210819594824971], [52.93172725109919, 6.2108301784289015], [52.93170050370695, 6.210827948418665], [52.931680710664295, 6.210829879326089], [52.931663987261956, 6.210836315332083], [52.93166035778716, 6.21083870135139], [52.931649610815555, 6.210846663630464], [52.93163688295871, 6.210856089918426], [52.93161123597765, 6.21087547534989], [52.931538765380985, 6.210953585855734], [52.93151653605003, 6.210980457574799], [52.931495645014735, 6.210999783867403], [52.93147136839606, 6.2110158781059726], [52.93142275833033, 6.211036585084551], [52.93137139515903, 6.21106192400436], [52.931271285788235, 6.21111879387133], [52.93122191996471, 6.211146401602205], [52.93117199854606, 6.211181553968921], [52.93112428955072, 6.211221908617002], [52.931117963665365, 6.21122547815316], [52.9310622805079, 6.21125692223393], [52.93102413165768, 6.211271251665363], [52.93096607655103, 6.2113039152782195], [52.930896349055146, 6.211337711625443], [52.93081988218059, 6.211372599573826], [52.93077065824172, 6.211390050888131], [52.930743171586585, 6.211397339702469], [52.93070545133728, 6.2114185485988544], [52.93069306414646, 6.211422954804921], [52.930666118794065, 6.211432558567178], [52.93061912113246, 6.211459481419231], [52.9306057644248, 6.211465043889572], [52.93056853274406, 6.211480551325586], [52.93053653391154, 6.211497079013899], [52.93051738277779, 6.211508837958579], [52.9304763523868, 6.2115386102742045], [52.930422040918145, 6.211567595872744], [52.93036793832974, 6.211599216865744], [52.930342404299516, 6.211610008122568], [52.93028929214932, 6.211633468169346], [52.93016285126758, 6.211695593330663], [52.930040795665434, 6.2117564476434], [52.929935331196084, 6.21181175512422], [52.929904876424075, 6.211820727508698], [52.929885503155944, 6.2118269194178435], [52.929860217907716, 6.211839409846043], [52.929745
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fed875",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_5f7b3216102a40129ea0a06fb3bf350c = L.popup({maxWidth: '300'
});
var html_d0c1d598e8eb4eaba76650364485ac18 = $('<div id="html_d0c1d598e8eb4eaba76650364485ac18" style="width: 100.0%; height: 100.0%;">Weststellingwerf (3, 25%)</div>')[0];
popup_5f7b3216102a40129ea0a06fb3bf350c.setContent(html_d0c1d598e8eb4eaba76650364485ac18);
polygon_74f2b55550a945938bccc021fc016390.bindPopup(popup_5f7b3216102a40129ea0a06fb3bf350c)
;
var polygon_30564875d8a4416e84e37b85bf54cee8 = L.polygon(
[[[53.281483896086264, 5.876350432489802], [53.281409691983185, 5.876542756320584], [53.2814350811341, 5.876645160012425], [53.28138683998888, 5.87669146477699], [53.281326062900234, 5.876730475846292], [53.28124472649578, 5.876774395308161], [53.28109442961543, 5.876828716887195], [53.280982730944025, 5.876870613057629], [53.28090824679273, 5.876911116871735], [53.28086002929209, 5.876944467333256], [53.28080720729678, 5.877005216556281], [53.28057405932319, 5.8773183090909615], [53.28043942234375, 5.87751162043524], [53.28031730234726, 5.877288765802078], [53.28017906566436, 5.877036480639173], [53.28012373103969, 5.876935509475357], [53.28008598685053, 5.87699630898564], [53.280047114356414, 5.877062658176017], [53.279938284625715, 5.877242692760687], [53.27978250012606, 5.877500916116479], [53.279565305607264, 5.877856592152794], [53.27891354504382, 5.878921469399144], [53.27881725737002, 5.879079255161165], [53.278741116354944, 5.879210344495592], [53.27871186414736, 5.879253037124705], [53.27852572597206, 5.87955209648595], [53.27835431023674, 5.879821473576576], [53.27830070693287, 5.879912415142213], [53.27828304078933, 5.879938763443599], [53.27826321868309, 5.879956841910336], [53.27824619641971, 5.879959390706156], [53.278231448587825, 5.879977557300113], [53.278215924974994, 5.87998376678393], [53.278200427185475, 5.880015626187003], [53.27818386908775, 5.880039243836345], [53.27813473088111, 5.8801128304485815], [53.27798607884125, 5.88034384518863], [53.27780147326138, 5.880643092632978], [53.27772413303289, 5.880770369739339], [53.27765111787636, 5.880885972891057], [53.27757433707647, 5.881010511442012], [53.27752572475264, 5.881091432901817], [53.27749358432857, 5.881141601211793], [53.27742626130327, 5.881234195761178], [53.27720793927011, 5.881592564862491], [53.27704546949802, 5.881846302344165], [53.27698634620302, 5.881946319737816], [53.27683271498583, 5.882185495213982], [53.27680099007569, 5.88221577311817], [53.27678250237223, 5.882244658367476], [53.276773319585644, 5.882259919220252], [53.27674567249871, 5.882320600169539], [53.276354011845214, 5.882956578012747], [53.275912601672104, 5.883686609492787], [53.27571816989601, 5.884008965277107], [53.27560612306347, 5.884182046874487], [53.275479731536166, 5.884369083710779], [53.27534363089975, 5.884574505128765], [53.27509241115845, 5.884967718149684], [53.274961280027405, 5.8851705993354155], [53.27491686306212, 5.8852446491040356], [53.27460448906929, 5.8857495305098455], [53.27436037180612, 5.886164562796531], [53.27407843665777, 5.88663493116314], [53.27388783364666, 5.886952928337332], [53.27372653940298, 5.8871590312073865], [53.273315946864486, 5.887827379157787], [53.273146667253236, 5.8880647134015245], [53.27298325844497, 5.888298950233496], [53.27266566195963, 5.888805479307087], [53.27256541089434, 5.888964508165652], [53.27253651699395, 5.889023890911876], [53.27251344331867, 5.889075201473695], [53.27248866116058, 5.889135456219575], [53.27247277343504, 5.889159375150139], [53.27241899934753, 5.8892378794206115], [53.27236551744713, 5.889317450912334], [53.27230427769786, 5.889399825713853], [53.2722025725447, 5.889532617972166], [53.27215698414826, 5.88959643388266], [53.27210041980568, 5.889675612667828], [53.272060669952, 5.889730910095108], [53.27199709472623, 5.88982808035586], [53.27193248482185, 5.889925703951445], [53.27178057851406, 5.890169474430799], [53.2715996055775, 5.8904622488499845], [53.27156490458143, 5.89052204184969], [53.27144699987513, 5.890735477205042], [53.27113744541345, 5.891275864926711], [53.27104359746242, 5.891441372284035], [53.27097952465667, 5.891562658628309], [53.270977993880805, 5.891565554566619], [53.27095394957726, 5.89153327267407], [53.27084262949678, 5.891699638491085], [53.27079270545102, 5.891776683135599], [53.27074738742475, 5.891843993430475], [53.270724340808584, 5.8918757850074055], [53.27068989533609, 5.891915192964102], [53.27068178878425, 5.891928408361216], [53.27067094395516, 5.891947482468142], [53.270658642599564, 5.891966659374631], [53.27065278639668, 5.8
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fedf82",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_0794761d3ae743dbb6e49881fd7b1758 = L.popup({maxWidth: '300'
});
var html_1ce87103b7e8431da85629d214495501 = $('<div id="html_1ce87103b7e8431da85629d214495501" style="width: 100.0%; height: 100.0%;">Tytsjerksteradiel (46, 21%)</div>')[0];
popup_0794761d3ae743dbb6e49881fd7b1758.setContent(html_1ce87103b7e8431da85629d214495501);
polygon_30564875d8a4416e84e37b85bf54cee8.bindPopup(popup_0794761d3ae743dbb6e49881fd7b1758)
;
var polygon_f1e1763b6bcb44c4acf1c0d96725d713 = L.polygon(
[[[53.325069178417294, 6.034320682057868], [53.325002595004186, 6.034379293658696], [53.324950471420514, 6.034427421397184], [53.32484772280514, 6.034515880863414], [53.32478324402785, 6.034582358140175], [53.32472969605152, 6.034628048465112], [53.32466740596947, 6.034690355631371], [53.32461637008292, 6.034736698095982], [53.32458087013277, 6.034773159393012], [53.32455082015082, 6.034801943046732], [53.32452394163151, 6.03483919334969], [53.32450107647276, 6.034868715132852], [53.3244796326686, 6.03489948936329], [53.324461439574996, 6.0349291115486015], [53.32444064806984, 6.034968899857776], [53.324417659335424, 6.035014628359533], [53.32438918522258, 6.035072865724805], [53.324349285468884, 6.035168676023886], [53.3243357286332, 6.035203199648682], [53.32432127020443, 6.035261722699741], [53.32430619089177, 6.035307029451502], [53.32429642012964, 6.035362651435175], [53.32429351834815, 6.035414219916895], [53.32428844329056, 6.035515580702107], [53.32428302791402, 6.035613319967717], [53.32427689582041, 6.035712249300344], [53.324268920519664, 6.035816537863839], [53.32426392429957, 6.0359064799445905], [53.32426779476261, 6.036013438342622], [53.324276079585154, 6.036106656350729], [53.3242990195211, 6.03620982033502], [53.32432316358555, 6.036297979209965], [53.32433475568019, 6.0363290671119305], [53.32435204679155, 6.036375434641531], [53.32437112032663, 6.036420880085861], [53.3243930499737, 6.036468170389213], [53.32443844845842, 6.036548981132119], [53.32448135912937, 6.036626152812061], [53.32452138001539, 6.036704451741567], [53.32459506512813, 6.036848302282693], [53.324675114780405, 6.0370049012365135], [53.32475482030072, 6.037160294691983], [53.324798039835926, 6.037243460188857], [53.32484444254092, 6.0373345085509715], [53.32487881064609, 6.037401287055649], [53.32492251632137, 6.0374676524035324], [53.32496221449797, 6.037542345360192], [53.32500508976016, 6.037624321120649], [53.32504770743966, 6.037692471356875], [53.32507908615456, 6.03777358316042], [53.32510927900881, 6.037867884344641], [53.3251347769608, 6.037966287222233], [53.32515347866351, 6.0380603399640975], [53.32516712716467, 6.038156702677058], [53.32517505707774, 6.038248717710678], [53.325176302676944, 6.038416856618604], [53.32517124423927, 6.038615787542085], [53.325162553252014, 6.0388499174602694], [53.32515565221927, 6.039078625880013], [53.32514480200658, 6.039316340314168], [53.32513502167834, 6.039552269020803], [53.325120583677226, 6.039767175870632], [53.325103258063365, 6.040009098966318], [53.325081983838615, 6.040238399736828], [53.32506573346023, 6.040483924953478], [53.32504588002805, 6.040742648293961], [53.32502424308774, 6.04097556026364], [53.32498419928019, 6.041443787643528], [53.324973747648194, 6.041553038007304], [53.32495717719578, 6.041667102477484], [53.32493594427139, 6.041759543997913], [53.32490931554154, 6.041842974123556], [53.32485823796098, 6.0419954298912355], [53.32480140160004, 6.04214608664852], [53.3247395373901, 6.042307546957263], [53.324675152268405, 6.042466612487004], [53.32461688477443, 6.042607655601156], [53.32454746154582, 6.042772722208893], [53.324478407567284, 6.042929373975078], [53.32439640101106, 6.043126244037521], [53.3243244655102, 6.043300305260728], [53.32426727527853, 6.043443148724325], [53.324210071720664, 6.04361300539104], [53.32408596310672, 6.043950334470512], [53.32401797749605, 6.044136398816475], [53.3239859336702, 6.044297858385118], [53.323958562258014, 6.04446413109906], [53.32390743135385, 6.044752248496981], [53.323887956893635, 6.044938331382263], [53.323873885056294, 6.045101009598383], [53.3238590870733, 6.045284687681552], [53.32384353777789, 6.045539804387653], [53.32383448985872, 6.045710288178485], [53.32382328420024, 6.045889173377435], [53.32382034536781, 6.04608605774965], [53.323826746998165, 6.04625415150302], [53.32384430465369, 6.046411429567082], [53.32387692543644, 6.046633561655503], [53.323900950752, 6.046787847589045], [53.32393216373208, 6.046930718699537], [53.32401792282294, 6.047292141411166], [53.32405345059775, 6.0474
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#feb853",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_b42587248dce447197a42177390ed591 = L.popup({maxWidth: '300'
});
var html_eb0edaf9a9964906af0bd16d4db2b34d = $('<div id="html_eb0edaf9a9964906af0bd16d4db2b34d" style="width: 100.0%; height: 100.0%;">Dantumadiel (70, 36%)</div>')[0];
popup_b42587248dce447197a42177390ed591.setContent(html_eb0edaf9a9964906af0bd16d4db2b34d);
polygon_f1e1763b6bcb44c4acf1c0d96725d713.bindPopup(popup_b42587248dce447197a42177390ed591)
;
var polygon_6a263bf04a694673855ba56edd436f94 = L.polygon(
[[[[53.375211679718696, 5.850111068652949], [53.37531545331031, 5.849958773410351], [53.37633636166836, 5.8484913469106905], [53.37663829352857, 5.8480611646620915], [53.37668608800056, 5.8479930690937065], [53.37771226524705, 5.8465228250395285], [53.37805932611621, 5.84603087387064], [53.37846951987256, 5.8454392215604445], [53.38301091877081, 5.858531098277638], [53.38060306425852, 5.861465570816728], [53.380575018702025, 5.861503225366409], [53.380550628749525, 5.861543344545966], [53.38053010946367, 5.861585574597577], [53.380513641776815, 5.861629543150439], [53.38050137089565, 5.861674862504213], [53.380493405020786, 5.861721133047638], [53.38048981439272, 5.861767946782173], [53.380490630672426, 5.861814890919598], [53.38049584666222, 5.86186155152184], [53.38100913632899, 5.865077097471749], [53.38101856654582, 5.865122520591759], [53.38103216614431, 5.865166874168188], [53.38104981804884, 5.865209776371948], [53.382106853292385, 5.867474172402033], [53.38353618664399, 5.871348271111364], [53.38450495546026, 5.874317598052985], [53.38506006857838, 5.8770657268638224], [53.38507126159093, 5.877110418327582], [53.38592478305356, 5.879955136270764], [53.38594394929453, 5.880008009689866], [53.385968932086726, 5.880058396229085], [53.38599941535354, 5.880105658409364], [53.387027238468946, 5.881517985186846], [53.387424893222786, 5.883739143790016], [53.38716699273474, 5.886151856984064], [53.38716418009735, 5.886200572541394], [53.387166129506134, 5.886249330271658], [53.38717282239401, 5.88629766578352], [53.3871841950148, 5.88634511870705], [53.387200139050364, 5.886391237078498], [53.38722050264228, 5.886435581645014], [53.38724509183821, 5.886477730048287], [53.3872736724392, 5.886517280847293], [53.38730546457293, 5.886553282467286], [53.387305972230294, 5.886553857341799], [53.38734168357324, 5.88658711116023], [53.387380466336566, 5.886616725577732], [53.38742195113517, 5.886642418532797], [53.3874657428485, 5.886663945313753], [53.38751142438389, 5.8866811008895095], [53.38755856064911, 5.886693721862372], [53.387606702696424, 5.886701688024315], [53.38765539199853, 5.886704923501903], [53.387704164815844, 5.88670339747894], [53.38775255661334, 5.88669712448998], [53.38780010648499, 5.8866861642818895], [53.387846361543666, 5.886670621244798], [53.38789088123464, 5.8866506434178305], [53.38793324153165, 5.886626421079117], [53.387973038975474, 5.886598184933495], [53.38800989451674, 5.8865662039151685], [53.389015555922, 5.885603612616981], [53.39096138647854, 5.8837411173957435], [53.390977120293556, 5.883725371542526], [53.391421032896105, 5.8832608858908575], [53.39467718449563, 5.879853828535524], [53.39469589850425, 5.881062133895147], [53.39237674458305, 5.883731924277797], [53.392344071347374, 5.883773845032963], [53.392316032560444, 5.883818997180987], [53.392292945048226, 5.883866870522455], [53.392272936758516, 5.883914702871891], [53.39112886777234, 5.886649744613388], [53.391117333275574, 5.886680042872519], [53.389499970797296, 5.891381491741571], [53.38948846460321, 5.891419874439656], [53.38948006889565, 5.89145905525268], [53.388883476712536, 5.894913662445099], [53.388880546520504, 5.894932841992471], [53.388344701062714, 5.898962454264254], [53.38826987796031, 5.8995251315945945], [53.38762321832691, 5.9023635284632014], [53.387613600495584, 5.90242106213112], [53.38761074879807, 5.902479324412614], [53.38763453058474, 5.904993624258924], [53.38739877109083, 5.9088631794607895], [53.38684704130088, 5.913969236022098], [53.38684557943233, 5.913985139192724], [53.386593429897715, 5.917309918373544], [53.38659326256682, 5.917383265487401], [53.386784685141606, 5.920069819267495], [53.3867903975056, 5.9201175184709784], [53.387637117517926, 5.925132858738314], [53.388354959428355, 5.930443997569832], [53.388360277705345, 5.930691179728633], [53.38837536733121, 5.931392513319355], [53.38838155914306, 5.931680295513498], [53.38845351662997, 5.935024725860822], [53.38845806584665, 5.935236163738548], [53.38846170249454, 5.935286549715085], [53.388470404782666, 5.935336311568154],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fc7234",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_d4b9e9aff42c4854888eada6b1db0ccb = L.popup({maxWidth: '300'
});
var html_2bfaa4f3a5114c7086db105cfc5fb98a = $('<div id="html_2bfaa4f3a5114c7086db105cfc5fb98a" style="width: 100.0%; height: 100.0%;">Dongeradeel (127, 55%)</div>')[0];
popup_d4b9e9aff42c4854888eada6b1db0ccb.setContent(html_2bfaa4f3a5114c7086db105cfc5fb98a);
polygon_6a263bf04a694673855ba56edd436f94.bindPopup(popup_d4b9e9aff42c4854888eada6b1db0ccb)
;
var polygon_2a93311c6129455899f5fe3e80248f13 = L.polygon(
[[[53.465894891007025, 5.673199508015758], [53.46657886883981, 5.674744064628537], [53.46632464455889, 5.677547383176248], [53.46557705119703, 5.67845748293569], [53.46554963088327, 5.678494168471414], [53.46552568252719, 5.678533209198605], [53.46550540707488, 5.678574277533995], [53.465488974653766, 5.678617028881045], [53.46547652314515, 5.678661104521385], [53.46520045859463, 5.679842744372556], [53.46385680811263, 5.685593975208119], [53.462631444314, 5.688979625802052], [53.46261472459884, 5.689035972617415], [53.462604732529606, 5.689093892139416], [53.46201129152766, 5.694369069087091], [53.462008192444564, 5.6944190416091764], [53.46187153141161, 5.705954043385134], [53.4608104611567, 5.714824147983657], [53.46080725054871, 5.714865404180392], [53.46080746245162, 5.714906784572727], [53.46101898482034, 5.719451046351848], [53.46070261629353, 5.724049742862753], [53.46070143841069, 5.724085122758707], [53.46072225550517, 5.733873310340916], [53.459936253346875, 5.755652436481733], [53.459935998245896, 5.755678847718393], [53.46024386302679, 5.774049397462565], [53.460288147458414, 5.776691886647778], [53.46028908576624, 5.776715249483879], [53.46080734945037, 5.78486273946793], [53.461434225933324, 5.7947177033069535], [53.46241767335356, 5.810178227074355], [53.4627474342981, 5.817898514556229], [53.46254432272487, 5.821165617628655], [53.46254460413039, 5.821231902560346], [53.46314227426406, 5.829685874376156], [53.463326991242525, 5.834523291238136], [53.46332763058115, 5.8345358742361215], [53.46390234422695, 5.843593533109394], [53.46390243907107, 5.8435949940341825], [53.464247314579815, 5.848789612862489], [53.46433875724307, 5.853021876138797], [53.46433942299164, 5.853039036324931], [53.464772853401755, 5.860777612271159], [53.465212086422035, 5.869077874540455], [53.46587884239857, 5.8818162408945955], [53.46686831760723, 5.906055603221368], [53.467333954785886, 5.921552965223693], [53.467333987625544, 5.921554021041036], [53.46761575515895, 5.930315197907377], [53.467720036102115, 5.938689382041834], [53.46750269851556, 5.948115215352958], [53.46695726735625, 5.956319712210762], [53.466340212035725, 5.960338713459336], [53.46633592248631, 5.960375871796824], [53.46604457460114, 5.964126834855357], [53.46522746707026, 5.9670937787081995], [53.46423671147724, 5.968886450870387], [53.463564773869905, 5.969442511354769], [53.46340293929303, 5.968322475879614], [53.46339340417697, 5.9682737337197445], [53.46337908041579, 5.96822617800029], [53.463360109340144, 5.9681802779471775], [53.463336678135086, 5.968136486450098], [53.46330901799318, 5.9680952355939], [53.463277401833366, 5.9680569323952675], [53.462954877518555, 5.967703521515287], [53.46291967163951, 5.967668592714812], [53.462881178744816, 5.967637323367526], [53.46283977752372, 5.9676100210981415], [53.462795875277294, 5.967586954503658], [53.462749903911465, 5.967568350510928], [53.46270231568793, 5.967554392144171], [53.46265357877488, 5.967545216724406], [53.462604172641186, 5.967540914518496], [53.46255458333946, 5.967541527851112], [53.46250529872431, 5.96754705068835], [53.46245680365285, 5.967557428697089], [53.462409575214735, 5.967572559779515], [53.46236407803863, 5.9675922950775515], [53.46232075972121, 5.967616440437308], [53.46228004642375, 5.967644758319149], [53.46224233867961, 5.96767697013458], [53.462208007453796, 5.96771275898698], [53.46217739049349, 5.967751772789197], [53.46216862541859, 5.967764160761679], [53.46182601488109, 5.967393960201721], [53.46178459990108, 5.967354077192466], [53.46173888005988, 5.96731921243781], [53.46097248636352, 5.966801649044128], [53.46093576182559, 5.966779089652563], [53.46089723091134, 5.966759776794638], [53.460857179923636, 5.96674385397399], [53.459175695268115, 5.9661579450921725], [53.45920927782779, 5.966013436323674], [53.460486807894455, 5.9661449274428655], [53.46155789266127, 5.966761183070833], [53.46160143242804, 5.966783473628763], [53.46164694188089, 5.966801403212259], [53.46169398547975, 5.966814800229452], [53.46174211300227, 5.966823536466586], [53.4617
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fc6831",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_5aeb61c0a6034009a0c22c388e6d7504 = L.popup({maxWidth: '300'
});
var html_b5cd3df16c8a48af8c81d055922966a7 = $('<div id="html_b5cd3df16c8a48af8c81d055922966a7" style="width: 100.0%; height: 100.0%;">Ameland (4, 57%)</div>')[0];
popup_5aeb61c0a6034009a0c22c388e6d7504.setContent(html_b5cd3df16c8a48af8c81d055922966a7);
polygon_2a93311c6129455899f5fe3e80248f13.bindPopup(popup_5aeb61c0a6034009a0c22c388e6d7504)
;
var polygon_433fb444c1c645ac8f3968b9a4291839 = L.polygon(
[[[53.20983813312905, 5.437989346050762], [53.209644457064186, 5.438459886729576], [53.209633709704086, 5.438485994983495], [53.20947544065938, 5.438877071721935], [53.20947064606092, 5.438888905491809], [53.209469278995904, 5.4388922867023215], [53.2094275949994, 5.438995377449227], [53.209199794016854, 5.439551291747308], [53.20906491054456, 5.439880259799018], [53.20877181790613, 5.440593974728685], [53.20853273873469, 5.441175047562663], [53.208362180960236, 5.441597236384608], [53.20827581277111, 5.44181154557753], [53.20815655026248, 5.442139142792064], [53.20787961076493, 5.442887285759172], [53.20760017046596, 5.44361138068842], [53.20741792819598, 5.444155139567909], [53.20733837927079, 5.444399965243595], [53.20724799486629, 5.444658665295334], [53.20717997247241, 5.44484889031642], [53.20716041226444, 5.4449017417841], [53.20715702070255, 5.444910912381838], [53.20714243579392, 5.444950300076739], [53.207088738622204, 5.445134871542363], [53.20706026041961, 5.445233598227448], [53.20699111346357, 5.445443905833286], [53.206925415986284, 5.4456538292087675], [53.206887011664406, 5.4457830129388975], [53.20686432906753, 5.445862170575253], [53.20683878926308, 5.445923049922264], [53.20676652225674, 5.44607963629116], [53.20668861716353, 5.446243922400654], [53.20664312816159, 5.4463429383584865], [53.20650977516406, 5.446665507350418], [53.20647776122866, 5.446752807414637], [53.206324450318085, 5.447200839617387], [53.20617418443799, 5.447629026790151], [53.20603206895108, 5.448036764404534], [53.205879836791226, 5.448474357182479], [53.205706414215314, 5.448965076492913], [53.205508732954215, 5.449516699218674], [53.205364738511804, 5.449930991211409], [53.20517120145433, 5.4504706386307324], [53.20500971087911, 5.450880617973165], [53.20489723733185, 5.451169055373813], [53.20474412263103, 5.4515559200242985], [53.20463644172421, 5.451851752644251], [53.204447401443986, 5.452368117554514], [53.20427430120093, 5.452832899631024], [53.20414685657501, 5.453179205639054], [53.204127661311354, 5.453231900393913], [53.20409763113173, 5.453314359966563], [53.20409708186081, 5.453315870850923], [53.204072559157304, 5.453383207803902], [53.20403487893998, 5.453487086272432], [53.20397754438702, 5.453645200108129], [53.20393842425309, 5.453753101369246], [53.20391516942388, 5.453817237314482], [53.20390622411595, 5.453842425828953], [53.20382350731755, 5.454075431239434], [53.203746609200905, 5.4542835723224625], [53.20362671933177, 5.454610635889836], [53.203453872995865, 5.455087118798393], [53.203320327234756, 5.4554542634019745], [53.203134288945385, 5.455958059638734], [53.2031043783037, 5.456032509591697], [53.203081746217435, 5.456090239252748], [53.203031023475816, 5.456213128453047], [53.202994545393814, 5.45627004201215], [53.202954456394025, 5.456324077944852], [53.2029041405676, 5.456380191821049], [53.202837476643126, 5.456457633788714], [53.20278579256338, 5.456502102939937], [53.202689265512156, 5.456571235713113], [53.20263929539446, 5.456604108995106], [53.20242382550475, 5.4567205052419085], [53.20211469777515, 5.4568850856936235], [53.201712483632136, 5.457102233395263], [53.20112233502518, 5.457427969727227], [53.20083922815991, 5.457578082098523], [53.20079095071449, 5.457604505427468], [53.20068920853286, 5.457647362268686], [53.20058647851668, 5.4576894245026475], [53.20051495616888, 5.457714776574229], [53.2003820022692, 5.457766202070195], [53.20025123403413, 5.4578136194000315], [53.2002246120333, 5.457824379838925], [53.20017946684657, 5.457857900696788], [53.200147837195935, 5.45788886981026], [53.20012379290945, 5.457917157849942], [53.200070984737344, 5.458007590173755], [53.20002115404246, 5.458123809942158], [53.20009778798237, 5.458221413536262], [53.20011537765825, 5.458334691843252], [53.2001432039622, 5.4584283538511755], [53.20017030171865, 5.458538834968503], [53.20017771244952, 5.4586037322896335], [53.200179131087765, 5.458680292284871], [53.200195321583614, 5.459028342747534], [53.20020917270758, 5.459215823980288], [53.200223818813306, 5.459380500368], [53.2002
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fec15c",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_211911b08113447abfb0b181b68c4bac = L.popup({maxWidth: '300'
});
var html_923d5e627bfc43eb8e15817f18c5f4b0 = $('<div id="html_923d5e627bfc43eb8e15817f18c5f4b0" style="width: 100.0%; height: 100.0%;">Harlingen (12, 32%)</div>')[0];
popup_211911b08113447abfb0b181b68c4bac.setContent(html_923d5e627bfc43eb8e15817f18c5f4b0);
polygon_433fb444c1c645ac8f3968b9a4291839.bindPopup(popup_211911b08113447abfb0b181b68c4bac)
;
var polygon_cecf345523b94ef8a6fe928fce15fa6c = L.polygon(
[[[53.34575987910701, 6.2644403476487485], [53.34560872016441, 6.26560761967956], [53.34560734031609, 6.265619363881715], [53.34547941801557, 6.266831674044096], [53.34547811957323, 6.266845932831891], [53.34534250850742, 6.2686153095215], [53.345341907250436, 6.268624191420567], [53.345209107156926, 6.270884362606905], [53.34500409100883, 6.272409530264661], [53.3448463808085, 6.273239404526662], [53.34478574401875, 6.273558476539974], [53.3447762114854, 6.273588839679805], [53.344522873973226, 6.274395773369355], [53.34447116338438, 6.2745604825586465], [53.34407931887651, 6.275597342791173], [53.34309011442218, 6.27767932045665], [53.34308090006338, 6.277699898479892], [53.34240116060968, 6.279314585392467], [53.342187533151694, 6.279822046683271], [53.34216655598584, 6.279882398702693], [53.34180517669001, 6.281185216417156], [53.34180071710401, 6.281202483673193], [53.341503763411914, 6.282443258802937], [53.341497508864876, 6.2824734860406455], [53.34121565998473, 6.28408480988579], [53.341211522133975, 6.284113264313142], [53.34094919443267, 6.286371425519061], [53.340863615041066, 6.286352239437666], [53.34040876772846, 6.286250268170416], [53.3390693133891, 6.285949995338088], [53.33863812979271, 6.285853344068522], [53.338609367837996, 6.285846899447867], [53.33727479030078, 6.2855477498841825], [53.33681855341963, 6.285445482062089], [53.3363762498783, 6.285346343069739], [53.33632964790625, 6.285335905868119], [53.33629491602774, 6.285328120080934], [53.33548190456316, 6.285145902493344], [53.33502060306914, 6.285042515970645], [53.3336859623411, 6.2847434108890345], [53.3332271314862, 6.28464058086012], [53.33248985604563, 6.284475370769359], [53.33189150668553, 6.284341284516116], [53.33154367856537, 6.284263336901821], [53.33149337808511, 6.284252095834119], [53.331437305974674, 6.284239549857192], [53.33141530054554, 6.284234625004113], [53.3309600078391, 6.284132544206995], [53.33091747626664, 6.284123014125279], [53.330101736173305, 6.283940260936832], [53.32964391733543, 6.283837694442622], [53.329003687003585, 6.283694259606402], [53.32887238839625, 6.283664839590718], [53.328425530724886, 6.2835615883794596], [53.328305197734466, 6.2835337800041495], [53.32829253549578, 6.283530845759175], [53.32826817883964, 6.283525221389903], [53.32804293666331, 6.283473183834266], [53.3279001005245, 6.28344018804904], [53.32785975026109, 6.283430481173304], [53.32712274307826, 6.283253284727051], [53.32711634786448, 6.28325179150234], [53.32696630951426, 6.283217796387554], [53.326707033612244, 6.283159047249714], [53.32650458631151, 6.283112911497704], [53.32645259598522, 6.283100972475487], [53.32619204694955, 6.283039116612165], [53.326185902642884, 6.283037698785784], [53.326059470780244, 6.283009362563755], [53.325947824692115, 6.282984330877752], [53.325567754300806, 6.282897585787833], [53.32540177654515, 6.282856990597649], [53.3252689058525, 6.282824020019796], [53.32526107106787, 6.28282214277011], [53.3249714306252, 6.282755206409508], [53.32472132572522, 6.282696756244619], [53.32470220069415, 6.2826922837710555], [53.32469122249212, 6.282689846343607], [53.32462045793453, 6.282674967879334], [53.32426905568593, 6.282594920710345], [53.32303434028945, 6.282313988555181], [53.323029484631746, 6.282312909132756], [53.322917784917884, 6.282288660499118], [53.322475597569, 6.2821855515037885], [53.32159105071417, 6.281979266691299], [53.32159049963246, 6.281979138502471], [53.32113093694555, 6.281872512249793], [53.32097276456199, 6.281835807824855], [53.32097029586179, 6.281835241540424], [53.32067555238294, 6.281768416970366], [53.31992596481595, 6.281598460814422], [53.319901540384116, 6.281593559321256], [53.319783540239854, 6.281572922720451], [53.31974646683012, 6.281564884884437], [53.3195148823543, 6.281513320736784], [53.319428140506865, 6.281494017094762], [53.319337970015866, 6.281472491986246], [53.31899405928827, 6.281390382141078], [53.31895700959851, 6.281383003636174], [53.31884307121489, 6.281364757352574], [53.3186413736887, 6.281319069168974], [53.31847181443588, 6.2812
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ffeea3",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_be2593ac738f4d0a88baa10035e91697 = L.popup({maxWidth: '300'
});
var html_ed06ab6164be47548e8b51c8c39361c6 = $('<div id="html_ed06ab6164be47548e8b51c8c39361c6" style="width: 100.0%; height: 100.0%;">Kollumerland en Nieuwkruisland (12, 11%)</div>')[0];
popup_be2593ac738f4d0a88baa10035e91697.setContent(html_ed06ab6164be47548e8b51c8c39361c6);
polygon_cecf345523b94ef8a6fe928fce15fa6c.bindPopup(popup_be2593ac738f4d0a88baa10035e91697)
;
var polygon_39e7d8c1cc174f6e87ee493cda344e44 = L.polygon(
[[[[53.47193300178735, 6.0595555504378], [53.47201860868304, 6.0595160007165125], [53.47180487209525, 6.060001034817661], [53.47060816348886, 6.062716734966402], [53.46901875523744, 6.0641774176009555], [53.46898297186578, 6.0642138440515305], [53.46895109026047, 6.064253730129705], [53.46892344292575, 6.064296659849851], [53.46890031820517, 6.064342185483152], [53.46888195727441, 6.0643898322271195], [53.468868551625924, 6.064439103157472], [53.46886024107184, 6.064489484410729], [53.46874972048504, 6.065468646880935], [53.46621893860135, 6.0650373062714085], [53.465845814990814, 6.0646536651819805], [53.4669766249255, 6.06420737250214], [53.467022632191394, 6.064186469703], [53.467066294621404, 6.064161029818327], [53.4671071662308, 6.064131312700821], [53.467144829541326, 6.064097621892477], [53.46717889984554, 6.064060301524084], [53.467209029136356, 6.064019732800146], [53.46723490966167, 6.06397633010511], [53.4684890712322, 6.0616086871474995], [53.46901444017756, 6.060903166391211], [53.47193300178735, 6.0595555504378]]], [[[53.4750862538122, 6.058098743652412], [53.47515988273995, 6.058064724884541], [53.47500007101985, 6.0583722429294316], [53.4750862538122, 6.058098743652412]]], [[[53.51529009773884, 6.389837834905169], [53.51436839268511, 6.390691584619445], [53.51419366395357, 6.390739785728176], [53.513437290892746, 6.390948440709099], [53.5126749945378, 6.390384043897177], [53.51263560293228, 6.390357674628782], [53.51259389120519, 6.390335154221938], [53.51255023426769, 6.390316685093387], [53.51250502451479, 6.390302433246382], [53.5124586682984, 6.3902925267786275], [53.51241158227505, 6.390287054730917], [53.512364189660865, 6.390286066286825], [53.51231691642766, 6.390289570330631], [53.51227018747422, 6.390297535367473], [53.51222442280729, 6.390309889806424], [53.51218003376645, 6.390326522603964], [53.51213741932694, 6.3903472842620515], [53.512096962513645, 6.390371988171841], [53.51205902695837, 6.390400412290946], [53.51156785530583, 6.390806171411768], [53.51082264212277, 6.389608734801434], [53.510796785021185, 6.389571128574035], [53.51076760666882, 6.389536036669059], [53.510735350158484, 6.389503751446714], [53.510700284227916, 6.389474541883978], [53.510662701020955, 6.389448651333665], [53.510622913653506, 6.389426295496997], [53.50930999240396, 6.388765530882528], [53.50785403764404, 6.382132529455669], [53.50684553317898, 6.372059818235013], [53.506840108089655, 6.372021030627502], [53.50683166372858, 6.371982786636383], [53.50574219523144, 6.367828747985116], [53.505726015709016, 6.3677781719312145], [53.505704563731776, 6.367729596970107], [53.5056780812535, 6.367683570971816], [53.50564686696627, 6.367640613056982], [53.50561127293156, 6.367601207741769], [53.50557170060938, 6.367565799473082], [53.502841320358385, 6.365372286463799], [53.50240659272257, 6.364417873156026], [53.50490618145486, 6.35926451801928], [53.504924253259794, 6.359222457718269], [53.50493840245331, 6.359178920844499], [53.50601742060145, 6.355256220113671], [53.50604479259424, 6.355156711003192], [53.50605652308993, 6.355102442386275], [53.5066787812642, 6.351180026579947], [53.506684482548415, 6.35112345598349], [53.506683724490166, 6.3510666038738295], [53.50626118956552, 6.3450592741120815], [53.50625709394488, 6.345021558247238], [53.506208396878186, 6.344690652781338], [53.50591918563231, 6.34272540952241], [53.505912108539164, 6.342687522451114], [53.50590213412617, 6.342650293074216], [53.504635211329614, 6.338559343017373], [53.504621509649816, 6.338520765110462], [53.504604697874164, 6.338483437438014], [53.50352110176084, 6.336318819977605], [53.503510640517234, 6.336299040780712], [53.501589295856256, 6.332855067796914], [53.500822590702995, 6.330472335026986], [53.50085659867049, 6.329443361381655], [53.50090556174612, 6.327961893415878], [53.50090908502549, 6.327855290114307], [53.50090889590105, 6.327817285124096], [53.500905820615685, 6.327779404288982], [53.50090300887829, 6.327755891893008], [53.50054509797823, 6.324762958476599], [53.50029365354688, 6.319857923685882], [53.50
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fda546",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_a0b2dbddf6b24256adf9edc03dd03c1f = L.popup({maxWidth: '300'
});
var html_6d96a40ec7b14eb0805c1d99563f78d6 = $('<div id="html_6d96a40ec7b14eb0805c1d99563f78d6" style="width: 100.0%; height: 100.0%;">Schiermonnikoog (5, 42%)</div>')[0];
popup_a0b2dbddf6b24256adf9edc03dd03c1f.setContent(html_6d96a40ec7b14eb0805c1d99563f78d6);
polygon_39e7d8c1cc174f6e87ee493cda344e44.bindPopup(popup_a0b2dbddf6b24256adf9edc03dd03c1f)
;
var polygon_05be4b9266164a0d81209820f4e45e06 = L.polygon(
[[[[53.25455860028397, 5.2555114077055745], [53.253784176804835, 5.259036185307247], [53.25254344032144, 5.263469889456295], [53.2525313995101, 5.263524535614219], [53.25252554018863, 5.2635801849813815], [53.25236569937922, 5.266845153416133], [53.25220184693421, 5.267338858938373], [53.25211087134121, 5.265263775950789], [53.25210760136635, 5.262080717157426], [53.252105025452224, 5.262030540167252], [53.2520974268196, 5.261980875023952], [53.252084882195405, 5.2619322232194605], [53.2520675182485, 5.2618850760135585], [53.252045510310694, 5.261839909473398], [53.25201908060632, 5.261797179666436], [53.25198849600832, 5.261757318055302], [53.251954065343554, 5.261720727141131], [53.25191613627435, 5.261687776399311], [53.251875091788094, 5.261658798548731], [53.25183134632994, 5.261634086192156], [53.25178534161803, 5.261613888861684], [53.251737542183214, 5.261598410499107], [53.25168843067851, 5.261587807396614], [53.25098950328609, 5.261473314175499], [53.250651822188125, 5.261193025645646], [53.25058093833399, 5.261134189271962], [53.25043835172284, 5.259927257733124], [53.24993466886504, 5.255663808859628], [53.249849843099696, 5.25267398135802], [53.2502414407274, 5.249908626836014], [53.25103105546529, 5.248697144105266], [53.25234347638244, 5.2486929253372985], [53.25239483238559, 5.2486901149025105], [53.252445627966125, 5.248682043558046], [53.25249532563821, 5.248668796709628], [53.25254339953335, 5.248650514526802], [53.25258934096483, 5.248627390459752], [53.25263266381025, 5.248599669192331], [53.25267290965542, 5.2485676440529865], [53.25270965264494, 5.248531653910939], [53.25274250398836, 5.248492079590491], [53.25336992489284, 5.247651814596112], [53.254287263955035, 5.247903703198259], [53.25508834187034, 5.250200826430741], [53.25493201921116, 5.253811796696817], [53.25468396141696, 5.254940828267383], [53.25455860028397, 5.2555114077055745]]], [[[53.2946547841704, 5.159351500691284], [53.295743174863404, 5.159644939741725], [53.29651170692961, 5.159852193558006], [53.296484648877716, 5.159869488531998], [53.295508806657075, 5.1600871514143325], [53.294803357305845, 5.160244502813853], [53.2942514699249, 5.160032633927113], [53.29276413722555, 5.159461648733198], [53.292762956360434, 5.158841551797027], [53.2946547841704, 5.159351500691284]]], [[[53.41005849770674, 5.47559186606592], [53.40969022865513, 5.476931088323671], [53.409459118992494, 5.47705228910617], [53.408764107134964, 5.476062844268292], [53.40791695970415, 5.472780299312327], [53.40791206409665, 5.472762669423449], [53.407359620096194, 5.470905713560811], [53.407330831123375, 5.470808943839693], [53.40667830156471, 5.468615565708126], [53.406282250893035, 5.466643756282099], [53.40627854463461, 5.4666268288381135], [53.405575893079096, 5.463664313477331], [53.40521413227165, 5.460770671782554], [53.40482657747149, 5.457465056662207], [53.40466648718227, 5.455854604867869], [53.40464326029576, 5.455620950589169], [53.404467505781156, 5.4538529222172745], [53.4044892371747, 5.452731124711095], [53.40467558024402, 5.451081152057839], [53.40467867580161, 5.451032974400662], [53.404706532795075, 5.449277686018612], [53.40470603496646, 5.449246077629033], [53.40467335453875, 5.448556640670813], [53.40465687029993, 5.448208883794033], [53.404627451274905, 5.447588250450118], [53.404696626939085, 5.444892713520334], [53.40469609514212, 5.444853506713541], [53.404419969819884, 5.439627087818351], [53.404595577238396, 5.437081811804614], [53.40459640237333, 5.437028409309296], [53.40424762915649, 5.427850784728228], [53.404252995740386, 5.4277474321707775], [53.40430486748512, 5.426748458228085], [53.404692413296985, 5.419284892666318], [53.4046930317799, 5.419251602601139], [53.40463076274579, 5.415023254624704], [53.40460972509305, 5.413594703216496], [53.404600274160245, 5.41295294229661], [53.40460003467896, 5.412573038683106], [53.40459986084708, 5.412297278683437], [53.404598152176895, 5.4095867120644], [53.4046197245106, 5.40874814092547], [53.40466946365183, 5.406814654781576], [53.404727396475586, 5.404562659487047],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_8facd87c46c24e409ccad944f37e244f = L.popup({maxWidth: '300'
});
var html_a86311ab2b6e46319868b72b76d5eac4 = $('<div id="html_a86311ab2b6e46319868b72b76d5eac4" style="width: 100.0%; height: 100.0%;">Terschelling (0, 0%)</div>')[0];
popup_8facd87c46c24e409ccad944f37e244f.setContent(html_a86311ab2b6e46319868b72b76d5eac4);
polygon_05be4b9266164a0d81209820f4e45e06.bindPopup(popup_8facd87c46c24e409ccad944f37e244f)
;
var polygon_689aba9a3c06411c85c2fcf79bd1379d = L.polygon(
[[[[53.295743174863404, 5.159644939741725], [53.2946547841704, 5.159351500691284], [53.292762956360434, 5.158841551797027], [53.292758702623274, 5.156607825556846], [53.292756630070436, 5.156563289694052], [53.29243634749576, 5.153057373527685], [53.29281592779627, 5.150371920187414], [53.29282028201786, 5.150325745107803], [53.292820338922766, 5.150279365220086], [53.292816098021355, 5.150233179594855], [53.29280759580399, 5.15018758563119], [53.29249407466455, 5.148853117223442], [53.2924914084605, 5.148842310515585], [53.292141166836394, 5.147487719969363], [53.29212370188967, 5.147433245580077], [53.29210012897376, 5.147381122638032], [53.29143799709352, 5.146115365781446], [53.2914154592796, 5.146076616782182], [53.291389541550664, 5.146040042073336], [53.28987704556708, 5.144096564852228], [53.28798527830324, 5.140443416452684], [53.28644811161107, 5.13716838388221], [53.286439442301926, 5.137150816584368], [53.28469051029984, 5.133775117039892], [53.28317353497084, 5.129481579169042], [53.282649529449806, 5.127953361110129], [53.28244844020839, 5.126451031544452], [53.28244712257906, 5.1264418377909315], [53.282127921031034, 5.124352950845987], [53.282163000986344, 5.122231379151409], [53.28232867070389, 5.120958727628396], [53.28243074244527, 5.120174626834062], [53.28337815368462, 5.118714621800031], [53.28340343294244, 5.118670994795331], [53.28560614723333, 5.11438489593397], [53.28612374782612, 5.113589000701716], [53.28749380537031, 5.111482314035326], [53.28810133857393, 5.111548409569888], [53.28893187059216, 5.113083655938952], [53.28921179822027, 5.113641478800509], [53.28963553138475, 5.114485868644885], [53.29101203404351, 5.118960954676816], [53.29103647870919, 5.119024610552684], [53.29245532792173, 5.122078837902841], [53.29247695675715, 5.122120221101264], [53.29250235179391, 5.122159406146133], [53.29253129154914, 5.122196051284976], [53.29256352362468, 5.122229836917123], [53.29259876690841, 5.122260468381098], [53.29263671402594, 5.12228767852451], [53.29267703402139, 5.122311230034025], [53.29413116208555, 5.123071865030063], [53.29537910421954, 5.124024366277826], [53.297194506054886, 5.125409985423349], [53.298894346873205, 5.127343148189414], [53.29992209615952, 5.129125976327714], [53.2998740397055, 5.132645912924335], [53.299875023438084, 5.132684820744028], [53.30004444425185, 5.135319802997208], [53.30021620913329, 5.1401433302034345], [53.29894420802638, 5.145358727444268], [53.29893477245873, 5.145408062528125], [53.29893033437788, 5.145458095356091], [53.298772025892816, 5.149597959277943], [53.298772258255944, 5.14964150259999], [53.29910914272855, 5.15652610536356], [53.29865119774167, 5.158484673158044], [53.29651170692961, 5.159852193558006], [53.295743174863404, 5.159644939741725]]], [[[53.30105231611505, 5.099383420536489], [53.30080299269759, 5.0986395097366115], [53.30078623911882, 5.098596284621974], [53.30076555417225, 5.098554796962093], [53.30025981159494, 5.0976482820209], [53.30023664959185, 5.0976107568184], [53.30021027133028, 5.097575418361636], [53.30018088199294, 5.097542541529973], [53.30014871018409, 5.097512382055085], [53.29938724410355, 5.096859186187986], [53.29938213765126, 5.096854864763887], [53.29881576138757, 5.0963820247955205], [53.29842429217624, 5.095918504319968], [53.29839675733769, 5.095888474276736], [53.29836686893257, 5.0958607857580045], [53.29727987931152, 5.09493316702005], [53.29683421771577, 5.094361937252231], [53.29626587900617, 5.0933111719071205], [53.29599593009603, 5.092507500957651], [53.29600657800135, 5.092451350652432], [53.29617244208979, 5.092278360539105], [53.29640834472491, 5.092192318276325], [53.296451694048464, 5.092174155813423], [53.29649314645155, 5.0921520032246566], [53.2965323356543, 5.092126056253749], [53.2965689153748, 5.092096544172174], [53.29660256238896, 5.092063727753277], [53.29663297938652, 5.092027896968042], [53.296659897598154, 5.091989368422866], [53.296683079170364, 5.091948482561972], [53.29710893726282, 5.091107563736949], [53.297132352072616, 5.091053690114549], [53.29714928693382,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_b75cd402545a40f492862fd768aa8990 = L.popup({maxWidth: '300'
});
var html_d2a9b319b9e94d4fa1b4cb654727da14 = $('<div id="html_d2a9b319b9e94d4fa1b4cb654727da14" style="width: 100.0%; height: 100.0%;">Vlieland (0, 0%)</div>')[0];
popup_b75cd402545a40f492862fd768aa8990.setContent(html_d2a9b319b9e94d4fa1b4cb654727da14);
polygon_689aba9a3c06411c85c2fcf79bd1379d.bindPopup(popup_b75cd402545a40f492862fd768aa8990)
;
var polygon_9514eaf8a5ed42f696e162761327ead4 = L.polygon(
[[[53.37332465989894, 5.852787503939816], [53.3726815166471, 5.853689945758588], [53.37258642958759, 5.8538095455246575], [53.372398731815274, 5.854058896923892], [53.372186333323754, 5.854377495462308], [53.372178688266864, 5.854388696230421], [53.37161495189858, 5.855215102577823], [53.371519654914984, 5.85535371404308], [53.37126057253685, 5.855730595125918], [53.37094964568407, 5.856180929106106], [53.37064478534462, 5.856598225466993], [53.37050301732875, 5.8568121636700745], [53.370345747585354, 5.857049517474567], [53.370253614008405, 5.85717588176254], [53.370121252869076, 5.857357437293496], [53.36999195431945, 5.857534789744228], [53.36972859538855, 5.857896002937669], [53.36948519479387, 5.858265633285171], [53.368940478868915, 5.859053221063307], [53.3686608508673, 5.8594651513041605], [53.36798027934038, 5.860476587598827], [53.367247726039686, 5.861550273689842], [53.36664230125065, 5.862435926764554], [53.36595612641499, 5.863446862194752], [53.36556503848659, 5.86402882587451], [53.3653382759931, 5.864371515728814], [53.36531753927239, 5.864393924033894], [53.36529901263954, 5.864402791848536], [53.365287982447434, 5.86439047158981], [53.36512592214824, 5.864642497573906], [53.364994916526506, 5.8648192322142965], [53.364907652753004, 5.864814538451411], [53.36482154478504, 5.864817503167783], [53.36480853469291, 5.8651204067710845], [53.36483376287823, 5.865091560395614], [53.3647024170133, 5.867358793386248], [53.36470198328744, 5.867476347954564], [53.36470075605525, 5.8678128053214476], [53.364732695067595, 5.867820522524164], [53.36472515823113, 5.868078585826399], [53.36471483326234, 5.868267547874881], [53.36464767725858, 5.86828108252315], [53.36465910442571, 5.868295106040772], [53.364665344481296, 5.868316445789094], [53.364659329741244, 5.8684049314865305], [53.3646346398017, 5.868949956543376], [53.36460977551125, 5.8695333289603475], [53.364597483858255, 5.869880550888275], [53.36458901152052, 5.870119870441313], [53.364573497120745, 5.870568678295353], [53.36456667571983, 5.870893113317734], [53.364538349461405, 5.871026066822598], [53.36459634775121, 5.871064348201029], [53.36459195363948, 5.8711292822099255], [53.36457166164369, 5.871429201401665], [53.364571225447655, 5.871660214517911], [53.36452961945948, 5.871694776057812], [53.36448872543429, 5.871728760600261], [53.364523696888945, 5.871826734331474], [53.36459477364484, 5.872033166368012], [53.36464305580219, 5.872181372547079], [53.36468135001484, 5.8723219712105195], [53.36469641376329, 5.872456720871266], [53.364706311692984, 5.8725466618117155], [53.36470261795174, 5.872676061979042], [53.36468106790949, 5.872721319355027], [53.36458302636596, 5.872862513413817], [53.364486969429045, 5.873001655331915], [53.36424336182599, 5.873337415485776], [53.36391362877761, 5.873804460611684], [53.363766206301804, 5.874009141832543], [53.36370317092989, 5.8740966496933], [53.363321006882416, 5.874623369438782], [53.36310764445297, 5.874922261702559], [53.36295866243234, 5.875125475458069], [53.36283154144671, 5.875304391845639], [53.36261363497072, 5.875619973079301], [53.36236446267096, 5.875972208203667], [53.3622898376148, 5.876061245443828], [53.36227383506458, 5.876072254103275], [53.362211275535536, 5.876115314082691], [53.36214271812824, 5.876157389910486], [53.36207699858155, 5.876164303943739], [53.36199191824945, 5.8761132281167985], [53.36197733473205, 5.876104470257073], [53.36175342305552, 5.875909782471931], [53.361651420131956, 5.875828608924292], [53.36159988044125, 5.875775587339589], [53.36147637871766, 5.875733494802566], [53.361152124476604, 5.875630348458489], [53.361046871332384, 5.875594982124947], [53.36103142396478, 5.875621888271103], [53.360977626502645, 5.875715606124969], [53.36105464002865, 5.875947494218196], [53.361069121537525, 5.876001190891142], [53.36106864955723, 5.876039998949734], [53.361062433128524, 5.8760772684979665], [53.361058935002774, 5.876084634451025], [53.36104090877673, 5.876122626081722], [53.3610101075596, 5.876171182263751], [53.36094045128508, 5.876297764153733], [53.36
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#f94928",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_7c798aa53d75432aa9ca19713077b6a0 = L.popup({maxWidth: '300'
});
var html_efd535ed3dfa4d3c9002cebe8887ea86 = $('<div id="html_efd535ed3dfa4d3c9002cebe8887ea86" style="width: 100.0%; height: 100.0%;">Ferwerderadiel (77, 64%)</div>')[0];
popup_7c798aa53d75432aa9ca19713077b6a0.setContent(html_efd535ed3dfa4d3c9002cebe8887ea86);
polygon_9514eaf8a5ed42f696e162761327ead4.bindPopup(popup_7c798aa53d75432aa9ca19713077b6a0)
;
var polygon_7d4295bf678a4ecea13afb691077808d = L.polygon(
[[[[52.95446367289039, 5.408531037716525], [52.95426090139331, 5.407874904035726], [52.954825511951356, 5.407523081551722], [52.95494576594951, 5.407578899118848], [52.954993013232674, 5.407597967674468], [52.955041955782946, 5.407612128972177], [52.9550920853974, 5.40762123596584], [52.95514288154707, 5.40762519409151], [52.95519381678187, 5.407623962249347], [52.95524436220754, 5.407617553230383], [52.95529399297743, 5.407606033583708], [52.955342193742396, 5.407589522925441], [52.95538846400197, 5.407568192696684], [52.95574827778572, 5.407379527900801], [52.9559454244806, 5.407571827798478], [52.95613133781713, 5.407927885326217], [52.955976449558484, 5.408908635357154], [52.955971128261126, 5.408958363789995], [52.9559708014285, 5.409008375052916], [52.95597547233054, 5.409058168786583], [52.95598509423521, 5.409107246808029], [52.956083428067075, 5.409502847323309], [52.95609223525207, 5.409538278942908], [52.95610609832982, 5.409584425958679], [52.956124338997654, 5.409629024277326], [52.95614037007444, 5.409659470904519], [52.9561467878558, 5.409671659717478], [52.95617323642333, 5.409711936326874], [52.956203439074315, 5.409749480059546], [52.9562371153189, 5.4097839422495495], [52.956273952408225, 5.409815002849012], [52.9563136082389, 5.409842373400383], [52.95635571453009, 5.409865799715323], [52.95639988024369, 5.409885064235335], [52.956445695215905, 5.409899988052207], [52.956492733966385, 5.409910432569529], [52.95654055964965, 5.40991630078982], [52.956588728112024, 5.40991753821534], [52.95663679201646, 5.409914133354209], [52.95668430499695, 5.409906117827126], [52.95673082580386, 5.409893566073714], [52.9567759224018, 5.4098765946612035], [52.956819175981934, 5.4098553612018785], [52.95686018485137, 5.4098300628893465], [52.95689856816369, 5.4098009346672145], [52.95749840527068, 5.4092983984511465], [52.9575293187294, 5.409270216739084], [52.9575577683133, 5.409239549623133], [52.95758355489227, 5.409206611754803], [52.95795646222654, 5.408686879988288], [52.95978322013656, 5.408434899283802], [52.960077232447425, 5.411172995041629], [52.96008479807174, 5.411221174597558], [52.960097021543426, 5.411268387890396], [52.96011378656798, 5.41131418573131], [52.9601349336424, 5.411358132398126], [52.96016026157272, 5.4113998097808], [52.96018952938817, 5.411438821359332], [52.96022245863379, 5.411474795976273], [52.96025873601963, 5.411507391367923], [52.96029801640146, 5.41153629742065], [52.960339926064414, 5.411561239121308], [52.960619223211296, 5.411709511073901], [52.96139008338477, 5.412118741688575], [52.96328538503444, 5.413124910492954], [52.96333134604737, 5.413146395793685], [52.963379247752684, 5.413163112835441], [52.96342859694813, 5.413174889497363], [52.9634788855279, 5.4131816045253895], [52.96352959571418, 5.413183188780711], [52.96358020538821, 5.413179625951626], [52.96363019346615, 5.413170952721492], [52.96367904526417, 5.413157258391025], [52.963726257797745, 5.413138683958851], [52.96467532758285, 5.4127084884247685], [52.9678337814051, 5.411761503481357], [52.96787816604808, 5.411745884515081], [52.96792088596195, 5.411726162507091], [52.96796156282793, 5.411702512111436], [52.96948469262392, 5.410718228019252], [52.97039520873853, 5.410491880897907], [52.97051066162993, 5.410463180220127], [52.970942876516716, 5.410355735009817], [52.97099110178201, 5.410341130341056], [52.9710376122252, 5.41032174603718], [52.971081935491334, 5.410297778963052], [52.971123621438174, 5.410269472525645], [52.97116224670782, 5.410237114202031], [52.97119741902628, 5.410201032619795], [52.97122878118734, 5.410161594219524], [52.97125601468035, 5.410119199533283], [52.971278842924924, 5.410074279116854], [52.971297034079925, 5.410027289177055], [52.97131040339798, 5.409978706938558], [52.97139447307927, 5.409599433133757], [52.97205109337038, 5.409598570897714], [52.9721037024817, 5.409598501814451], [52.97215443785903, 5.409595854100541], [52.97220464264762, 5.409588071549216], [52.972253107586404, 5.409575414946181], [52.972253798515375, 5.409575234510304], [52.972301397959626, 5.4
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fee48e",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_58c3d5bfe4a74106a7a8df6d83ce5b61 = L.popup({maxWidth: '300'
});
var html_108ed0795ba1426d98fbe9c2c79ee67d = $('<div id="html_108ed0795ba1426d98fbe9c2c79ee67d" style="width: 100.0%; height: 100.0%;">Súdwest-Fryslân (89, 18%)</div>')[0];
popup_58c3d5bfe4a74106a7a8df6d83ce5b61.setContent(html_108ed0795ba1426d98fbe9c2c79ee67d);
polygon_7d4295bf678a4ecea13afb691077808d.bindPopup(popup_58c3d5bfe4a74106a7a8df6d83ce5b61)
;
var polygon_2ae4adc333534b22ad5aaa2c5b2cae10 = L.polygon(
[[[[53.04991737218333, 5.797867859250339], [53.04980870085548, 5.797947047380133], [53.0498584173969, 5.798073707964035], [53.049715767770955, 5.798231744438682], [53.04971023050528, 5.798237627412537], [53.04963724815387, 5.798315123188399], [53.04941906389348, 5.798571641473139], [53.049210956469246, 5.79886359505992], [53.04904224106722, 5.799085771015765], [53.04897931572874, 5.799160153911213], [53.04875032838869, 5.799403676262753], [53.04859363318501, 5.799569087218999], [53.04844622415095, 5.7997048354672], [53.04836318369567, 5.799782917276036], [53.0482712839267, 5.799850296671125], [53.04822696359179, 5.799902649595146], [53.048083741588194, 5.800069586462974], [53.047963301055525, 5.800212715254577], [53.04790839519645, 5.800272662151748], [53.047690071546675, 5.800633333163056], [53.047617492082864, 5.800812285872637], [53.047552058247916, 5.800967327293216], [53.04747822177974, 5.801104260920357], [53.04742881978197, 5.80120180560636], [53.04740816767129, 5.801238739065667], [53.047202721927974, 5.80164499001245], [53.04716617548572, 5.801712340292025], [53.046998679633575, 5.801928586909914], [53.04687326106914, 5.802091492184895], [53.04679938714532, 5.8022233510713805], [53.046707048082034, 5.802536028835384], [53.046646201546345, 5.802774449724454], [53.046320812146206, 5.8034416667159565], [53.04626047430259, 5.803579913916537], [53.04621918553454, 5.803682466430958], [53.04617004317458, 5.8038185532309114], [53.04600093794807, 5.804350936407914], [53.04595985828481, 5.804455145089562], [53.0459101852771, 5.8045754947080725], [53.04586220713665, 5.804653034078457], [53.04578648429387, 5.804783451663434], [53.04554889169144, 5.805230918780259], [53.04546043771119, 5.805404155158272], [53.04528404808269, 5.805761531074106], [53.0449985728236, 5.806275760062028], [53.04487216656318, 5.806554896437374], [53.04471664518638, 5.806943776986996], [53.04466877417109, 5.807056920758117], [53.04461560738823, 5.807176051515522], [53.044580779021366, 5.807242112900576], [53.04448838543825, 5.807392474701117], [53.04435881285641, 5.807633253136694], [53.04430192759401, 5.807754359448399], [53.04422789633609, 5.807916363996081], [53.0441384311256, 5.808066766988414], [53.04396922647796, 5.808376983639154], [53.04383539645654, 5.808660061474263], [53.043751275197465, 5.808859464216784], [53.043690997336064, 5.809019809176928], [53.043690313485946, 5.809022115929049], [53.04369026076047, 5.809022291970233], [53.04368944928055, 5.8090250188443555], [53.04368457705137, 5.809041396435654], [53.04356697299575, 5.809436844484435], [53.04338812206688, 5.810024441038522], [53.04333005699419, 5.810208929376264], [53.04323728633708, 5.810490220598954], [53.04303326302144, 5.811056778107913], [53.04284205542602, 5.811528224257556], [53.042650574737415, 5.812068623234812], [53.04237214069131, 5.812831548186679], [53.0421642180006, 5.813419829703613], [53.041875531374465, 5.81440167910748], [53.041789818303194, 5.814649071069828], [53.04164145084288, 5.815015124114029], [53.04143441371589, 5.8155564871054395], [53.0412968596076, 5.815993760474655], [53.041078867772804, 5.816816814625667], [53.04105555570383, 5.816897394168216], [53.04099865162736, 5.81707100581671], [53.040342535690264, 5.818887710988184], [53.04027249895803, 5.81905171908382], [53.03993180282013, 5.819868372703048], [53.03963370562619, 5.820528549251262], [53.03959089960485, 5.820611658747895], [53.03953207337661, 5.820719088572318], [53.03926232248376, 5.8211812756035695], [53.03906292997206, 5.821505104906763], [53.03904685571826, 5.821539294743002], [53.0390118193511, 5.821610880414288], [53.03882949680962, 5.822044262807864], [53.038647033243365, 5.822540675091895], [53.0386304799448, 5.822590215033196], [53.03843152271311, 5.823185779251598], [53.03843146111856, 5.823185975184565], [53.03830917920402, 5.823571790638473], [53.03821406261678, 5.823842173636641], [53.03818071274977, 5.823926460513632], [53.03811696999169, 5.824057999464271], [53.03797215134026, 5.824315491305799], [53.037791549649256, 5.824604972558494], [53.0376528460754, 5.82
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffbc2",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_fa85cc82807448828313ccd4f6104743 = L.popup({maxWidth: '300'
});
var html_39ced92185f741968b9503f67b7485f0 = $('<div id="html_39ced92185f741968b9503f67b7485f0" style="width: 100.0%; height: 100.0%;">De Fryske Marren (7, 3%)</div>')[0];
popup_fa85cc82807448828313ccd4f6104743.setContent(html_39ced92185f741968b9503f67b7485f0);
polygon_2ae4adc333534b22ad5aaa2c5b2cae10.bindPopup(popup_fa85cc82807448828313ccd4f6104743)
;
var polygon_39e3f1783c9f4966ab24a82566cc4865 = L.polygon(
[[[53.32455228385236, 5.721834508178419], [53.323963950076234, 5.7219554147236815], [53.32396416557883, 5.721984559996337], [53.32383550042409, 5.721986201740931], [53.32298426518724, 5.722210514276576], [53.32234600425163, 5.722381189971215], [53.322313754786606, 5.722391309338989], [53.32229296441225, 5.722393998899744], [53.320072597753395, 5.722053029165614], [53.31848414101858, 5.721794745460838], [53.31759789513867, 5.721657285410032], [53.316033227708274, 5.7214146123963], [53.31603505516773, 5.721438423820188], [53.316073404842015, 5.721444813253394], [53.316076239013526, 5.721466126859752], [53.31608941432579, 5.721565244434036], [53.31611024814956, 5.721717978929829], [53.3161240906622, 5.72181946646083], [53.31614915424059, 5.722121329704542], [53.31621111199848, 5.722474299601289], [53.31644125850091, 5.723655042143826], [53.316536144920896, 5.724084304345007], [53.31741525882212, 5.727683300868041], [53.317450887073534, 5.727815792713361], [53.31746017785865, 5.727885624602718], [53.31745826209004, 5.729580718829052], [53.317452177118625, 5.7296822249632555], [53.31743761928516, 5.7297711194784435], [53.31715309109211, 5.731051137454177], [53.31712944371872, 5.7311636362311305], [53.317109741440426, 5.731259901240429], [53.31700223967885, 5.732216206892468], [53.31692204011483, 5.732659139778424], [53.31687571691106, 5.7328917186760435], [53.31676818036722, 5.733466036883563], [53.31659524136057, 5.734297158277772], [53.316485800049655, 5.7347914627657826], [53.31644371843924, 5.735006846606875], [53.31640755418973, 5.735214175602039], [53.316375309874964, 5.735432983617689], [53.31636531958956, 5.735500814208836], [53.316332322409025, 5.735703141129549], [53.31632004240697, 5.7357733982915455], [53.31630278835959, 5.735854749627887], [53.31628592072127, 5.735917452576772], [53.31620738235472, 5.736204455951201], [53.31607432104055, 5.7366704415420395], [53.31593739579349, 5.737203884110312], [53.31590149227795, 5.737360524824703], [53.31587735574382, 5.737490732835008], [53.31584988034271, 5.737647247489638], [53.31582911020632, 5.7377660038932445], [53.315820143803705, 5.7378241787830975], [53.31581692951646, 5.737845038437017], [53.31579327259329, 5.737998448027423], [53.31575906911795, 5.738184795373912], [53.31573980230331, 5.738277996171121], [53.31570387794425, 5.738428904029746], [53.31567086382003, 5.738571011635007], [53.315649480748164, 5.738644014246872], [53.315569658258276, 5.738833499369258], [53.3155252495341, 5.73894193367127], [53.31550838071331, 5.738983133205876], [53.31548581901839, 5.739050454189476], [53.31546127977262, 5.739136468659302], [53.315440619011596, 5.739223566049463], [53.31542085872191, 5.73930990511014], [53.315310379057806, 5.739955104062532], [53.3152944115331, 5.740074542844514], [53.31528984562793, 5.740111806583595], [53.31528822510899, 5.740125042076042], [53.31528006465291, 5.740208293990224], [53.31515554687815, 5.740819119165249], [53.315114850968385, 5.741097354314708], [53.31508372188731, 5.741312230036696], [53.315032904218356, 5.741746830366579], [53.31498512996917, 5.742145174983847], [53.31492758797911, 5.7423732899871975], [53.31488648241455, 5.742488048705465], [53.31485557490993, 5.742554127700975], [53.31484370205121, 5.742579566393872], [53.314815884088816, 5.742643120289699], [53.314805500718364, 5.742675233535676], [53.31479788757894, 5.74271266558704], [53.314793059320394, 5.742765290527487], [53.31478417776948, 5.74288810138595], [53.31476860336459, 5.7430528839619015], [53.314759575381665, 5.743140238105705], [53.31475069308724, 5.743202462559465], [53.31473420035816, 5.743307054960008], [53.314713846393396, 5.743413956096441], [53.3144867741563, 5.7445530782226815], [53.31441398964005, 5.744916637560672], [53.31440813699798, 5.744947917592501], [53.314272394470635, 5.745671873234631], [53.31416095547107, 5.7462627166821925], [53.31396306750101, 5.747311910048312], [53.31395083550619, 5.74736991763583], [53.31392871382961, 5.747474745181547], [53.31387669456909, 5.747721363759591], [53.313555283063565, 5.749301163802779], [53.3129
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fc8439",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_40025619134b4788ade62e4f43ff7da9);
var popup_cabd744cb85e4d06b15319ff73f06f27 = L.popup({maxWidth: '300'
});
var html_7af52b2c68f64c8e84648a0517b593a1 = $('<div id="html_7af52b2c68f64c8e84648a0517b593a1" style="width: 100.0%; height: 100.0%;">Waadhoeke (177, 52%)</div>')[0];
popup_cabd744cb85e4d06b15319ff73f06f27.setContent(html_7af52b2c68f64c8e84648a0517b593a1);
polygon_39e3f1783c9f4966ab24a82566cc4865.bindPopup(popup_cabd744cb85e4d06b15319ff73f06f27)
;
var feature_group_bf01d47eaa924e118378599e78f82aad = L.featureGroup(
).addTo(map_08fa7b2de2344893b5e222cc7ef30d78);
var tile_layer_65a71e3342f148e8b74ae54f5e4eb692 = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"subdomains": "abc"
}).addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var polygon_4d3175ce859f4f6fa411b2fcd78bf9c6 = L.polygon(
[[[53.269759508775365, 6.194671132611735], [53.26966256466082, 6.1949765937649], [53.26960830536876, 6.195151984432215], [53.26964221149918, 6.195179629389442], [53.269623008143704, 6.195242553242415], [53.26961811063762, 6.195258589550095], [53.26937791554775, 6.19604553754901], [53.26921755430138, 6.196613832786641], [53.269086120483635, 6.197084055563407], [53.268907899497286, 6.197738897615405], [53.26881991147339, 6.198088851008265], [53.26877497954512, 6.198267556729182], [53.26876743260404, 6.1983033278076665], [53.268764465279176, 6.19833023690617], [53.268761605003284, 6.198346655731733], [53.26876232793156, 6.198364670592993], [53.26876488694076, 6.198378238169626], [53.26876834463733, 6.198391838190719], [53.268777144133935, 6.198410079872639], [53.26878772031936, 6.198431367520512], [53.26881414914032, 6.198487038237103], [53.268831726259805, 6.198524075668228], [53.26883429592207, 6.19853614496885], [53.268840312582604, 6.198563313550326], [53.26884365306568, 6.198588901301505], [53.26884394524377, 6.198590870956022], [53.26884702255867, 6.198611493500448], [53.26884804640412, 6.1986262014232025], [53.268848595667585, 6.198634035463153], [53.268850013207874, 6.198671564160531], [53.268851320622396, 6.198702825048716], [53.26885139068103, 6.198704469419138], [53.26885146031491, 6.1987060954847735], [53.26884839353408, 6.198744786796262], [53.268848376234054, 6.1987449932248655], [53.268846489327316, 6.19875428088197], [53.26884298438064, 6.198771619811379], [53.26883419022517, 6.198815084081894], [53.26880876539925, 6.198931337659331], [53.26870780958379, 6.199375293158311], [53.26870439211742, 6.19939030719791], [53.268617884465414, 6.199771789529354], [53.268610376272804, 6.199803064534829], [53.26856391747034, 6.199954729317168], [53.26840382162373, 6.2005035946131954], [53.268235472362036, 6.2010687268907505], [53.26816979608277, 6.201344312109932], [53.268073703573116, 6.2017840000635225], [53.267992998786774, 6.202229447287939], [53.267910976375624, 6.2026821975194455], [53.2678932043684, 6.2028406489501595], [53.267731307699854, 6.203834840757127], [53.26768004858667, 6.204283280700766], [53.26766782100095, 6.204426893031735], [53.26762005633225, 6.204884391387382], [53.26758332477131, 6.2051413291265645], [53.26750503251955, 6.205602819233884], [53.26749898488233, 6.205638451771671], [53.267494453509585, 6.205665179910391], [53.267456199035415, 6.205893535192691], [53.26740471211465, 6.206097537422055], [53.267329306972236, 6.2064448081412795], [53.267303343637586, 6.206426838848215], [53.26729092999902, 6.206418240062203], [53.2671921357428, 6.2067678526254095], [53.26714493241874, 6.2067574688941605], [53.26713743160457, 6.206755812469838], [53.267109615747216, 6.2067499638139525], [53.26704685903486, 6.20673675171938], [53.26700374575687, 6.206734044974832], [53.267010060843866, 6.206821200981218], [53.266967723704866, 6.20695491490284], [53.26694301922232, 6.207032938359169], [53.266940428687064, 6.207041162612057], [53.266910945752315, 6.207159713236561], [53.26688741341757, 6.207418709757151], [53.266858059800725, 6.2076326759736205], [53.266764076603636, 6.208483273656984], [53.26671646932924, 6.208722476172495], [53.266714173323, 6.2087494409111335], [53.26671241268521, 6.208770300425963], [53.266634239937346, 6.209267402868237], [53.266631079785206, 6.209286707962972], [53.266629176064896, 6.209298331672999], [53.266614415248725, 6.209388428522967], [53.26656765938793, 6.209619806597593], [53.26654595668374, 6.20975128696196], [53.266473336981015, 6.210416941286713], [53.266456358189025, 6.210518520583605], [53.26643734978252, 6.210650051570928], [53.26641576682591, 6.210766545402872], [53.26638860179508, 6.211020851732452], [53.26632413383465, 6.211448259872339], [53.266310793846216, 6.211515779931415], [53.26623685020235, 6.211906930022046], [53.26621515200588, 6.211900040594912], [53.26601706153361, 6.211945565333452], [53.266010408459756, 6.2119565592105115], [53.26600098929331, 6.211981724164535], [53.26597329118088, 6.2120712715344], [53.26593984958193, 6.21218972492678
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc9",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_4dcc60977c824932871e43942237abbe = L.popup({maxWidth: '300'
});
var html_9c659bf3f28147a0b6c00c8f8aef8857 = $('<div id="html_9c659bf3f28147a0b6c00c8f8aef8857" style="width: 100.0%; height: 100.0%;">Achtkarspelen (3, 1%)</div>')[0];
popup_4dcc60977c824932871e43942237abbe.setContent(html_9c659bf3f28147a0b6c00c8f8aef8857);
polygon_4d3175ce859f4f6fa411b2fcd78bf9c6.bindPopup(popup_4dcc60977c824932871e43942237abbe)
;
var polygon_60c5d0af19634289a259bf1f60ecd682 = L.polygon(
[[[53.085088543925515, 5.874575981389083], [53.085073180952044, 5.874634822180829], [53.08507017193695, 5.874643340273311], [53.08506889045081, 5.874635863471304], [53.085056565491556, 5.874643769529419], [53.085034392838004, 5.87465571337816], [53.085017549230436, 5.874654420122894], [53.08501498093187, 5.874605483049306], [53.085013635600994, 5.874474651879138], [53.08500660910789, 5.874428052333491], [53.08495843096827, 5.874373827218185], [53.084956284649834, 5.874201198046077], [53.08497610816547, 5.874121707191524], [53.084976366590084, 5.874082443263308], [53.08497231085913, 5.874058800863846], [53.08496408486037, 5.874055320805154], [53.08495029467539, 5.87407004623361], [53.08494274956134, 5.87407581252407], [53.08493362415112, 5.874070291898426], [53.084926812258765, 5.874050589370601], [53.08492569167721, 5.874032264264528], [53.08494198741108, 5.873964897545452], [53.084976012602496, 5.87385562704371], [53.08500418574085, 5.87375130546824], [53.085036368759624, 5.873635342286888], [53.085072607701996, 5.873558497270963], [53.08508336027202, 5.873532872830523], [53.08508196691698, 5.8733912955264165], [53.08506909540108, 5.873263827640352], [53.0850492442375, 5.873193309123472], [53.08498057178848, 5.873091737648598], [53.084933432040806, 5.872996243903468], [53.08484862000784, 5.872905820749675], [53.084808356326775, 5.872905071319804], [53.08478624330206, 5.872904659856547], [53.08478542569847, 5.8729046206449285], [53.08478460809115, 5.872904582344204], [53.08474844790223, 5.872920220957429], [53.08463644855481, 5.872961547872281], [53.084622535104955, 5.872966675519677], [53.08454359440721, 5.872990596437782], [53.08444727549939, 5.873012099156913], [53.08434522765401, 5.873036895308143], [53.08422291824529, 5.873081180466668], [53.084191139341705, 5.873084481097982], [53.08416836549936, 5.873076345752845], [53.08413584769496, 5.873031432289154], [53.08409556026476, 5.872961254148758], [53.0840578628499, 5.872910492175134], [53.084023717097075, 5.872865858601872], [53.084007593961374, 5.872830949490496], [53.08400094421276, 5.87278663917818], [53.08400081023549, 5.872695672703833], [53.08399729112153, 5.872391204350249], [53.08399008676143, 5.872055697327266], [53.083988447223916, 5.8719968320385245], [53.08398150579813, 5.871944563593095], [53.08396732725833, 5.8719087055437935], [53.08394572525907, 5.871881913838539], [53.08392109996579, 5.871871684342264], [53.083825441235405, 5.871867810400127], [53.083684366098815, 5.871863966704613], [53.083613899859095, 5.8718700297698625], [53.083520136131284, 5.871886324438561], [53.083324564955944, 5.871932569232413], [53.08312811446721, 5.871969491684642], [53.08291931429603, 5.872005021548086], [53.08276418673284, 5.872047389372373], [53.08263742266685, 5.872075641697114], [53.08251692805145, 5.872097950246072], [53.08239858854058, 5.872113984001344], [53.08232871748479, 5.872132738975617], [53.082298667792976, 5.87213511945514], [53.0822916380145, 5.872135682165933], [53.082259488114616, 5.872132950091286], [53.082222088066615, 5.87211957859239], [53.082187482921064, 5.872090791677741], [53.0821595279371, 5.872043991815099], [53.08213075844629, 5.871972006284111], [53.08209916340635, 5.871887646923096], [53.08207157887283, 5.871838195311417], [53.08203762979681, 5.871804759656209], [53.08199583473964, 5.8717895185992415], [53.0819435136779, 5.871786024162847], [53.08187634937454, 5.871786617772486], [53.08182334518438, 5.871781026186068], [53.081813400582966, 5.871773662803919], [53.081802192830764, 5.871765358967488], [53.08179035227532, 5.871729111703088], [53.081746395250946, 5.871575071291762], [53.08174177037524, 5.871558857225356], [53.08171650345368, 5.8714539757224085], [53.08165020498854, 5.87125161749373], [53.08158504715924, 5.871060479887116], [53.08152719428043, 5.8708471591080995], [53.0814476683701, 5.870582230323719], [53.08142950009133, 5.870506111280532], [53.081425285811875, 5.870425924912282], [53.081432132094506, 5.870312657129354], [53.08127265373181, 5.870324402696038], [53.081066272081046, 5.87035519029482], [53.0808951
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_856eaf9e68954b9ba27c0abefdafb86f = L.popup({maxWidth: '300'
});
var html_81ce95bea2d6449baee69cc57f9d6845 = $('<div id="html_81ce95bea2d6449baee69cc57f9d6845" style="width: 100.0%; height: 100.0%;">Heerenveen (2, 1%)</div>')[0];
popup_856eaf9e68954b9ba27c0abefdafb86f.setContent(html_81ce95bea2d6449baee69cc57f9d6845);
polygon_60c5d0af19634289a259bf1f60ecd682.bindPopup(popup_856eaf9e68954b9ba27c0abefdafb86f)
;
var polygon_5637be7d526245f596cc667e8c4cc27a = L.polygon(
[[[53.29467007108855, 5.73581343441129], [53.294622941823796, 5.735903516799399], [53.29464216168692, 5.735928146960399], [53.294657843738975, 5.735973715624759], [53.29467833641181, 5.7360644639402505], [53.294673698965674, 5.736145261352982], [53.2946413419833, 5.736303219271786], [53.29461058505068, 5.7364670390209005], [53.29459693184507, 5.73671258161576], [53.294587598425814, 5.7368365023489165], [53.294586486040956, 5.736851259794231], [53.294584945766516, 5.736871709091462], [53.294583279974766, 5.736893827887364], [53.29455636684815, 5.737251099349593], [53.29451175271746, 5.737975547680568], [53.29446975453135, 5.738787148950071], [53.2944214210726, 5.739826501645531], [53.294375118580845, 5.740691904064966], [53.29433548779892, 5.741608498117357], [53.29429299550967, 5.7426090518144335], [53.29425829692361, 5.743402857533427], [53.294210395996124, 5.744253242746667], [53.29418200772737, 5.7448251426459125], [53.29414822585497, 5.745396997917746], [53.29410989484453, 5.745896678128958], [53.294078272963574, 5.746435556127786], [53.29405253414856, 5.746929641685797], [53.2940358673638, 5.747273982150564], [53.29402184183196, 5.7475465093912765], [53.294024936871416, 5.747623004674741], [53.29402825958456, 5.747704391625001], [53.29403012411911, 5.7477508378921165], [53.29402270108174, 5.747918740889447], [53.294004796044455, 5.74831556058915], [53.29399293968741, 5.748553162370716], [53.293962856531124, 5.748875644407773], [53.29393937422782, 5.749362847288765], [53.29393458407746, 5.7497890191818275], [53.293932687563625, 5.750179073183655], [53.29394524861445, 5.750868437763484], [53.29395336922122, 5.751213135289207], [53.293947225770246, 5.751372350672035], [53.29393670957827, 5.751876908556262], [53.293928611256796, 5.752324347551778], [53.29392217462733, 5.752756654362041], [53.29393657368194, 5.753250925141817], [53.29395553453461, 5.75360396332734], [53.29396242106563, 5.753879665489254], [53.29396967309522, 5.75418236514928], [53.293979958569984, 5.754550777409503], [53.2939943603572, 5.75474811025315], [53.293995956727905, 5.7549310867401555], [53.293987368676916, 5.755153417452902], [53.29397390926391, 5.755499131883724], [53.29398874107949, 5.755819443796086], [53.29400928959606, 5.756355310002215], [53.29403444820912, 5.756852075335567], [53.29404780170891, 5.757388480407635], [53.29405669152696, 5.757972988954264], [53.294070755801464, 5.758452413409307], [53.29407912221457, 5.758913941715893], [53.294091626983345, 5.75940235111007], [53.29409627567264, 5.75965704883129], [53.294102456099054, 5.759995875315465], [53.2941133732203, 5.7605022681381834], [53.29412517071452, 5.760753720000888], [53.29418759091036, 5.761426726346741], [53.294238811170175, 5.761742709018887], [53.294324690528654, 5.762210313602651], [53.294434404977714, 5.762842045816712], [53.29449161023956, 5.763196776098054], [53.29449106820005, 5.7632839046071735], [53.29441218545812, 5.76353921708975], [53.294307534889036, 5.763873787813065], [53.294206326969054, 5.764199088939051], [53.294116435936, 5.76443990432277], [53.29389889986343, 5.76504012772369], [53.29381627706413, 5.765283552594293], [53.29371427762757, 5.765645102625359], [53.2936675247273, 5.765799533901518], [53.2935283212751, 5.7662274904023], [53.293480944620164, 5.766422916208645], [53.293417846381494, 5.766782238449316], [53.29340687332183, 5.766868013424954], [53.29340280451819, 5.766981308107443], [53.29340478237672, 5.767100204763587], [53.29339338947, 5.767196578184185], [53.293372832319704, 5.767306983303085], [53.29334539614279, 5.767399031179917], [53.29332235676003, 5.767467302738134], [53.29332019989755, 5.767473162862594], [53.29330290654165, 5.767520234801335], [53.29328786180302, 5.767561042822517], [53.29326310128061, 5.767622415769418], [53.29323477510521, 5.767703103496732], [53.29314839578088, 5.767987487381539], [53.29311705576306, 5.768109163646196], [53.29310060965478, 5.7681751989209715], [53.293073940022964, 5.768294396311035], [53.293065376864014, 5.768331227314122], [53.2930479662884, 5.768403896386138], [53.29303045974051,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ffeea2",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_49391b6a775241e280739d9f9d975c38 = L.popup({maxWidth: '300'
});
var html_e444ebf0f5bc47b5a204cf19e4dc5010 = $('<div id="html_e444ebf0f5bc47b5a204cf19e4dc5010" style="width: 100.0%; height: 100.0%;">Leeuwarden (45, 12%)</div>')[0];
popup_49391b6a775241e280739d9f9d975c38.setContent(html_e444ebf0f5bc47b5a204cf19e4dc5010);
polygon_5637be7d526245f596cc667e8c4cc27a.bindPopup(popup_49391b6a775241e280739d9f9d975c38)
;
var polygon_8b0e9a25d81b4eeeb2816fbda9a6ca7c = L.polygon(
[[[52.92339365270775, 6.246637363120104], [52.923438178540636, 6.246039873821533], [52.92349204334805, 6.245218950245877], [52.923499109178266, 6.245119802200247], [52.92352559278043, 6.244749569352325], [52.923533226641226, 6.244653912042559], [52.923601339024486, 6.243678274029418], [52.923608004973126, 6.243590880085666], [52.9236191670756, 6.243479306202213], [52.923622430301286, 6.243446626949409], [52.9236331722655, 6.243329676317513], [52.9236976784566, 6.24249714866299], [52.923763183409456, 6.241603417062132], [52.92380499442227, 6.241060035237014], [52.92387481612106, 6.240150517186916], [52.92393265392701, 6.239343872984964], [52.923998553526154, 6.23848594751974], [52.92405718453197, 6.237690035064976], [52.924137439247666, 6.2365332113809435], [52.92416510657122, 6.236079910872133], [52.92416731397021, 6.236043774845062], [52.924167507908216, 6.2360424961724865], [52.92417921230438, 6.235965372330708], [52.92417926635942, 6.235964635498799], [52.9241793216984, 6.235963872371296], [52.924200062631954, 6.235685786890971], [52.92420126534108, 6.235669601341726], [52.924346624274946, 6.23371999215692], [52.92435551320954, 6.233600711456737], [52.92437305092755, 6.233365491614247], [52.9243784635512, 6.2332928961499166], [52.92441913794229, 6.232747276223095], [52.92442021392291, 6.23273119243524], [52.92444701714578, 6.232331908312756], [52.924450322576284, 6.2322826037445545], [52.92446397528783, 6.232079174793214], [52.924493509874665, 6.231639049405093], [52.92455090343259, 6.2306441900887135], [52.92458121567918, 6.23022935863989], [52.92460595606181, 6.229888175367797], [52.92462610962797, 6.229621284894818], [52.92464745450975, 6.229315352515273], [52.924650583813076, 6.229261523275657], [52.92465440337996, 6.229188910638767], [52.92465512872017, 6.229179079737471], [52.92470645900492, 6.2282293624105005], [52.924708591462185, 6.228212406600578], [52.924789889523474, 6.227565995845106], [52.92485098779344, 6.226783337678955], [52.92485371464046, 6.226748281642792], [52.92490858111243, 6.225825882144906], [52.9249486821658, 6.225377624924184], [52.92498431347596, 6.224948820324664], [52.92503163288913, 6.22434215114813], [52.92509545910863, 6.223438966133852], [52.92514490055706, 6.222742412495018], [52.92515101671916, 6.222667195881659], [52.92518389274079, 6.222237798953602], [52.92554462798293, 6.217136307971307], [52.92579450474501, 6.213630170666528], [52.92594574189356, 6.213574505762779], [52.9261394087772, 6.213493649520836], [52.926268670663255, 6.213443575064706], [52.9264253857966, 6.21337932739512], [52.926428935931696, 6.213377952397929], [52.926588257699095, 6.213316296888089], [52.92671593749798, 6.213266235904952], [52.9267171250413, 6.213266549758793], [52.92671831479719, 6.213266860931595], [52.92676654907715, 6.213245675905537], [52.92701946431672, 6.213131215379608], [52.92719819002906, 6.213058921088531], [52.92737438084739, 6.2129671413507825], [52.92749517272789, 6.212913765729207], [52.927636093283105, 6.212851490862989], [52.927924643256446, 6.212736673847221], [52.92808590448244, 6.212672507297477], [52.92815191172498, 6.212645322657915], [52.92822641416118, 6.212615056482835], [52.92833036801372, 6.212571561679011], [52.92842618623831, 6.212527213760475], [52.92847993556371, 6.212503812325491], [52.92852378315215, 6.212481531417318], [52.928618428070706, 6.212439168726138], [52.928692326436774, 6.2124066148501305], [52.928759497642, 6.212374811304882], [52.92883971881619, 6.212338897647266], [52.928944261749585, 6.212284273398289], [52.92900935304022, 6.212251745719628], [52.92902044334019, 6.212246424011131], [52.929093365102176, 6.212205641740833], [52.92925311548963, 6.212125976491811], [52.92937322776896, 6.212068166493651], [52.92946274242413, 6.212030790967197], [52.929515511950065, 6.21201001673567], [52.92957261881331, 6.211984594389259], [52.9296619136001, 6.211941325090266], [52.929716533117535, 6.211912941745805], [52.92974565592678, 6.211897802639701], [52.929860217907716, 6.211839409846043], [52.929885503155944, 6.2118269194178435], [52.92990487642407
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffac0",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_1ed8a30c46f6439faef0f77f3b5a5275 = L.popup({maxWidth: '300'
});
var html_e31c6317096f47b8bfbe75cfcd562e52 = $('<div id="html_e31c6317096f47b8bfbe75cfcd562e52" style="width: 100.0%; height: 100.0%;">Ooststellingwerf (1, 3%)</div>')[0];
popup_1ed8a30c46f6439faef0f77f3b5a5275.setContent(html_e31c6317096f47b8bfbe75cfcd562e52);
polygon_8b0e9a25d81b4eeeb2816fbda9a6ca7c.bindPopup(popup_1ed8a30c46f6439faef0f77f3b5a5275)
;
var polygon_4ae355b9b791400c9192c3a52bd478b6 = L.polygon(
[[[53.075024750782205, 6.33088403100416], [53.07499671345996, 6.330755051368262], [53.074961418035635, 6.330592694184935], [53.07470848200836, 6.329429181981148], [53.07469778075883, 6.329392481031124], [53.07435644613559, 6.327788233011823], [53.07434299569208, 6.327725031305147], [53.074327680294594, 6.327702465299188], [53.0743043064912, 6.327600655924339], [53.07416434065755, 6.326954288763919], [53.07388908070573, 6.325697137012846], [53.073879546032416, 6.325653583153511], [53.073873118426164, 6.32561375310665], [53.07387129489849, 6.325605610807539], [53.07373703557545, 6.325003802234907], [53.07360463507531, 6.324397127771732], [53.07341350898111, 6.32349590849253], [53.07321474188596, 6.322600979684662], [53.072950350901344, 6.321403071483377], [53.072851759012025, 6.320967875585375], [53.072839214675255, 6.320912441588206], [53.07266889064115, 6.320128012264357], [53.07264536349252, 6.320040412118983], [53.072491732786105, 6.319315689367889], [53.07246559881844, 6.319196997875373], [53.07208989371531, 6.317490550737626], [53.072060494007175, 6.317357019880042], [53.07203088671055, 6.317237480455523], [53.07192281020471, 6.316741878443809], [53.071813264436244, 6.316239563871966], [53.07175186095162, 6.315958036460779], [53.07172073732537, 6.315813682717981], [53.07161203898506, 6.315282713221933], [53.07158795972445, 6.315170858854745], [53.071549140483754, 6.314993232613543], [53.07151643017462, 6.314843549765585], [53.07145028781968, 6.314567818173011], [53.0714199233794, 6.314441223834028], [53.07138960383502, 6.314310019809197], [53.071368645808, 6.314220882968744], [53.07135699591466, 6.314171440617826], [53.0713154200946, 6.3140443242853115], [53.071304545336936, 6.313995778314027], [53.07118619267397, 6.313468775372425], [53.07097677496012, 6.312519148199111], [53.070668317475665, 6.3111425001543795], [53.070625785466476, 6.310952522857692], [53.07059549071986, 6.31081647492298], [53.07055681166261, 6.310638471771897], [53.07047261812388, 6.310257344160436], [53.07030652994019, 6.309484489280142], [53.07004798213705, 6.308275155194859], [53.06989488582169, 6.307609598789013], [53.06989211221739, 6.3075975293287385], [53.06973233363981, 6.306871380601445], [53.06957333177434, 6.306147655111954], [53.06954178369395, 6.305992683201085], [53.069485939469736, 6.305729505040059], [53.06923523505859, 6.304679624001984], [53.06922427901373, 6.304639973478072], [53.06920664256659, 6.30457617636794], [53.06919831970276, 6.304546055855748], [53.06916491608359, 6.304425169961116], [53.06888627731863, 6.303188872344145], [53.06885798055557, 6.303023097948107], [53.068798371677076, 6.3027143732142905], [53.06872375731938, 6.302378268153754], [53.068590767095145, 6.301750356911145], [53.06851264988086, 6.301386564784298], [53.06840082286547, 6.300876866183299], [53.068291261664534, 6.300364368549857], [53.06822382393792, 6.300050249120956], [53.0681310808945, 6.299629849491105], [53.06803669412818, 6.299186784656834], [53.06797823819079, 6.298908232248924], [53.067943577435386, 6.298743031780792], [53.06786083561045, 6.298358773129177], [53.067772171790196, 6.297949477397966], [53.06769494084855, 6.297578705113916], [53.06763130438719, 6.297276655901535], [53.06757722159562, 6.2970227722088135], [53.067558604816476, 6.29693371626963], [53.06752272337477, 6.296762062740718], [53.06745261049954, 6.296439216884625], [53.06738603792838, 6.296122278606364], [53.067303599323694, 6.2957252961199845], [53.067207389058694, 6.295263604922786], [53.067131265983235, 6.294896163711612], [53.06705767842728, 6.294539085652645], [53.06703547885233, 6.294436335405129], [53.066988961844615, 6.294220974773012], [53.0669092772633, 6.293857043381497], [53.066786780181246, 6.293272311150536], [53.066675039317026, 6.292770458868134], [53.066566023930996, 6.292253746958136], [53.06656022655965, 6.29222775637435], [53.0664675664247, 6.2917820292035485], [53.066407101100516, 6.291509154588384], [53.06631592077197, 6.291075351731674], [53.06625187909596, 6.290761750921743], [53.06619884638115, 6.290511024194362], [53.06616505086
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffac0",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_a5dd5534b510464f87e8bbaddf37bf16 = L.popup({maxWidth: '300'
});
var html_e193a8232de342c0bb42ce835f9a03c4 = $('<div id="html_e193a8232de342c0bb42ce835f9a03c4" style="width: 100.0%; height: 100.0%;">Opsterland (5, 3%)</div>')[0];
popup_a5dd5534b510464f87e8bbaddf37bf16.setContent(html_e193a8232de342c0bb42ce835f9a03c4);
polygon_4ae355b9b791400c9192c3a52bd478b6.bindPopup(popup_a5dd5534b510464f87e8bbaddf37bf16)
;
var polygon_27cab35d4e5d40f9a60b969034a6fe13 = L.polygon(
[[[53.129004290697836, 6.185205456396789], [53.12878402801594, 6.184637382895723], [53.12866293869319, 6.184552356459142], [53.12863606870793, 6.1845350088165025], [53.12860560950466, 6.184518238956394], [53.12857366425987, 6.184503233623007], [53.12844884344676, 6.184436112392388], [53.12832017489787, 6.184374702051629], [53.128344107083166, 6.184260925641066], [53.128355836304586, 6.184205175154044], [53.12836363044045, 6.184162828850948], [53.128378421498574, 6.184072399539608], [53.128402149669, 6.18393523680231], [53.12842796256485, 6.183748063112858], [53.128445785662684, 6.183632575312069], [53.128451584226525, 6.183582228754377], [53.128450058900256, 6.183549391484616], [53.12844414842142, 6.183531504989477], [53.12829613650106, 6.1831461097744365], [53.1280839742825, 6.182591150810729], [53.12783363136727, 6.18194475237793], [53.12746737123084, 6.18100287901184], [53.127231657575614, 6.180395894190656], [53.12722714266637, 6.180384277599109], [53.12704789095999, 6.179908396571067], [53.12659416100301, 6.178714992277736], [53.1263425693519, 6.178069407443114], [53.12597940787836, 6.177120470984835], [53.12589576165826, 6.176905524243147], [53.1256777016774, 6.1763452019049545], [53.12542936033279, 6.175703677455262], [53.1253709521381, 6.175540854619665], [53.125363412038865, 6.175510884020647], [53.125339312423016, 6.175415059665019], [53.125366876258546, 6.175421432011016], [53.125304143409295, 6.175252122078895], [53.125157695974885, 6.174861239836279], [53.125019276018165, 6.1745121416340325], [53.12488779600366, 6.174167965904283], [53.12479857363469, 6.1745355900756085], [53.12479743913732, 6.174541470618477], [53.12470776702961, 6.1744865547814785], [53.12470977446335, 6.174378045702155], [53.124712020294915, 6.174323395199683], [53.12470855748041, 6.1742801150680435], [53.12470376570965, 6.174233911307572], [53.1246978115513, 6.174170448065007], [53.12469147612318, 6.174110248525987], [53.12468466337076, 6.174051654216709], [53.12467637343959, 6.173990822013972], [53.12466545436866, 6.173900632502742], [53.12466319098861, 6.173859345518153], [53.1246646814945, 6.17381578061165], [53.12466768997637, 6.173777756864613], [53.124671662013796, 6.1737407508338045], [53.12467540409892, 6.173701843180603], [53.12468429694158, 6.173635272127639], [53.124687151171905, 6.173613886712202], [53.1244712872951, 6.173528674515187], [53.12445699168946, 6.173523021964184], [53.1234835748588, 6.173189760904183], [53.12348568477298, 6.173165360101747], [53.12351476626798, 6.172712909268765], [53.123559539796624, 6.172095268447951], [53.123563475922545, 6.1720225594523805], [53.12358395306564, 6.171670368394303], [53.12358780828908, 6.17158107639038], [53.12349506613872, 6.17154751920822], [53.123498419564534, 6.171493727149189], [53.12350250012874, 6.171324742547037], [53.12350295187356, 6.171273572199391], [53.12350132656061, 6.17118418030367], [53.12349832674815, 6.171075419466997], [53.12348703789505, 6.170946685102607], [53.12346231668911, 6.17078182626627], [53.123441534886986, 6.170676941051116], [53.123432137990335, 6.1706380958573135], [53.12341891654253, 6.170576609851723], [53.12340238151293, 6.170508027903092], [53.123368732434855, 6.170398757400292], [53.12330512769661, 6.170225653041943], [53.12322996799953, 6.17003299564402], [53.12316946463769, 6.1698967853887705], [53.12312639872209, 6.1697860175215355], [53.12311419094402, 6.169744014785114], [53.123090760530154, 6.169663432590375], [53.12309105274841, 6.169631036635052], [53.123057967558424, 6.169556405506995], [53.12300122459777, 6.169457984679074], [53.12296663382123, 6.169411649517349], [53.122915813229746, 6.169366814114045], [53.12286272740363, 6.169345420212756], [53.12285311055957, 6.169341542241637], [53.12286629665298, 6.1691703646143194], [53.12284527874964, 6.169163367970837], [53.12262995346609, 6.1691066625935616], [53.12255786587129, 6.169084658383458], [53.12259363836272, 6.1687598909271495], [53.122604759130276, 6.1686462338902315], [53.12262054957527, 6.1684847977101045], [53.12239389134774, 6.167919610924144], [53.12218646
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc9",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_1d71e1b8b10449f99e9d8abae20d3ac2 = L.popup({maxWidth: '300'
});
var html_c5ef9ed8355644f6b193353105b79310 = $('<div id="html_c5ef9ed8355644f6b193353105b79310" style="width: 100.0%; height: 100.0%;">Smallingerland (2, 1%)</div>')[0];
popup_1d71e1b8b10449f99e9d8abae20d3ac2.setContent(html_c5ef9ed8355644f6b193353105b79310);
polygon_27cab35d4e5d40f9a60b969034a6fe13.bindPopup(popup_1d71e1b8b10449f99e9d8abae20d3ac2)
;
var polygon_eadd4b54164c4d618f3eb59b73cccb0a = L.polygon(
[[[52.933184922154105, 6.209520416466611], [52.93315226897604, 6.2095380208533415], [52.93315348516466, 6.209554567393132], [52.9330697866076, 6.209632575426412], [52.93302010359534, 6.20967364065344], [52.93298818336949, 6.209704599524205], [52.932961583546586, 6.209730556964362], [52.93293988640776, 6.209746938948276], [52.93291422857116, 6.2097637082542665], [52.93287815544492, 6.20979635790346], [52.93286419469258, 6.209815251476848], [52.93283144494684, 6.209838028968218], [52.932812907131826, 6.2098533847532655], [52.93278906228898, 6.209876017938963], [52.932761453761316, 6.209898386723516], [52.93273545808669, 6.209925337532026], [52.93271259062147, 6.209945668793448], [52.93265203042218, 6.209991137769451], [52.93258717568516, 6.210046833397468], [52.932553855140306, 6.210076500727201], [52.932520309846204, 6.210099619603584], [52.93249784238231, 6.210119289192653], [52.93248586598731, 6.210139469054252], [52.93246900159921, 6.210170190332783], [52.93246155286567, 6.2101857115938675], [52.93245409936488, 6.210197944795396], [52.932444648127145, 6.2102092334145995], [52.93242750523568, 6.21022457166571], [52.93238763087073, 6.210249414576372], [52.93233139593451, 6.210289253647582], [52.93231109904768, 6.2103092173009715], [52.932296747503045, 6.2103287721172435], [52.93227984754834, 6.210352948388503], [52.93226332269971, 6.210374826890241], [52.932245209823265, 6.210393775062334], [52.932224098726024, 6.210408517187523], [52.93215226531471, 6.210457103672532], [52.93213037314741, 6.210474151245645], [52.93211443512682, 6.210494048155432], [52.9321004674463, 6.210511304339902], [52.93208868645199, 6.210530818576091], [52.93206641584463, 6.21055080374015], [52.932033508548905, 6.210581771706833], [52.93200684415301, 6.210597256649814], [52.93198332549194, 6.210606450250693], [52.93197499150245, 6.210613684799037], [52.931969132872595, 6.210618779285437], [52.93194922708107, 6.210635789784487], [52.931912146968486, 6.210665846373897], [52.93189545265903, 6.210682144069568], [52.93188692954665, 6.210690475227171], [52.931868236643446, 6.210712713687645], [52.93184502253985, 6.210742884097154], [52.93182315194319, 6.210764512386765], [52.93179023795767, 6.210792862816622], [52.931755121899776, 6.210819594824971], [52.93172725109919, 6.2108301784289015], [52.93170050370695, 6.210827948418665], [52.931680710664295, 6.210829879326089], [52.931663987261956, 6.210836315332083], [52.93166035778716, 6.21083870135139], [52.931649610815555, 6.210846663630464], [52.93163688295871, 6.210856089918426], [52.93161123597765, 6.21087547534989], [52.931538765380985, 6.210953585855734], [52.93151653605003, 6.210980457574799], [52.931495645014735, 6.210999783867403], [52.93147136839606, 6.2110158781059726], [52.93142275833033, 6.211036585084551], [52.93137139515903, 6.21106192400436], [52.931271285788235, 6.21111879387133], [52.93122191996471, 6.211146401602205], [52.93117199854606, 6.211181553968921], [52.93112428955072, 6.211221908617002], [52.931117963665365, 6.21122547815316], [52.9310622805079, 6.21125692223393], [52.93102413165768, 6.211271251665363], [52.93096607655103, 6.2113039152782195], [52.930896349055146, 6.211337711625443], [52.93081988218059, 6.211372599573826], [52.93077065824172, 6.211390050888131], [52.930743171586585, 6.211397339702469], [52.93070545133728, 6.2114185485988544], [52.93069306414646, 6.211422954804921], [52.930666118794065, 6.211432558567178], [52.93061912113246, 6.211459481419231], [52.9306057644248, 6.211465043889572], [52.93056853274406, 6.211480551325586], [52.93053653391154, 6.211497079013899], [52.93051738277779, 6.211508837958579], [52.9304763523868, 6.2115386102742045], [52.930422040918145, 6.211567595872744], [52.93036793832974, 6.211599216865744], [52.930342404299516, 6.211610008122568], [52.93028929214932, 6.211633468169346], [52.93016285126758, 6.211695593330663], [52.930040795665434, 6.2117564476434], [52.929935331196084, 6.21181175512422], [52.929904876424075, 6.211820727508698], [52.929885503155944, 6.2118269194178435], [52.929860217907716, 6.211839409846043], [52.929745
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_b584fc246fc94bf6a31725a50aa7d937 = L.popup({maxWidth: '300'
});
var html_48b48acde8c64babbf4a8ae94fddcae4 = $('<div id="html_48b48acde8c64babbf4a8ae94fddcae4" style="width: 100.0%; height: 100.0%;">Weststellingwerf (0, 0%)</div>')[0];
popup_b584fc246fc94bf6a31725a50aa7d937.setContent(html_48b48acde8c64babbf4a8ae94fddcae4);
polygon_eadd4b54164c4d618f3eb59b73cccb0a.bindPopup(popup_b584fc246fc94bf6a31725a50aa7d937)
;
var polygon_1fc9737108d5498ea2bb263d314faeff = L.polygon(
[[[53.281483896086264, 5.876350432489802], [53.281409691983185, 5.876542756320584], [53.2814350811341, 5.876645160012425], [53.28138683998888, 5.87669146477699], [53.281326062900234, 5.876730475846292], [53.28124472649578, 5.876774395308161], [53.28109442961543, 5.876828716887195], [53.280982730944025, 5.876870613057629], [53.28090824679273, 5.876911116871735], [53.28086002929209, 5.876944467333256], [53.28080720729678, 5.877005216556281], [53.28057405932319, 5.8773183090909615], [53.28043942234375, 5.87751162043524], [53.28031730234726, 5.877288765802078], [53.28017906566436, 5.877036480639173], [53.28012373103969, 5.876935509475357], [53.28008598685053, 5.87699630898564], [53.280047114356414, 5.877062658176017], [53.279938284625715, 5.877242692760687], [53.27978250012606, 5.877500916116479], [53.279565305607264, 5.877856592152794], [53.27891354504382, 5.878921469399144], [53.27881725737002, 5.879079255161165], [53.278741116354944, 5.879210344495592], [53.27871186414736, 5.879253037124705], [53.27852572597206, 5.87955209648595], [53.27835431023674, 5.879821473576576], [53.27830070693287, 5.879912415142213], [53.27828304078933, 5.879938763443599], [53.27826321868309, 5.879956841910336], [53.27824619641971, 5.879959390706156], [53.278231448587825, 5.879977557300113], [53.278215924974994, 5.87998376678393], [53.278200427185475, 5.880015626187003], [53.27818386908775, 5.880039243836345], [53.27813473088111, 5.8801128304485815], [53.27798607884125, 5.88034384518863], [53.27780147326138, 5.880643092632978], [53.27772413303289, 5.880770369739339], [53.27765111787636, 5.880885972891057], [53.27757433707647, 5.881010511442012], [53.27752572475264, 5.881091432901817], [53.27749358432857, 5.881141601211793], [53.27742626130327, 5.881234195761178], [53.27720793927011, 5.881592564862491], [53.27704546949802, 5.881846302344165], [53.27698634620302, 5.881946319737816], [53.27683271498583, 5.882185495213982], [53.27680099007569, 5.88221577311817], [53.27678250237223, 5.882244658367476], [53.276773319585644, 5.882259919220252], [53.27674567249871, 5.882320600169539], [53.276354011845214, 5.882956578012747], [53.275912601672104, 5.883686609492787], [53.27571816989601, 5.884008965277107], [53.27560612306347, 5.884182046874487], [53.275479731536166, 5.884369083710779], [53.27534363089975, 5.884574505128765], [53.27509241115845, 5.884967718149684], [53.274961280027405, 5.8851705993354155], [53.27491686306212, 5.8852446491040356], [53.27460448906929, 5.8857495305098455], [53.27436037180612, 5.886164562796531], [53.27407843665777, 5.88663493116314], [53.27388783364666, 5.886952928337332], [53.27372653940298, 5.8871590312073865], [53.273315946864486, 5.887827379157787], [53.273146667253236, 5.8880647134015245], [53.27298325844497, 5.888298950233496], [53.27266566195963, 5.888805479307087], [53.27256541089434, 5.888964508165652], [53.27253651699395, 5.889023890911876], [53.27251344331867, 5.889075201473695], [53.27248866116058, 5.889135456219575], [53.27247277343504, 5.889159375150139], [53.27241899934753, 5.8892378794206115], [53.27236551744713, 5.889317450912334], [53.27230427769786, 5.889399825713853], [53.2722025725447, 5.889532617972166], [53.27215698414826, 5.88959643388266], [53.27210041980568, 5.889675612667828], [53.272060669952, 5.889730910095108], [53.27199709472623, 5.88982808035586], [53.27193248482185, 5.889925703951445], [53.27178057851406, 5.890169474430799], [53.2715996055775, 5.8904622488499845], [53.27156490458143, 5.89052204184969], [53.27144699987513, 5.890735477205042], [53.27113744541345, 5.891275864926711], [53.27104359746242, 5.891441372284035], [53.27097952465667, 5.891562658628309], [53.270977993880805, 5.891565554566619], [53.27095394957726, 5.89153327267407], [53.27084262949678, 5.891699638491085], [53.27079270545102, 5.891776683135599], [53.27074738742475, 5.891843993430475], [53.270724340808584, 5.8918757850074055], [53.27068989533609, 5.891915192964102], [53.27068178878425, 5.891928408361216], [53.27067094395516, 5.891947482468142], [53.270658642599564, 5.891966659374631], [53.27065278639668, 5.8
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff4b3",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_9e49f370371c44bf83d6319a8fd4e364 = L.popup({maxWidth: '300'
});
var html_a0a59b03c0424220b9d6119bec5dee49 = $('<div id="html_a0a59b03c0424220b9d6119bec5dee49" style="width: 100.0%; height: 100.0%;">Tytsjerksteradiel (16, 7%)</div>')[0];
popup_9e49f370371c44bf83d6319a8fd4e364.setContent(html_a0a59b03c0424220b9d6119bec5dee49);
polygon_1fc9737108d5498ea2bb263d314faeff.bindPopup(popup_9e49f370371c44bf83d6319a8fd4e364)
;
var polygon_0707c81bc8834a7eb5ed74c6c17915ba = L.polygon(
[[[53.325069178417294, 6.034320682057868], [53.325002595004186, 6.034379293658696], [53.324950471420514, 6.034427421397184], [53.32484772280514, 6.034515880863414], [53.32478324402785, 6.034582358140175], [53.32472969605152, 6.034628048465112], [53.32466740596947, 6.034690355631371], [53.32461637008292, 6.034736698095982], [53.32458087013277, 6.034773159393012], [53.32455082015082, 6.034801943046732], [53.32452394163151, 6.03483919334969], [53.32450107647276, 6.034868715132852], [53.3244796326686, 6.03489948936329], [53.324461439574996, 6.0349291115486015], [53.32444064806984, 6.034968899857776], [53.324417659335424, 6.035014628359533], [53.32438918522258, 6.035072865724805], [53.324349285468884, 6.035168676023886], [53.3243357286332, 6.035203199648682], [53.32432127020443, 6.035261722699741], [53.32430619089177, 6.035307029451502], [53.32429642012964, 6.035362651435175], [53.32429351834815, 6.035414219916895], [53.32428844329056, 6.035515580702107], [53.32428302791402, 6.035613319967717], [53.32427689582041, 6.035712249300344], [53.324268920519664, 6.035816537863839], [53.32426392429957, 6.0359064799445905], [53.32426779476261, 6.036013438342622], [53.324276079585154, 6.036106656350729], [53.3242990195211, 6.03620982033502], [53.32432316358555, 6.036297979209965], [53.32433475568019, 6.0363290671119305], [53.32435204679155, 6.036375434641531], [53.32437112032663, 6.036420880085861], [53.3243930499737, 6.036468170389213], [53.32443844845842, 6.036548981132119], [53.32448135912937, 6.036626152812061], [53.32452138001539, 6.036704451741567], [53.32459506512813, 6.036848302282693], [53.324675114780405, 6.0370049012365135], [53.32475482030072, 6.037160294691983], [53.324798039835926, 6.037243460188857], [53.32484444254092, 6.0373345085509715], [53.32487881064609, 6.037401287055649], [53.32492251632137, 6.0374676524035324], [53.32496221449797, 6.037542345360192], [53.32500508976016, 6.037624321120649], [53.32504770743966, 6.037692471356875], [53.32507908615456, 6.03777358316042], [53.32510927900881, 6.037867884344641], [53.3251347769608, 6.037966287222233], [53.32515347866351, 6.0380603399640975], [53.32516712716467, 6.038156702677058], [53.32517505707774, 6.038248717710678], [53.325176302676944, 6.038416856618604], [53.32517124423927, 6.038615787542085], [53.325162553252014, 6.0388499174602694], [53.32515565221927, 6.039078625880013], [53.32514480200658, 6.039316340314168], [53.32513502167834, 6.039552269020803], [53.325120583677226, 6.039767175870632], [53.325103258063365, 6.040009098966318], [53.325081983838615, 6.040238399736828], [53.32506573346023, 6.040483924953478], [53.32504588002805, 6.040742648293961], [53.32502424308774, 6.04097556026364], [53.32498419928019, 6.041443787643528], [53.324973747648194, 6.041553038007304], [53.32495717719578, 6.041667102477484], [53.32493594427139, 6.041759543997913], [53.32490931554154, 6.041842974123556], [53.32485823796098, 6.0419954298912355], [53.32480140160004, 6.04214608664852], [53.3247395373901, 6.042307546957263], [53.324675152268405, 6.042466612487004], [53.32461688477443, 6.042607655601156], [53.32454746154582, 6.042772722208893], [53.324478407567284, 6.042929373975078], [53.32439640101106, 6.043126244037521], [53.3243244655102, 6.043300305260728], [53.32426727527853, 6.043443148724325], [53.324210071720664, 6.04361300539104], [53.32408596310672, 6.043950334470512], [53.32401797749605, 6.044136398816475], [53.3239859336702, 6.044297858385118], [53.323958562258014, 6.04446413109906], [53.32390743135385, 6.044752248496981], [53.323887956893635, 6.044938331382263], [53.323873885056294, 6.045101009598383], [53.3238590870733, 6.045284687681552], [53.32384353777789, 6.045539804387653], [53.32383448985872, 6.045710288178485], [53.32382328420024, 6.045889173377435], [53.32382034536781, 6.04608605774965], [53.323826746998165, 6.04625415150302], [53.32384430465369, 6.046411429567082], [53.32387692543644, 6.046633561655503], [53.323900950752, 6.046787847589045], [53.32393216373208, 6.046930718699537], [53.32401792282294, 6.047292141411166], [53.32405345059775, 6.0474
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff2ac",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_c12fc76925ef48d1bed15b442be9d2e0 = L.popup({maxWidth: '300'
});
var html_a9ddf9383a474751b109a61ef852cec9 = $('<div id="html_a9ddf9383a474751b109a61ef852cec9" style="width: 100.0%; height: 100.0%;">Dantumadiel (18, 9%)</div>')[0];
popup_c12fc76925ef48d1bed15b442be9d2e0.setContent(html_a9ddf9383a474751b109a61ef852cec9);
polygon_0707c81bc8834a7eb5ed74c6c17915ba.bindPopup(popup_c12fc76925ef48d1bed15b442be9d2e0)
;
var polygon_4962df55c2d2480aac79473628cb744b = L.polygon(
[[[[53.375211679718696, 5.850111068652949], [53.37531545331031, 5.849958773410351], [53.37633636166836, 5.8484913469106905], [53.37663829352857, 5.8480611646620915], [53.37668608800056, 5.8479930690937065], [53.37771226524705, 5.8465228250395285], [53.37805932611621, 5.84603087387064], [53.37846951987256, 5.8454392215604445], [53.38301091877081, 5.858531098277638], [53.38060306425852, 5.861465570816728], [53.380575018702025, 5.861503225366409], [53.380550628749525, 5.861543344545966], [53.38053010946367, 5.861585574597577], [53.380513641776815, 5.861629543150439], [53.38050137089565, 5.861674862504213], [53.380493405020786, 5.861721133047638], [53.38048981439272, 5.861767946782173], [53.380490630672426, 5.861814890919598], [53.38049584666222, 5.86186155152184], [53.38100913632899, 5.865077097471749], [53.38101856654582, 5.865122520591759], [53.38103216614431, 5.865166874168188], [53.38104981804884, 5.865209776371948], [53.382106853292385, 5.867474172402033], [53.38353618664399, 5.871348271111364], [53.38450495546026, 5.874317598052985], [53.38506006857838, 5.8770657268638224], [53.38507126159093, 5.877110418327582], [53.38592478305356, 5.879955136270764], [53.38594394929453, 5.880008009689866], [53.385968932086726, 5.880058396229085], [53.38599941535354, 5.880105658409364], [53.387027238468946, 5.881517985186846], [53.387424893222786, 5.883739143790016], [53.38716699273474, 5.886151856984064], [53.38716418009735, 5.886200572541394], [53.387166129506134, 5.886249330271658], [53.38717282239401, 5.88629766578352], [53.3871841950148, 5.88634511870705], [53.387200139050364, 5.886391237078498], [53.38722050264228, 5.886435581645014], [53.38724509183821, 5.886477730048287], [53.3872736724392, 5.886517280847293], [53.38730546457293, 5.886553282467286], [53.387305972230294, 5.886553857341799], [53.38734168357324, 5.88658711116023], [53.387380466336566, 5.886616725577732], [53.38742195113517, 5.886642418532797], [53.3874657428485, 5.886663945313753], [53.38751142438389, 5.8866811008895095], [53.38755856064911, 5.886693721862372], [53.387606702696424, 5.886701688024315], [53.38765539199853, 5.886704923501903], [53.387704164815844, 5.88670339747894], [53.38775255661334, 5.88669712448998], [53.38780010648499, 5.8866861642818895], [53.387846361543666, 5.886670621244798], [53.38789088123464, 5.8866506434178305], [53.38793324153165, 5.886626421079117], [53.387973038975474, 5.886598184933495], [53.38800989451674, 5.8865662039151685], [53.389015555922, 5.885603612616981], [53.39096138647854, 5.8837411173957435], [53.390977120293556, 5.883725371542526], [53.391421032896105, 5.8832608858908575], [53.39467718449563, 5.879853828535524], [53.39469589850425, 5.881062133895147], [53.39237674458305, 5.883731924277797], [53.392344071347374, 5.883773845032963], [53.392316032560444, 5.883818997180987], [53.392292945048226, 5.883866870522455], [53.392272936758516, 5.883914702871891], [53.39112886777234, 5.886649744613388], [53.391117333275574, 5.886680042872519], [53.389499970797296, 5.891381491741571], [53.38948846460321, 5.891419874439656], [53.38948006889565, 5.89145905525268], [53.388883476712536, 5.894913662445099], [53.388880546520504, 5.894932841992471], [53.388344701062714, 5.898962454264254], [53.38826987796031, 5.8995251315945945], [53.38762321832691, 5.9023635284632014], [53.387613600495584, 5.90242106213112], [53.38761074879807, 5.902479324412614], [53.38763453058474, 5.904993624258924], [53.38739877109083, 5.9088631794607895], [53.38684704130088, 5.913969236022098], [53.38684557943233, 5.913985139192724], [53.386593429897715, 5.917309918373544], [53.38659326256682, 5.917383265487401], [53.386784685141606, 5.920069819267495], [53.3867903975056, 5.9201175184709784], [53.387637117517926, 5.925132858738314], [53.388354959428355, 5.930443997569832], [53.388360277705345, 5.930691179728633], [53.38837536733121, 5.931392513319355], [53.38838155914306, 5.931680295513498], [53.38845351662997, 5.935024725860822], [53.38845806584665, 5.935236163738548], [53.38846170249454, 5.935286549715085], [53.388470404782666, 5.935336311568154],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fee795",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_7ba47bd06d484cc9beab02d1de7b0a32 = L.popup({maxWidth: '300'
});
var html_405a962e447c4ce78329b4d7047cae17 = $('<div id="html_405a962e447c4ce78329b4d7047cae17" style="width: 100.0%; height: 100.0%;">Dongeradeel (36, 16%)</div>')[0];
popup_7ba47bd06d484cc9beab02d1de7b0a32.setContent(html_405a962e447c4ce78329b4d7047cae17);
polygon_4962df55c2d2480aac79473628cb744b.bindPopup(popup_7ba47bd06d484cc9beab02d1de7b0a32)
;
var polygon_e453d3e60e6b437cb8abd090e5ac2de2 = L.polygon(
[[[53.465894891007025, 5.673199508015758], [53.46657886883981, 5.674744064628537], [53.46632464455889, 5.677547383176248], [53.46557705119703, 5.67845748293569], [53.46554963088327, 5.678494168471414], [53.46552568252719, 5.678533209198605], [53.46550540707488, 5.678574277533995], [53.465488974653766, 5.678617028881045], [53.46547652314515, 5.678661104521385], [53.46520045859463, 5.679842744372556], [53.46385680811263, 5.685593975208119], [53.462631444314, 5.688979625802052], [53.46261472459884, 5.689035972617415], [53.462604732529606, 5.689093892139416], [53.46201129152766, 5.694369069087091], [53.462008192444564, 5.6944190416091764], [53.46187153141161, 5.705954043385134], [53.4608104611567, 5.714824147983657], [53.46080725054871, 5.714865404180392], [53.46080746245162, 5.714906784572727], [53.46101898482034, 5.719451046351848], [53.46070261629353, 5.724049742862753], [53.46070143841069, 5.724085122758707], [53.46072225550517, 5.733873310340916], [53.459936253346875, 5.755652436481733], [53.459935998245896, 5.755678847718393], [53.46024386302679, 5.774049397462565], [53.460288147458414, 5.776691886647778], [53.46028908576624, 5.776715249483879], [53.46080734945037, 5.78486273946793], [53.461434225933324, 5.7947177033069535], [53.46241767335356, 5.810178227074355], [53.4627474342981, 5.817898514556229], [53.46254432272487, 5.821165617628655], [53.46254460413039, 5.821231902560346], [53.46314227426406, 5.829685874376156], [53.463326991242525, 5.834523291238136], [53.46332763058115, 5.8345358742361215], [53.46390234422695, 5.843593533109394], [53.46390243907107, 5.8435949940341825], [53.464247314579815, 5.848789612862489], [53.46433875724307, 5.853021876138797], [53.46433942299164, 5.853039036324931], [53.464772853401755, 5.860777612271159], [53.465212086422035, 5.869077874540455], [53.46587884239857, 5.8818162408945955], [53.46686831760723, 5.906055603221368], [53.467333954785886, 5.921552965223693], [53.467333987625544, 5.921554021041036], [53.46761575515895, 5.930315197907377], [53.467720036102115, 5.938689382041834], [53.46750269851556, 5.948115215352958], [53.46695726735625, 5.956319712210762], [53.466340212035725, 5.960338713459336], [53.46633592248631, 5.960375871796824], [53.46604457460114, 5.964126834855357], [53.46522746707026, 5.9670937787081995], [53.46423671147724, 5.968886450870387], [53.463564773869905, 5.969442511354769], [53.46340293929303, 5.968322475879614], [53.46339340417697, 5.9682737337197445], [53.46337908041579, 5.96822617800029], [53.463360109340144, 5.9681802779471775], [53.463336678135086, 5.968136486450098], [53.46330901799318, 5.9680952355939], [53.463277401833366, 5.9680569323952675], [53.462954877518555, 5.967703521515287], [53.46291967163951, 5.967668592714812], [53.462881178744816, 5.967637323367526], [53.46283977752372, 5.9676100210981415], [53.462795875277294, 5.967586954503658], [53.462749903911465, 5.967568350510928], [53.46270231568793, 5.967554392144171], [53.46265357877488, 5.967545216724406], [53.462604172641186, 5.967540914518496], [53.46255458333946, 5.967541527851112], [53.46250529872431, 5.96754705068835], [53.46245680365285, 5.967557428697089], [53.462409575214735, 5.967572559779515], [53.46236407803863, 5.9675922950775515], [53.46232075972121, 5.967616440437308], [53.46228004642375, 5.967644758319149], [53.46224233867961, 5.96767697013458], [53.462208007453796, 5.96771275898698], [53.46217739049349, 5.967751772789197], [53.46216862541859, 5.967764160761679], [53.46182601488109, 5.967393960201721], [53.46178459990108, 5.967354077192466], [53.46173888005988, 5.96731921243781], [53.46097248636352, 5.966801649044128], [53.46093576182559, 5.966779089652563], [53.46089723091134, 5.966759776794638], [53.460857179923636, 5.96674385397399], [53.459175695268115, 5.9661579450921725], [53.45920927782779, 5.966013436323674], [53.460486807894455, 5.9661449274428655], [53.46155789266127, 5.966761183070833], [53.46160143242804, 5.966783473628763], [53.46164694188089, 5.966801403212259], [53.46169398547975, 5.966814800229452], [53.46174211300227, 5.966823536466586], [53.4617
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fecd69",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_0620dc875dbe473baea089b74dc82f85 = L.popup({maxWidth: '300'
});
var html_5154dad8d73a408eaccfbf4ae472e29f = $('<div id="html_5154dad8d73a408eaccfbf4ae472e29f" style="width: 100.0%; height: 100.0%;">Ameland (2, 29%)</div>')[0];
popup_0620dc875dbe473baea089b74dc82f85.setContent(html_5154dad8d73a408eaccfbf4ae472e29f);
polygon_e453d3e60e6b437cb8abd090e5ac2de2.bindPopup(popup_0620dc875dbe473baea089b74dc82f85)
;
var polygon_f9be9fcd86d64af690b4ab33d247d55f = L.polygon(
[[[53.20983813312905, 5.437989346050762], [53.209644457064186, 5.438459886729576], [53.209633709704086, 5.438485994983495], [53.20947544065938, 5.438877071721935], [53.20947064606092, 5.438888905491809], [53.209469278995904, 5.4388922867023215], [53.2094275949994, 5.438995377449227], [53.209199794016854, 5.439551291747308], [53.20906491054456, 5.439880259799018], [53.20877181790613, 5.440593974728685], [53.20853273873469, 5.441175047562663], [53.208362180960236, 5.441597236384608], [53.20827581277111, 5.44181154557753], [53.20815655026248, 5.442139142792064], [53.20787961076493, 5.442887285759172], [53.20760017046596, 5.44361138068842], [53.20741792819598, 5.444155139567909], [53.20733837927079, 5.444399965243595], [53.20724799486629, 5.444658665295334], [53.20717997247241, 5.44484889031642], [53.20716041226444, 5.4449017417841], [53.20715702070255, 5.444910912381838], [53.20714243579392, 5.444950300076739], [53.207088738622204, 5.445134871542363], [53.20706026041961, 5.445233598227448], [53.20699111346357, 5.445443905833286], [53.206925415986284, 5.4456538292087675], [53.206887011664406, 5.4457830129388975], [53.20686432906753, 5.445862170575253], [53.20683878926308, 5.445923049922264], [53.20676652225674, 5.44607963629116], [53.20668861716353, 5.446243922400654], [53.20664312816159, 5.4463429383584865], [53.20650977516406, 5.446665507350418], [53.20647776122866, 5.446752807414637], [53.206324450318085, 5.447200839617387], [53.20617418443799, 5.447629026790151], [53.20603206895108, 5.448036764404534], [53.205879836791226, 5.448474357182479], [53.205706414215314, 5.448965076492913], [53.205508732954215, 5.449516699218674], [53.205364738511804, 5.449930991211409], [53.20517120145433, 5.4504706386307324], [53.20500971087911, 5.450880617973165], [53.20489723733185, 5.451169055373813], [53.20474412263103, 5.4515559200242985], [53.20463644172421, 5.451851752644251], [53.204447401443986, 5.452368117554514], [53.20427430120093, 5.452832899631024], [53.20414685657501, 5.453179205639054], [53.204127661311354, 5.453231900393913], [53.20409763113173, 5.453314359966563], [53.20409708186081, 5.453315870850923], [53.204072559157304, 5.453383207803902], [53.20403487893998, 5.453487086272432], [53.20397754438702, 5.453645200108129], [53.20393842425309, 5.453753101369246], [53.20391516942388, 5.453817237314482], [53.20390622411595, 5.453842425828953], [53.20382350731755, 5.454075431239434], [53.203746609200905, 5.4542835723224625], [53.20362671933177, 5.454610635889836], [53.203453872995865, 5.455087118798393], [53.203320327234756, 5.4554542634019745], [53.203134288945385, 5.455958059638734], [53.2031043783037, 5.456032509591697], [53.203081746217435, 5.456090239252748], [53.203031023475816, 5.456213128453047], [53.202994545393814, 5.45627004201215], [53.202954456394025, 5.456324077944852], [53.2029041405676, 5.456380191821049], [53.202837476643126, 5.456457633788714], [53.20278579256338, 5.456502102939937], [53.202689265512156, 5.456571235713113], [53.20263929539446, 5.456604108995106], [53.20242382550475, 5.4567205052419085], [53.20211469777515, 5.4568850856936235], [53.201712483632136, 5.457102233395263], [53.20112233502518, 5.457427969727227], [53.20083922815991, 5.457578082098523], [53.20079095071449, 5.457604505427468], [53.20068920853286, 5.457647362268686], [53.20058647851668, 5.4576894245026475], [53.20051495616888, 5.457714776574229], [53.2003820022692, 5.457766202070195], [53.20025123403413, 5.4578136194000315], [53.2002246120333, 5.457824379838925], [53.20017946684657, 5.457857900696788], [53.200147837195935, 5.45788886981026], [53.20012379290945, 5.457917157849942], [53.200070984737344, 5.458007590173755], [53.20002115404246, 5.458123809942158], [53.20009778798237, 5.458221413536262], [53.20011537765825, 5.458334691843252], [53.2001432039622, 5.4584283538511755], [53.20017030171865, 5.458538834968503], [53.20017771244952, 5.4586037322896335], [53.200179131087765, 5.458680292284871], [53.200195321583614, 5.459028342747534], [53.20020917270758, 5.459215823980288], [53.200223818813306, 5.459380500368], [53.2002
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fee793",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_4e2693ea086e44ec80b663608a61ce1b = L.popup({maxWidth: '300'
});
var html_4a914d9ab0a8495587027dec4261e411 = $('<div id="html_4a914d9ab0a8495587027dec4261e411" style="width: 100.0%; height: 100.0%;">Harlingen (6, 16%)</div>')[0];
popup_4e2693ea086e44ec80b663608a61ce1b.setContent(html_4a914d9ab0a8495587027dec4261e411);
polygon_f9be9fcd86d64af690b4ab33d247d55f.bindPopup(popup_4e2693ea086e44ec80b663608a61ce1b)
;
var polygon_764b85f6df954de9b04df5c9e328717b = L.polygon(
[[[53.34575987910701, 6.2644403476487485], [53.34560872016441, 6.26560761967956], [53.34560734031609, 6.265619363881715], [53.34547941801557, 6.266831674044096], [53.34547811957323, 6.266845932831891], [53.34534250850742, 6.2686153095215], [53.345341907250436, 6.268624191420567], [53.345209107156926, 6.270884362606905], [53.34500409100883, 6.272409530264661], [53.3448463808085, 6.273239404526662], [53.34478574401875, 6.273558476539974], [53.3447762114854, 6.273588839679805], [53.344522873973226, 6.274395773369355], [53.34447116338438, 6.2745604825586465], [53.34407931887651, 6.275597342791173], [53.34309011442218, 6.27767932045665], [53.34308090006338, 6.277699898479892], [53.34240116060968, 6.279314585392467], [53.342187533151694, 6.279822046683271], [53.34216655598584, 6.279882398702693], [53.34180517669001, 6.281185216417156], [53.34180071710401, 6.281202483673193], [53.341503763411914, 6.282443258802937], [53.341497508864876, 6.2824734860406455], [53.34121565998473, 6.28408480988579], [53.341211522133975, 6.284113264313142], [53.34094919443267, 6.286371425519061], [53.340863615041066, 6.286352239437666], [53.34040876772846, 6.286250268170416], [53.3390693133891, 6.285949995338088], [53.33863812979271, 6.285853344068522], [53.338609367837996, 6.285846899447867], [53.33727479030078, 6.2855477498841825], [53.33681855341963, 6.285445482062089], [53.3363762498783, 6.285346343069739], [53.33632964790625, 6.285335905868119], [53.33629491602774, 6.285328120080934], [53.33548190456316, 6.285145902493344], [53.33502060306914, 6.285042515970645], [53.3336859623411, 6.2847434108890345], [53.3332271314862, 6.28464058086012], [53.33248985604563, 6.284475370769359], [53.33189150668553, 6.284341284516116], [53.33154367856537, 6.284263336901821], [53.33149337808511, 6.284252095834119], [53.331437305974674, 6.284239549857192], [53.33141530054554, 6.284234625004113], [53.3309600078391, 6.284132544206995], [53.33091747626664, 6.284123014125279], [53.330101736173305, 6.283940260936832], [53.32964391733543, 6.283837694442622], [53.329003687003585, 6.283694259606402], [53.32887238839625, 6.283664839590718], [53.328425530724886, 6.2835615883794596], [53.328305197734466, 6.2835337800041495], [53.32829253549578, 6.283530845759175], [53.32826817883964, 6.283525221389903], [53.32804293666331, 6.283473183834266], [53.3279001005245, 6.28344018804904], [53.32785975026109, 6.283430481173304], [53.32712274307826, 6.283253284727051], [53.32711634786448, 6.28325179150234], [53.32696630951426, 6.283217796387554], [53.326707033612244, 6.283159047249714], [53.32650458631151, 6.283112911497704], [53.32645259598522, 6.283100972475487], [53.32619204694955, 6.283039116612165], [53.326185902642884, 6.283037698785784], [53.326059470780244, 6.283009362563755], [53.325947824692115, 6.282984330877752], [53.325567754300806, 6.282897585787833], [53.32540177654515, 6.282856990597649], [53.3252689058525, 6.282824020019796], [53.32526107106787, 6.28282214277011], [53.3249714306252, 6.282755206409508], [53.32472132572522, 6.282696756244619], [53.32470220069415, 6.2826922837710555], [53.32469122249212, 6.282689846343607], [53.32462045793453, 6.282674967879334], [53.32426905568593, 6.282594920710345], [53.32303434028945, 6.282313988555181], [53.323029484631746, 6.282312909132756], [53.322917784917884, 6.282288660499118], [53.322475597569, 6.2821855515037885], [53.32159105071417, 6.281979266691299], [53.32159049963246, 6.281979138502471], [53.32113093694555, 6.281872512249793], [53.32097276456199, 6.281835807824855], [53.32097029586179, 6.281835241540424], [53.32067555238294, 6.281768416970366], [53.31992596481595, 6.281598460814422], [53.319901540384116, 6.281593559321256], [53.319783540239854, 6.281572922720451], [53.31974646683012, 6.281564884884437], [53.3195148823543, 6.281513320736784], [53.319428140506865, 6.281494017094762], [53.319337970015866, 6.281472491986246], [53.31899405928827, 6.281390382141078], [53.31895700959851, 6.281383003636174], [53.31884307121489, 6.281364757352574], [53.3186413736887, 6.281319069168974], [53.31847181443588, 6.2812
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffcc6",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_9f7985217fd540748df5f1b236c3fea7 = L.popup({maxWidth: '300'
});
var html_16dfb879120c44509229bcfdaae7234b = $('<div id="html_16dfb879120c44509229bcfdaae7234b" style="width: 100.0%; height: 100.0%;">Kollumerland en Nieuwkruisland (2, 2%)</div>')[0];
popup_9f7985217fd540748df5f1b236c3fea7.setContent(html_16dfb879120c44509229bcfdaae7234b);
polygon_764b85f6df954de9b04df5c9e328717b.bindPopup(popup_9f7985217fd540748df5f1b236c3fea7)
;
var polygon_b542a220e84543e4b446ce46ad7e8aba = L.polygon(
[[[[53.47193300178735, 6.0595555504378], [53.47201860868304, 6.0595160007165125], [53.47180487209525, 6.060001034817661], [53.47060816348886, 6.062716734966402], [53.46901875523744, 6.0641774176009555], [53.46898297186578, 6.0642138440515305], [53.46895109026047, 6.064253730129705], [53.46892344292575, 6.064296659849851], [53.46890031820517, 6.064342185483152], [53.46888195727441, 6.0643898322271195], [53.468868551625924, 6.064439103157472], [53.46886024107184, 6.064489484410729], [53.46874972048504, 6.065468646880935], [53.46621893860135, 6.0650373062714085], [53.465845814990814, 6.0646536651819805], [53.4669766249255, 6.06420737250214], [53.467022632191394, 6.064186469703], [53.467066294621404, 6.064161029818327], [53.4671071662308, 6.064131312700821], [53.467144829541326, 6.064097621892477], [53.46717889984554, 6.064060301524084], [53.467209029136356, 6.064019732800146], [53.46723490966167, 6.06397633010511], [53.4684890712322, 6.0616086871474995], [53.46901444017756, 6.060903166391211], [53.47193300178735, 6.0595555504378]]], [[[53.4750862538122, 6.058098743652412], [53.47515988273995, 6.058064724884541], [53.47500007101985, 6.0583722429294316], [53.4750862538122, 6.058098743652412]]], [[[53.51529009773884, 6.389837834905169], [53.51436839268511, 6.390691584619445], [53.51419366395357, 6.390739785728176], [53.513437290892746, 6.390948440709099], [53.5126749945378, 6.390384043897177], [53.51263560293228, 6.390357674628782], [53.51259389120519, 6.390335154221938], [53.51255023426769, 6.390316685093387], [53.51250502451479, 6.390302433246382], [53.5124586682984, 6.3902925267786275], [53.51241158227505, 6.390287054730917], [53.512364189660865, 6.390286066286825], [53.51231691642766, 6.390289570330631], [53.51227018747422, 6.390297535367473], [53.51222442280729, 6.390309889806424], [53.51218003376645, 6.390326522603964], [53.51213741932694, 6.3903472842620515], [53.512096962513645, 6.390371988171841], [53.51205902695837, 6.390400412290946], [53.51156785530583, 6.390806171411768], [53.51082264212277, 6.389608734801434], [53.510796785021185, 6.389571128574035], [53.51076760666882, 6.389536036669059], [53.510735350158484, 6.389503751446714], [53.510700284227916, 6.389474541883978], [53.510662701020955, 6.389448651333665], [53.510622913653506, 6.389426295496997], [53.50930999240396, 6.388765530882528], [53.50785403764404, 6.382132529455669], [53.50684553317898, 6.372059818235013], [53.506840108089655, 6.372021030627502], [53.50683166372858, 6.371982786636383], [53.50574219523144, 6.367828747985116], [53.505726015709016, 6.3677781719312145], [53.505704563731776, 6.367729596970107], [53.5056780812535, 6.367683570971816], [53.50564686696627, 6.367640613056982], [53.50561127293156, 6.367601207741769], [53.50557170060938, 6.367565799473082], [53.502841320358385, 6.365372286463799], [53.50240659272257, 6.364417873156026], [53.50490618145486, 6.35926451801928], [53.504924253259794, 6.359222457718269], [53.50493840245331, 6.359178920844499], [53.50601742060145, 6.355256220113671], [53.50604479259424, 6.355156711003192], [53.50605652308993, 6.355102442386275], [53.5066787812642, 6.351180026579947], [53.506684482548415, 6.35112345598349], [53.506683724490166, 6.3510666038738295], [53.50626118956552, 6.3450592741120815], [53.50625709394488, 6.345021558247238], [53.506208396878186, 6.344690652781338], [53.50591918563231, 6.34272540952241], [53.505912108539164, 6.342687522451114], [53.50590213412617, 6.342650293074216], [53.504635211329614, 6.338559343017373], [53.504621509649816, 6.338520765110462], [53.504604697874164, 6.338483437438014], [53.50352110176084, 6.336318819977605], [53.503510640517234, 6.336299040780712], [53.501589295856256, 6.332855067796914], [53.500822590702995, 6.330472335026986], [53.50085659867049, 6.329443361381655], [53.50090556174612, 6.327961893415878], [53.50090908502549, 6.327855290114307], [53.50090889590105, 6.327817285124096], [53.500905820615685, 6.327779404288982], [53.50090300887829, 6.327755891893008], [53.50054509797823, 6.324762958476599], [53.50029365354688, 6.319857923685882], [53.50
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff3af",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_dfa44b5636d14dd8ab9b39650021910a = L.popup({maxWidth: '300'
});
var html_9bf44bbf96f643ca84453a31e86b02cc = $('<div id="html_9bf44bbf96f643ca84453a31e86b02cc" style="width: 100.0%; height: 100.0%;">Schiermonnikoog (1, 8%)</div>')[0];
popup_dfa44b5636d14dd8ab9b39650021910a.setContent(html_9bf44bbf96f643ca84453a31e86b02cc);
polygon_b542a220e84543e4b446ce46ad7e8aba.bindPopup(popup_dfa44b5636d14dd8ab9b39650021910a)
;
var polygon_a446fa91276b444191f7030891879172 = L.polygon(
[[[[53.25455860028397, 5.2555114077055745], [53.253784176804835, 5.259036185307247], [53.25254344032144, 5.263469889456295], [53.2525313995101, 5.263524535614219], [53.25252554018863, 5.2635801849813815], [53.25236569937922, 5.266845153416133], [53.25220184693421, 5.267338858938373], [53.25211087134121, 5.265263775950789], [53.25210760136635, 5.262080717157426], [53.252105025452224, 5.262030540167252], [53.2520974268196, 5.261980875023952], [53.252084882195405, 5.2619322232194605], [53.2520675182485, 5.2618850760135585], [53.252045510310694, 5.261839909473398], [53.25201908060632, 5.261797179666436], [53.25198849600832, 5.261757318055302], [53.251954065343554, 5.261720727141131], [53.25191613627435, 5.261687776399311], [53.251875091788094, 5.261658798548731], [53.25183134632994, 5.261634086192156], [53.25178534161803, 5.261613888861684], [53.251737542183214, 5.261598410499107], [53.25168843067851, 5.261587807396614], [53.25098950328609, 5.261473314175499], [53.250651822188125, 5.261193025645646], [53.25058093833399, 5.261134189271962], [53.25043835172284, 5.259927257733124], [53.24993466886504, 5.255663808859628], [53.249849843099696, 5.25267398135802], [53.2502414407274, 5.249908626836014], [53.25103105546529, 5.248697144105266], [53.25234347638244, 5.2486929253372985], [53.25239483238559, 5.2486901149025105], [53.252445627966125, 5.248682043558046], [53.25249532563821, 5.248668796709628], [53.25254339953335, 5.248650514526802], [53.25258934096483, 5.248627390459752], [53.25263266381025, 5.248599669192331], [53.25267290965542, 5.2485676440529865], [53.25270965264494, 5.248531653910939], [53.25274250398836, 5.248492079590491], [53.25336992489284, 5.247651814596112], [53.254287263955035, 5.247903703198259], [53.25508834187034, 5.250200826430741], [53.25493201921116, 5.253811796696817], [53.25468396141696, 5.254940828267383], [53.25455860028397, 5.2555114077055745]]], [[[53.2946547841704, 5.159351500691284], [53.295743174863404, 5.159644939741725], [53.29651170692961, 5.159852193558006], [53.296484648877716, 5.159869488531998], [53.295508806657075, 5.1600871514143325], [53.294803357305845, 5.160244502813853], [53.2942514699249, 5.160032633927113], [53.29276413722555, 5.159461648733198], [53.292762956360434, 5.158841551797027], [53.2946547841704, 5.159351500691284]]], [[[53.41005849770674, 5.47559186606592], [53.40969022865513, 5.476931088323671], [53.409459118992494, 5.47705228910617], [53.408764107134964, 5.476062844268292], [53.40791695970415, 5.472780299312327], [53.40791206409665, 5.472762669423449], [53.407359620096194, 5.470905713560811], [53.407330831123375, 5.470808943839693], [53.40667830156471, 5.468615565708126], [53.406282250893035, 5.466643756282099], [53.40627854463461, 5.4666268288381135], [53.405575893079096, 5.463664313477331], [53.40521413227165, 5.460770671782554], [53.40482657747149, 5.457465056662207], [53.40466648718227, 5.455854604867869], [53.40464326029576, 5.455620950589169], [53.404467505781156, 5.4538529222172745], [53.4044892371747, 5.452731124711095], [53.40467558024402, 5.451081152057839], [53.40467867580161, 5.451032974400662], [53.404706532795075, 5.449277686018612], [53.40470603496646, 5.449246077629033], [53.40467335453875, 5.448556640670813], [53.40465687029993, 5.448208883794033], [53.404627451274905, 5.447588250450118], [53.404696626939085, 5.444892713520334], [53.40469609514212, 5.444853506713541], [53.404419969819884, 5.439627087818351], [53.404595577238396, 5.437081811804614], [53.40459640237333, 5.437028409309296], [53.40424762915649, 5.427850784728228], [53.404252995740386, 5.4277474321707775], [53.40430486748512, 5.426748458228085], [53.404692413296985, 5.419284892666318], [53.4046930317799, 5.419251602601139], [53.40463076274579, 5.415023254624704], [53.40460972509305, 5.413594703216496], [53.404600274160245, 5.41295294229661], [53.40460003467896, 5.412573038683106], [53.40459986084708, 5.412297278683437], [53.404598152176895, 5.4095867120644], [53.4046197245106, 5.40874814092547], [53.40466946365183, 5.406814654781576], [53.404727396475586, 5.404562659487047],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fdaa48",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_ea36739f33fc40f1acc08379f01d81b7 = L.popup({maxWidth: '300'
});
var html_4602e401846a48d4b01ebb05e07fe5ed = $('<div id="html_4602e401846a48d4b01ebb05e07fe5ed" style="width: 100.0%; height: 100.0%;">Terschelling (2, 40%)</div>')[0];
popup_ea36739f33fc40f1acc08379f01d81b7.setContent(html_4602e401846a48d4b01ebb05e07fe5ed);
polygon_a446fa91276b444191f7030891879172.bindPopup(popup_ea36739f33fc40f1acc08379f01d81b7)
;
var polygon_825bed60b7b8492b9d46e95b47f0f25a = L.polygon(
[[[[53.295743174863404, 5.159644939741725], [53.2946547841704, 5.159351500691284], [53.292762956360434, 5.158841551797027], [53.292758702623274, 5.156607825556846], [53.292756630070436, 5.156563289694052], [53.29243634749576, 5.153057373527685], [53.29281592779627, 5.150371920187414], [53.29282028201786, 5.150325745107803], [53.292820338922766, 5.150279365220086], [53.292816098021355, 5.150233179594855], [53.29280759580399, 5.15018758563119], [53.29249407466455, 5.148853117223442], [53.2924914084605, 5.148842310515585], [53.292141166836394, 5.147487719969363], [53.29212370188967, 5.147433245580077], [53.29210012897376, 5.147381122638032], [53.29143799709352, 5.146115365781446], [53.2914154592796, 5.146076616782182], [53.291389541550664, 5.146040042073336], [53.28987704556708, 5.144096564852228], [53.28798527830324, 5.140443416452684], [53.28644811161107, 5.13716838388221], [53.286439442301926, 5.137150816584368], [53.28469051029984, 5.133775117039892], [53.28317353497084, 5.129481579169042], [53.282649529449806, 5.127953361110129], [53.28244844020839, 5.126451031544452], [53.28244712257906, 5.1264418377909315], [53.282127921031034, 5.124352950845987], [53.282163000986344, 5.122231379151409], [53.28232867070389, 5.120958727628396], [53.28243074244527, 5.120174626834062], [53.28337815368462, 5.118714621800031], [53.28340343294244, 5.118670994795331], [53.28560614723333, 5.11438489593397], [53.28612374782612, 5.113589000701716], [53.28749380537031, 5.111482314035326], [53.28810133857393, 5.111548409569888], [53.28893187059216, 5.113083655938952], [53.28921179822027, 5.113641478800509], [53.28963553138475, 5.114485868644885], [53.29101203404351, 5.118960954676816], [53.29103647870919, 5.119024610552684], [53.29245532792173, 5.122078837902841], [53.29247695675715, 5.122120221101264], [53.29250235179391, 5.122159406146133], [53.29253129154914, 5.122196051284976], [53.29256352362468, 5.122229836917123], [53.29259876690841, 5.122260468381098], [53.29263671402594, 5.12228767852451], [53.29267703402139, 5.122311230034025], [53.29413116208555, 5.123071865030063], [53.29537910421954, 5.124024366277826], [53.297194506054886, 5.125409985423349], [53.298894346873205, 5.127343148189414], [53.29992209615952, 5.129125976327714], [53.2998740397055, 5.132645912924335], [53.299875023438084, 5.132684820744028], [53.30004444425185, 5.135319802997208], [53.30021620913329, 5.1401433302034345], [53.29894420802638, 5.145358727444268], [53.29893477245873, 5.145408062528125], [53.29893033437788, 5.145458095356091], [53.298772025892816, 5.149597959277943], [53.298772258255944, 5.14964150259999], [53.29910914272855, 5.15652610536356], [53.29865119774167, 5.158484673158044], [53.29651170692961, 5.159852193558006], [53.295743174863404, 5.159644939741725]]], [[[53.30105231611505, 5.099383420536489], [53.30080299269759, 5.0986395097366115], [53.30078623911882, 5.098596284621974], [53.30076555417225, 5.098554796962093], [53.30025981159494, 5.0976482820209], [53.30023664959185, 5.0976107568184], [53.30021027133028, 5.097575418361636], [53.30018088199294, 5.097542541529973], [53.30014871018409, 5.097512382055085], [53.29938724410355, 5.096859186187986], [53.29938213765126, 5.096854864763887], [53.29881576138757, 5.0963820247955205], [53.29842429217624, 5.095918504319968], [53.29839675733769, 5.095888474276736], [53.29836686893257, 5.0958607857580045], [53.29727987931152, 5.09493316702005], [53.29683421771577, 5.094361937252231], [53.29626587900617, 5.0933111719071205], [53.29599593009603, 5.092507500957651], [53.29600657800135, 5.092451350652432], [53.29617244208979, 5.092278360539105], [53.29640834472491, 5.092192318276325], [53.296451694048464, 5.092174155813423], [53.29649314645155, 5.0921520032246566], [53.2965323356543, 5.092126056253749], [53.2965689153748, 5.092096544172174], [53.29660256238896, 5.092063727753277], [53.29663297938652, 5.092027896968042], [53.296659897598154, 5.091989368422866], [53.296683079170364, 5.091948482561972], [53.29710893726282, 5.091107563736949], [53.297132352072616, 5.091053690114549], [53.29714928693382,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_e6c3bd0b92a54e9f8a73423c65d7c4b2 = L.popup({maxWidth: '300'
});
var html_b56959bfedfb40ca8562ea1fe8151630 = $('<div id="html_b56959bfedfb40ca8562ea1fe8151630" style="width: 100.0%; height: 100.0%;">Vlieland (0, 0%)</div>')[0];
popup_e6c3bd0b92a54e9f8a73423c65d7c4b2.setContent(html_b56959bfedfb40ca8562ea1fe8151630);
polygon_825bed60b7b8492b9d46e95b47f0f25a.bindPopup(popup_e6c3bd0b92a54e9f8a73423c65d7c4b2)
;
var polygon_54e954133ce043ae9fcdf20499949ef3 = L.polygon(
[[[53.37332465989894, 5.852787503939816], [53.3726815166471, 5.853689945758588], [53.37258642958759, 5.8538095455246575], [53.372398731815274, 5.854058896923892], [53.372186333323754, 5.854377495462308], [53.372178688266864, 5.854388696230421], [53.37161495189858, 5.855215102577823], [53.371519654914984, 5.85535371404308], [53.37126057253685, 5.855730595125918], [53.37094964568407, 5.856180929106106], [53.37064478534462, 5.856598225466993], [53.37050301732875, 5.8568121636700745], [53.370345747585354, 5.857049517474567], [53.370253614008405, 5.85717588176254], [53.370121252869076, 5.857357437293496], [53.36999195431945, 5.857534789744228], [53.36972859538855, 5.857896002937669], [53.36948519479387, 5.858265633285171], [53.368940478868915, 5.859053221063307], [53.3686608508673, 5.8594651513041605], [53.36798027934038, 5.860476587598827], [53.367247726039686, 5.861550273689842], [53.36664230125065, 5.862435926764554], [53.36595612641499, 5.863446862194752], [53.36556503848659, 5.86402882587451], [53.3653382759931, 5.864371515728814], [53.36531753927239, 5.864393924033894], [53.36529901263954, 5.864402791848536], [53.365287982447434, 5.86439047158981], [53.36512592214824, 5.864642497573906], [53.364994916526506, 5.8648192322142965], [53.364907652753004, 5.864814538451411], [53.36482154478504, 5.864817503167783], [53.36480853469291, 5.8651204067710845], [53.36483376287823, 5.865091560395614], [53.3647024170133, 5.867358793386248], [53.36470198328744, 5.867476347954564], [53.36470075605525, 5.8678128053214476], [53.364732695067595, 5.867820522524164], [53.36472515823113, 5.868078585826399], [53.36471483326234, 5.868267547874881], [53.36464767725858, 5.86828108252315], [53.36465910442571, 5.868295106040772], [53.364665344481296, 5.868316445789094], [53.364659329741244, 5.8684049314865305], [53.3646346398017, 5.868949956543376], [53.36460977551125, 5.8695333289603475], [53.364597483858255, 5.869880550888275], [53.36458901152052, 5.870119870441313], [53.364573497120745, 5.870568678295353], [53.36456667571983, 5.870893113317734], [53.364538349461405, 5.871026066822598], [53.36459634775121, 5.871064348201029], [53.36459195363948, 5.8711292822099255], [53.36457166164369, 5.871429201401665], [53.364571225447655, 5.871660214517911], [53.36452961945948, 5.871694776057812], [53.36448872543429, 5.871728760600261], [53.364523696888945, 5.871826734331474], [53.36459477364484, 5.872033166368012], [53.36464305580219, 5.872181372547079], [53.36468135001484, 5.8723219712105195], [53.36469641376329, 5.872456720871266], [53.364706311692984, 5.8725466618117155], [53.36470261795174, 5.872676061979042], [53.36468106790949, 5.872721319355027], [53.36458302636596, 5.872862513413817], [53.364486969429045, 5.873001655331915], [53.36424336182599, 5.873337415485776], [53.36391362877761, 5.873804460611684], [53.363766206301804, 5.874009141832543], [53.36370317092989, 5.8740966496933], [53.363321006882416, 5.874623369438782], [53.36310764445297, 5.874922261702559], [53.36295866243234, 5.875125475458069], [53.36283154144671, 5.875304391845639], [53.36261363497072, 5.875619973079301], [53.36236446267096, 5.875972208203667], [53.3622898376148, 5.876061245443828], [53.36227383506458, 5.876072254103275], [53.362211275535536, 5.876115314082691], [53.36214271812824, 5.876157389910486], [53.36207699858155, 5.876164303943739], [53.36199191824945, 5.8761132281167985], [53.36197733473205, 5.876104470257073], [53.36175342305552, 5.875909782471931], [53.361651420131956, 5.875828608924292], [53.36159988044125, 5.875775587339589], [53.36147637871766, 5.875733494802566], [53.361152124476604, 5.875630348458489], [53.361046871332384, 5.875594982124947], [53.36103142396478, 5.875621888271103], [53.360977626502645, 5.875715606124969], [53.36105464002865, 5.875947494218196], [53.361069121537525, 5.876001190891142], [53.36106864955723, 5.876039998949734], [53.361062433128524, 5.8760772684979665], [53.361058935002774, 5.876084634451025], [53.36104090877673, 5.876122626081722], [53.3610101075596, 5.876171182263751], [53.36094045128508, 5.876297764153733], [53.36
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fede81",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_1c0425eb097342df8dfe6f7362f01696 = L.popup({maxWidth: '300'
});
var html_d4eb3222a3ea4b45a08f50fa196c6a34 = $('<div id="html_d4eb3222a3ea4b45a08f50fa196c6a34" style="width: 100.0%; height: 100.0%;">Ferwerderadiel (26, 21%)</div>')[0];
popup_1c0425eb097342df8dfe6f7362f01696.setContent(html_d4eb3222a3ea4b45a08f50fa196c6a34);
polygon_54e954133ce043ae9fcdf20499949ef3.bindPopup(popup_1c0425eb097342df8dfe6f7362f01696)
;
var polygon_5362117dcf92488e9978412726987787 = L.polygon(
[[[[52.95446367289039, 5.408531037716525], [52.95426090139331, 5.407874904035726], [52.954825511951356, 5.407523081551722], [52.95494576594951, 5.407578899118848], [52.954993013232674, 5.407597967674468], [52.955041955782946, 5.407612128972177], [52.9550920853974, 5.40762123596584], [52.95514288154707, 5.40762519409151], [52.95519381678187, 5.407623962249347], [52.95524436220754, 5.407617553230383], [52.95529399297743, 5.407606033583708], [52.955342193742396, 5.407589522925441], [52.95538846400197, 5.407568192696684], [52.95574827778572, 5.407379527900801], [52.9559454244806, 5.407571827798478], [52.95613133781713, 5.407927885326217], [52.955976449558484, 5.408908635357154], [52.955971128261126, 5.408958363789995], [52.9559708014285, 5.409008375052916], [52.95597547233054, 5.409058168786583], [52.95598509423521, 5.409107246808029], [52.956083428067075, 5.409502847323309], [52.95609223525207, 5.409538278942908], [52.95610609832982, 5.409584425958679], [52.956124338997654, 5.409629024277326], [52.95614037007444, 5.409659470904519], [52.9561467878558, 5.409671659717478], [52.95617323642333, 5.409711936326874], [52.956203439074315, 5.409749480059546], [52.9562371153189, 5.4097839422495495], [52.956273952408225, 5.409815002849012], [52.9563136082389, 5.409842373400383], [52.95635571453009, 5.409865799715323], [52.95639988024369, 5.409885064235335], [52.956445695215905, 5.409899988052207], [52.956492733966385, 5.409910432569529], [52.95654055964965, 5.40991630078982], [52.956588728112024, 5.40991753821534], [52.95663679201646, 5.409914133354209], [52.95668430499695, 5.409906117827126], [52.95673082580386, 5.409893566073714], [52.9567759224018, 5.4098765946612035], [52.956819175981934, 5.4098553612018785], [52.95686018485137, 5.4098300628893465], [52.95689856816369, 5.4098009346672145], [52.95749840527068, 5.4092983984511465], [52.9575293187294, 5.409270216739084], [52.9575577683133, 5.409239549623133], [52.95758355489227, 5.409206611754803], [52.95795646222654, 5.408686879988288], [52.95978322013656, 5.408434899283802], [52.960077232447425, 5.411172995041629], [52.96008479807174, 5.411221174597558], [52.960097021543426, 5.411268387890396], [52.96011378656798, 5.41131418573131], [52.9601349336424, 5.411358132398126], [52.96016026157272, 5.4113998097808], [52.96018952938817, 5.411438821359332], [52.96022245863379, 5.411474795976273], [52.96025873601963, 5.411507391367923], [52.96029801640146, 5.41153629742065], [52.960339926064414, 5.411561239121308], [52.960619223211296, 5.411709511073901], [52.96139008338477, 5.412118741688575], [52.96328538503444, 5.413124910492954], [52.96333134604737, 5.413146395793685], [52.963379247752684, 5.413163112835441], [52.96342859694813, 5.413174889497363], [52.9634788855279, 5.4131816045253895], [52.96352959571418, 5.413183188780711], [52.96358020538821, 5.413179625951626], [52.96363019346615, 5.413170952721492], [52.96367904526417, 5.413157258391025], [52.963726257797745, 5.413138683958851], [52.96467532758285, 5.4127084884247685], [52.9678337814051, 5.411761503481357], [52.96787816604808, 5.411745884515081], [52.96792088596195, 5.411726162507091], [52.96796156282793, 5.411702512111436], [52.96948469262392, 5.410718228019252], [52.97039520873853, 5.410491880897907], [52.97051066162993, 5.410463180220127], [52.970942876516716, 5.410355735009817], [52.97099110178201, 5.410341130341056], [52.9710376122252, 5.41032174603718], [52.971081935491334, 5.410297778963052], [52.971123621438174, 5.410269472525645], [52.97116224670782, 5.410237114202031], [52.97119741902628, 5.410201032619795], [52.97122878118734, 5.410161594219524], [52.97125601468035, 5.410119199533283], [52.971278842924924, 5.410074279116854], [52.971297034079925, 5.410027289177055], [52.97131040339798, 5.409978706938558], [52.97139447307927, 5.409599433133757], [52.97205109337038, 5.409598570897714], [52.9721037024817, 5.409598501814451], [52.97215443785903, 5.409595854100541], [52.97220464264762, 5.409588071549216], [52.972253107586404, 5.409575414946181], [52.972253798515375, 5.409575234510304], [52.972301397959626, 5.4
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff7b8",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_2c12c2106a9c4041a6a4fb3411c2f7fa = L.popup({maxWidth: '300'
});
var html_ddc43e0c027f4a9ba0d00f0c3f0b3a73 = $('<div id="html_ddc43e0c027f4a9ba0d00f0c3f0b3a73" style="width: 100.0%; height: 100.0%;">Súdwest-Fryslân (28, 6%)</div>')[0];
popup_2c12c2106a9c4041a6a4fb3411c2f7fa.setContent(html_ddc43e0c027f4a9ba0d00f0c3f0b3a73);
polygon_5362117dcf92488e9978412726987787.bindPopup(popup_2c12c2106a9c4041a6a4fb3411c2f7fa)
;
var polygon_983b4bf8ad084bf097535de9261c3540 = L.polygon(
[[[[53.04991737218333, 5.797867859250339], [53.04980870085548, 5.797947047380133], [53.0498584173969, 5.798073707964035], [53.049715767770955, 5.798231744438682], [53.04971023050528, 5.798237627412537], [53.04963724815387, 5.798315123188399], [53.04941906389348, 5.798571641473139], [53.049210956469246, 5.79886359505992], [53.04904224106722, 5.799085771015765], [53.04897931572874, 5.799160153911213], [53.04875032838869, 5.799403676262753], [53.04859363318501, 5.799569087218999], [53.04844622415095, 5.7997048354672], [53.04836318369567, 5.799782917276036], [53.0482712839267, 5.799850296671125], [53.04822696359179, 5.799902649595146], [53.048083741588194, 5.800069586462974], [53.047963301055525, 5.800212715254577], [53.04790839519645, 5.800272662151748], [53.047690071546675, 5.800633333163056], [53.047617492082864, 5.800812285872637], [53.047552058247916, 5.800967327293216], [53.04747822177974, 5.801104260920357], [53.04742881978197, 5.80120180560636], [53.04740816767129, 5.801238739065667], [53.047202721927974, 5.80164499001245], [53.04716617548572, 5.801712340292025], [53.046998679633575, 5.801928586909914], [53.04687326106914, 5.802091492184895], [53.04679938714532, 5.8022233510713805], [53.046707048082034, 5.802536028835384], [53.046646201546345, 5.802774449724454], [53.046320812146206, 5.8034416667159565], [53.04626047430259, 5.803579913916537], [53.04621918553454, 5.803682466430958], [53.04617004317458, 5.8038185532309114], [53.04600093794807, 5.804350936407914], [53.04595985828481, 5.804455145089562], [53.0459101852771, 5.8045754947080725], [53.04586220713665, 5.804653034078457], [53.04578648429387, 5.804783451663434], [53.04554889169144, 5.805230918780259], [53.04546043771119, 5.805404155158272], [53.04528404808269, 5.805761531074106], [53.0449985728236, 5.806275760062028], [53.04487216656318, 5.806554896437374], [53.04471664518638, 5.806943776986996], [53.04466877417109, 5.807056920758117], [53.04461560738823, 5.807176051515522], [53.044580779021366, 5.807242112900576], [53.04448838543825, 5.807392474701117], [53.04435881285641, 5.807633253136694], [53.04430192759401, 5.807754359448399], [53.04422789633609, 5.807916363996081], [53.0441384311256, 5.808066766988414], [53.04396922647796, 5.808376983639154], [53.04383539645654, 5.808660061474263], [53.043751275197465, 5.808859464216784], [53.043690997336064, 5.809019809176928], [53.043690313485946, 5.809022115929049], [53.04369026076047, 5.809022291970233], [53.04368944928055, 5.8090250188443555], [53.04368457705137, 5.809041396435654], [53.04356697299575, 5.809436844484435], [53.04338812206688, 5.810024441038522], [53.04333005699419, 5.810208929376264], [53.04323728633708, 5.810490220598954], [53.04303326302144, 5.811056778107913], [53.04284205542602, 5.811528224257556], [53.042650574737415, 5.812068623234812], [53.04237214069131, 5.812831548186679], [53.0421642180006, 5.813419829703613], [53.041875531374465, 5.81440167910748], [53.041789818303194, 5.814649071069828], [53.04164145084288, 5.815015124114029], [53.04143441371589, 5.8155564871054395], [53.0412968596076, 5.815993760474655], [53.041078867772804, 5.816816814625667], [53.04105555570383, 5.816897394168216], [53.04099865162736, 5.81707100581671], [53.040342535690264, 5.818887710988184], [53.04027249895803, 5.81905171908382], [53.03993180282013, 5.819868372703048], [53.03963370562619, 5.820528549251262], [53.03959089960485, 5.820611658747895], [53.03953207337661, 5.820719088572318], [53.03926232248376, 5.8211812756035695], [53.03906292997206, 5.821505104906763], [53.03904685571826, 5.821539294743002], [53.0390118193511, 5.821610880414288], [53.03882949680962, 5.822044262807864], [53.038647033243365, 5.822540675091895], [53.0386304799448, 5.822590215033196], [53.03843152271311, 5.823185779251598], [53.03843146111856, 5.823185975184565], [53.03830917920402, 5.823571790638473], [53.03821406261678, 5.823842173636641], [53.03818071274977, 5.823926460513632], [53.03811696999169, 5.824057999464271], [53.03797215134026, 5.824315491305799], [53.037791549649256, 5.824604972558494], [53.0376528460754, 5.82
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffcc5",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_53875871b756494993b02cb1b0f016d5 = L.popup({maxWidth: '300'
});
var html_dd1b93d5b42f4b44b749a04c145fd973 = $('<div id="html_dd1b93d5b42f4b44b749a04c145fd973" style="width: 100.0%; height: 100.0%;">De Fryske Marren (5, 2%)</div>')[0];
popup_53875871b756494993b02cb1b0f016d5.setContent(html_dd1b93d5b42f4b44b749a04c145fd973);
polygon_983b4bf8ad084bf097535de9261c3540.bindPopup(popup_53875871b756494993b02cb1b0f016d5)
;
var polygon_f5f74f79a745418e82e27c32335e62d4 = L.polygon(
[[[53.32455228385236, 5.721834508178419], [53.323963950076234, 5.7219554147236815], [53.32396416557883, 5.721984559996337], [53.32383550042409, 5.721986201740931], [53.32298426518724, 5.722210514276576], [53.32234600425163, 5.722381189971215], [53.322313754786606, 5.722391309338989], [53.32229296441225, 5.722393998899744], [53.320072597753395, 5.722053029165614], [53.31848414101858, 5.721794745460838], [53.31759789513867, 5.721657285410032], [53.316033227708274, 5.7214146123963], [53.31603505516773, 5.721438423820188], [53.316073404842015, 5.721444813253394], [53.316076239013526, 5.721466126859752], [53.31608941432579, 5.721565244434036], [53.31611024814956, 5.721717978929829], [53.3161240906622, 5.72181946646083], [53.31614915424059, 5.722121329704542], [53.31621111199848, 5.722474299601289], [53.31644125850091, 5.723655042143826], [53.316536144920896, 5.724084304345007], [53.31741525882212, 5.727683300868041], [53.317450887073534, 5.727815792713361], [53.31746017785865, 5.727885624602718], [53.31745826209004, 5.729580718829052], [53.317452177118625, 5.7296822249632555], [53.31743761928516, 5.7297711194784435], [53.31715309109211, 5.731051137454177], [53.31712944371872, 5.7311636362311305], [53.317109741440426, 5.731259901240429], [53.31700223967885, 5.732216206892468], [53.31692204011483, 5.732659139778424], [53.31687571691106, 5.7328917186760435], [53.31676818036722, 5.733466036883563], [53.31659524136057, 5.734297158277772], [53.316485800049655, 5.7347914627657826], [53.31644371843924, 5.735006846606875], [53.31640755418973, 5.735214175602039], [53.316375309874964, 5.735432983617689], [53.31636531958956, 5.735500814208836], [53.316332322409025, 5.735703141129549], [53.31632004240697, 5.7357733982915455], [53.31630278835959, 5.735854749627887], [53.31628592072127, 5.735917452576772], [53.31620738235472, 5.736204455951201], [53.31607432104055, 5.7366704415420395], [53.31593739579349, 5.737203884110312], [53.31590149227795, 5.737360524824703], [53.31587735574382, 5.737490732835008], [53.31584988034271, 5.737647247489638], [53.31582911020632, 5.7377660038932445], [53.315820143803705, 5.7378241787830975], [53.31581692951646, 5.737845038437017], [53.31579327259329, 5.737998448027423], [53.31575906911795, 5.738184795373912], [53.31573980230331, 5.738277996171121], [53.31570387794425, 5.738428904029746], [53.31567086382003, 5.738571011635007], [53.315649480748164, 5.738644014246872], [53.315569658258276, 5.738833499369258], [53.3155252495341, 5.73894193367127], [53.31550838071331, 5.738983133205876], [53.31548581901839, 5.739050454189476], [53.31546127977262, 5.739136468659302], [53.315440619011596, 5.739223566049463], [53.31542085872191, 5.73930990511014], [53.315310379057806, 5.739955104062532], [53.3152944115331, 5.740074542844514], [53.31528984562793, 5.740111806583595], [53.31528822510899, 5.740125042076042], [53.31528006465291, 5.740208293990224], [53.31515554687815, 5.740819119165249], [53.315114850968385, 5.741097354314708], [53.31508372188731, 5.741312230036696], [53.315032904218356, 5.741746830366579], [53.31498512996917, 5.742145174983847], [53.31492758797911, 5.7423732899871975], [53.31488648241455, 5.742488048705465], [53.31485557490993, 5.742554127700975], [53.31484370205121, 5.742579566393872], [53.314815884088816, 5.742643120289699], [53.314805500718364, 5.742675233535676], [53.31479788757894, 5.74271266558704], [53.314793059320394, 5.742765290527487], [53.31478417776948, 5.74288810138595], [53.31476860336459, 5.7430528839619015], [53.314759575381665, 5.743140238105705], [53.31475069308724, 5.743202462559465], [53.31473420035816, 5.743307054960008], [53.314713846393396, 5.743413956096441], [53.3144867741563, 5.7445530782226815], [53.31441398964005, 5.744916637560672], [53.31440813699798, 5.744947917592501], [53.314272394470635, 5.745671873234631], [53.31416095547107, 5.7462627166821925], [53.31396306750101, 5.747311910048312], [53.31395083550619, 5.74736991763583], [53.31392871382961, 5.747474745181547], [53.31387669456909, 5.747721363759591], [53.313555283063565, 5.749301163802779], [53.3129
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#feec9f",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_bf01d47eaa924e118378599e78f82aad);
var popup_8713aaaa650e4b5c8b5fba97bc650407 = L.popup({maxWidth: '300'
});
var html_0b20197e4fe143e68ee41602d686dfbe = $('<div id="html_0b20197e4fe143e68ee41602d686dfbe" style="width: 100.0%; height: 100.0%;">Waadhoeke (43, 13%)</div>')[0];
popup_8713aaaa650e4b5c8b5fba97bc650407.setContent(html_0b20197e4fe143e68ee41602d686dfbe);
polygon_f5f74f79a745418e82e27c32335e62d4.bindPopup(popup_8713aaaa650e4b5c8b5fba97bc650407)
;
var feature_group_17e2a7e207a545918b2e54bfb62fb3cc = L.featureGroup(
).addTo(map_08fa7b2de2344893b5e222cc7ef30d78);
var tile_layer_74f0fd6f0fd24ad0b37bc1ec963e028f = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"subdomains": "abc"
}).addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var polygon_c9be3a6160b2478c8d7ff9d6df1370a2 = L.polygon(
[[[53.269759508775365, 6.194671132611735], [53.26966256466082, 6.1949765937649], [53.26960830536876, 6.195151984432215], [53.26964221149918, 6.195179629389442], [53.269623008143704, 6.195242553242415], [53.26961811063762, 6.195258589550095], [53.26937791554775, 6.19604553754901], [53.26921755430138, 6.196613832786641], [53.269086120483635, 6.197084055563407], [53.268907899497286, 6.197738897615405], [53.26881991147339, 6.198088851008265], [53.26877497954512, 6.198267556729182], [53.26876743260404, 6.1983033278076665], [53.268764465279176, 6.19833023690617], [53.268761605003284, 6.198346655731733], [53.26876232793156, 6.198364670592993], [53.26876488694076, 6.198378238169626], [53.26876834463733, 6.198391838190719], [53.268777144133935, 6.198410079872639], [53.26878772031936, 6.198431367520512], [53.26881414914032, 6.198487038237103], [53.268831726259805, 6.198524075668228], [53.26883429592207, 6.19853614496885], [53.268840312582604, 6.198563313550326], [53.26884365306568, 6.198588901301505], [53.26884394524377, 6.198590870956022], [53.26884702255867, 6.198611493500448], [53.26884804640412, 6.1986262014232025], [53.268848595667585, 6.198634035463153], [53.268850013207874, 6.198671564160531], [53.268851320622396, 6.198702825048716], [53.26885139068103, 6.198704469419138], [53.26885146031491, 6.1987060954847735], [53.26884839353408, 6.198744786796262], [53.268848376234054, 6.1987449932248655], [53.268846489327316, 6.19875428088197], [53.26884298438064, 6.198771619811379], [53.26883419022517, 6.198815084081894], [53.26880876539925, 6.198931337659331], [53.26870780958379, 6.199375293158311], [53.26870439211742, 6.19939030719791], [53.268617884465414, 6.199771789529354], [53.268610376272804, 6.199803064534829], [53.26856391747034, 6.199954729317168], [53.26840382162373, 6.2005035946131954], [53.268235472362036, 6.2010687268907505], [53.26816979608277, 6.201344312109932], [53.268073703573116, 6.2017840000635225], [53.267992998786774, 6.202229447287939], [53.267910976375624, 6.2026821975194455], [53.2678932043684, 6.2028406489501595], [53.267731307699854, 6.203834840757127], [53.26768004858667, 6.204283280700766], [53.26766782100095, 6.204426893031735], [53.26762005633225, 6.204884391387382], [53.26758332477131, 6.2051413291265645], [53.26750503251955, 6.205602819233884], [53.26749898488233, 6.205638451771671], [53.267494453509585, 6.205665179910391], [53.267456199035415, 6.205893535192691], [53.26740471211465, 6.206097537422055], [53.267329306972236, 6.2064448081412795], [53.267303343637586, 6.206426838848215], [53.26729092999902, 6.206418240062203], [53.2671921357428, 6.2067678526254095], [53.26714493241874, 6.2067574688941605], [53.26713743160457, 6.206755812469838], [53.267109615747216, 6.2067499638139525], [53.26704685903486, 6.20673675171938], [53.26700374575687, 6.206734044974832], [53.267010060843866, 6.206821200981218], [53.266967723704866, 6.20695491490284], [53.26694301922232, 6.207032938359169], [53.266940428687064, 6.207041162612057], [53.266910945752315, 6.207159713236561], [53.26688741341757, 6.207418709757151], [53.266858059800725, 6.2076326759736205], [53.266764076603636, 6.208483273656984], [53.26671646932924, 6.208722476172495], [53.266714173323, 6.2087494409111335], [53.26671241268521, 6.208770300425963], [53.266634239937346, 6.209267402868237], [53.266631079785206, 6.209286707962972], [53.266629176064896, 6.209298331672999], [53.266614415248725, 6.209388428522967], [53.26656765938793, 6.209619806597593], [53.26654595668374, 6.20975128696196], [53.266473336981015, 6.210416941286713], [53.266456358189025, 6.210518520583605], [53.26643734978252, 6.210650051570928], [53.26641576682591, 6.210766545402872], [53.26638860179508, 6.211020851732452], [53.26632413383465, 6.211448259872339], [53.266310793846216, 6.211515779931415], [53.26623685020235, 6.211906930022046], [53.26621515200588, 6.211900040594912], [53.26601706153361, 6.211945565333452], [53.266010408459756, 6.2119565592105115], [53.26600098929331, 6.211981724164535], [53.26597329118088, 6.2120712715344], [53.26593984958193, 6.21218972492678
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffbc2",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_354b5ff44e5d47d886d7b7475531dd08 = L.popup({maxWidth: '300'
});
var html_e78f997abf8d4109b762777921a488a2 = $('<div id="html_e78f997abf8d4109b762777921a488a2" style="width: 100.0%; height: 100.0%;">Achtkarspelen (8, 3%)</div>')[0];
popup_354b5ff44e5d47d886d7b7475531dd08.setContent(html_e78f997abf8d4109b762777921a488a2);
polygon_c9be3a6160b2478c8d7ff9d6df1370a2.bindPopup(popup_354b5ff44e5d47d886d7b7475531dd08)
;
var polygon_1ee7226f441744c78a1ffec2c1d36453 = L.polygon(
[[[53.085088543925515, 5.874575981389083], [53.085073180952044, 5.874634822180829], [53.08507017193695, 5.874643340273311], [53.08506889045081, 5.874635863471304], [53.085056565491556, 5.874643769529419], [53.085034392838004, 5.87465571337816], [53.085017549230436, 5.874654420122894], [53.08501498093187, 5.874605483049306], [53.085013635600994, 5.874474651879138], [53.08500660910789, 5.874428052333491], [53.08495843096827, 5.874373827218185], [53.084956284649834, 5.874201198046077], [53.08497610816547, 5.874121707191524], [53.084976366590084, 5.874082443263308], [53.08497231085913, 5.874058800863846], [53.08496408486037, 5.874055320805154], [53.08495029467539, 5.87407004623361], [53.08494274956134, 5.87407581252407], [53.08493362415112, 5.874070291898426], [53.084926812258765, 5.874050589370601], [53.08492569167721, 5.874032264264528], [53.08494198741108, 5.873964897545452], [53.084976012602496, 5.87385562704371], [53.08500418574085, 5.87375130546824], [53.085036368759624, 5.873635342286888], [53.085072607701996, 5.873558497270963], [53.08508336027202, 5.873532872830523], [53.08508196691698, 5.8733912955264165], [53.08506909540108, 5.873263827640352], [53.0850492442375, 5.873193309123472], [53.08498057178848, 5.873091737648598], [53.084933432040806, 5.872996243903468], [53.08484862000784, 5.872905820749675], [53.084808356326775, 5.872905071319804], [53.08478624330206, 5.872904659856547], [53.08478542569847, 5.8729046206449285], [53.08478460809115, 5.872904582344204], [53.08474844790223, 5.872920220957429], [53.08463644855481, 5.872961547872281], [53.084622535104955, 5.872966675519677], [53.08454359440721, 5.872990596437782], [53.08444727549939, 5.873012099156913], [53.08434522765401, 5.873036895308143], [53.08422291824529, 5.873081180466668], [53.084191139341705, 5.873084481097982], [53.08416836549936, 5.873076345752845], [53.08413584769496, 5.873031432289154], [53.08409556026476, 5.872961254148758], [53.0840578628499, 5.872910492175134], [53.084023717097075, 5.872865858601872], [53.084007593961374, 5.872830949490496], [53.08400094421276, 5.87278663917818], [53.08400081023549, 5.872695672703833], [53.08399729112153, 5.872391204350249], [53.08399008676143, 5.872055697327266], [53.083988447223916, 5.8719968320385245], [53.08398150579813, 5.871944563593095], [53.08396732725833, 5.8719087055437935], [53.08394572525907, 5.871881913838539], [53.08392109996579, 5.871871684342264], [53.083825441235405, 5.871867810400127], [53.083684366098815, 5.871863966704613], [53.083613899859095, 5.8718700297698625], [53.083520136131284, 5.871886324438561], [53.083324564955944, 5.871932569232413], [53.08312811446721, 5.871969491684642], [53.08291931429603, 5.872005021548086], [53.08276418673284, 5.872047389372373], [53.08263742266685, 5.872075641697114], [53.08251692805145, 5.872097950246072], [53.08239858854058, 5.872113984001344], [53.08232871748479, 5.872132738975617], [53.082298667792976, 5.87213511945514], [53.0822916380145, 5.872135682165933], [53.082259488114616, 5.872132950091286], [53.082222088066615, 5.87211957859239], [53.082187482921064, 5.872090791677741], [53.0821595279371, 5.872043991815099], [53.08213075844629, 5.871972006284111], [53.08209916340635, 5.871887646923096], [53.08207157887283, 5.871838195311417], [53.08203762979681, 5.871804759656209], [53.08199583473964, 5.8717895185992415], [53.0819435136779, 5.871786024162847], [53.08187634937454, 5.871786617772486], [53.08182334518438, 5.871781026186068], [53.081813400582966, 5.871773662803919], [53.081802192830764, 5.871765358967488], [53.08179035227532, 5.871729111703088], [53.081746395250946, 5.871575071291762], [53.08174177037524, 5.871558857225356], [53.08171650345368, 5.8714539757224085], [53.08165020498854, 5.87125161749373], [53.08158504715924, 5.871060479887116], [53.08152719428043, 5.8708471591080995], [53.0814476683701, 5.870582230323719], [53.08142950009133, 5.870506111280532], [53.081425285811875, 5.870425924912282], [53.081432132094506, 5.870312657129354], [53.08127265373181, 5.870324402696038], [53.081066272081046, 5.87035519029482], [53.0808951
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_3ccd1a02f5a64f23a588f346bb3a7c04 = L.popup({maxWidth: '300'
});
var html_3a3ee949a70c4dd4af0d5fc410e4c154 = $('<div id="html_3a3ee949a70c4dd4af0d5fc410e4c154" style="width: 100.0%; height: 100.0%;">Heerenveen (2, 1%)</div>')[0];
popup_3ccd1a02f5a64f23a588f346bb3a7c04.setContent(html_3a3ee949a70c4dd4af0d5fc410e4c154);
polygon_1ee7226f441744c78a1ffec2c1d36453.bindPopup(popup_3ccd1a02f5a64f23a588f346bb3a7c04)
;
var polygon_a2f67e457cd143bcb4afbe4c083adaeb = L.polygon(
[[[53.29467007108855, 5.73581343441129], [53.294622941823796, 5.735903516799399], [53.29464216168692, 5.735928146960399], [53.294657843738975, 5.735973715624759], [53.29467833641181, 5.7360644639402505], [53.294673698965674, 5.736145261352982], [53.2946413419833, 5.736303219271786], [53.29461058505068, 5.7364670390209005], [53.29459693184507, 5.73671258161576], [53.294587598425814, 5.7368365023489165], [53.294586486040956, 5.736851259794231], [53.294584945766516, 5.736871709091462], [53.294583279974766, 5.736893827887364], [53.29455636684815, 5.737251099349593], [53.29451175271746, 5.737975547680568], [53.29446975453135, 5.738787148950071], [53.2944214210726, 5.739826501645531], [53.294375118580845, 5.740691904064966], [53.29433548779892, 5.741608498117357], [53.29429299550967, 5.7426090518144335], [53.29425829692361, 5.743402857533427], [53.294210395996124, 5.744253242746667], [53.29418200772737, 5.7448251426459125], [53.29414822585497, 5.745396997917746], [53.29410989484453, 5.745896678128958], [53.294078272963574, 5.746435556127786], [53.29405253414856, 5.746929641685797], [53.2940358673638, 5.747273982150564], [53.29402184183196, 5.7475465093912765], [53.294024936871416, 5.747623004674741], [53.29402825958456, 5.747704391625001], [53.29403012411911, 5.7477508378921165], [53.29402270108174, 5.747918740889447], [53.294004796044455, 5.74831556058915], [53.29399293968741, 5.748553162370716], [53.293962856531124, 5.748875644407773], [53.29393937422782, 5.749362847288765], [53.29393458407746, 5.7497890191818275], [53.293932687563625, 5.750179073183655], [53.29394524861445, 5.750868437763484], [53.29395336922122, 5.751213135289207], [53.293947225770246, 5.751372350672035], [53.29393670957827, 5.751876908556262], [53.293928611256796, 5.752324347551778], [53.29392217462733, 5.752756654362041], [53.29393657368194, 5.753250925141817], [53.29395553453461, 5.75360396332734], [53.29396242106563, 5.753879665489254], [53.29396967309522, 5.75418236514928], [53.293979958569984, 5.754550777409503], [53.2939943603572, 5.75474811025315], [53.293995956727905, 5.7549310867401555], [53.293987368676916, 5.755153417452902], [53.29397390926391, 5.755499131883724], [53.29398874107949, 5.755819443796086], [53.29400928959606, 5.756355310002215], [53.29403444820912, 5.756852075335567], [53.29404780170891, 5.757388480407635], [53.29405669152696, 5.757972988954264], [53.294070755801464, 5.758452413409307], [53.29407912221457, 5.758913941715893], [53.294091626983345, 5.75940235111007], [53.29409627567264, 5.75965704883129], [53.294102456099054, 5.759995875315465], [53.2941133732203, 5.7605022681381834], [53.29412517071452, 5.760753720000888], [53.29418759091036, 5.761426726346741], [53.294238811170175, 5.761742709018887], [53.294324690528654, 5.762210313602651], [53.294434404977714, 5.762842045816712], [53.29449161023956, 5.763196776098054], [53.29449106820005, 5.7632839046071735], [53.29441218545812, 5.76353921708975], [53.294307534889036, 5.763873787813065], [53.294206326969054, 5.764199088939051], [53.294116435936, 5.76443990432277], [53.29389889986343, 5.76504012772369], [53.29381627706413, 5.765283552594293], [53.29371427762757, 5.765645102625359], [53.2936675247273, 5.765799533901518], [53.2935283212751, 5.7662274904023], [53.293480944620164, 5.766422916208645], [53.293417846381494, 5.766782238449316], [53.29340687332183, 5.766868013424954], [53.29340280451819, 5.766981308107443], [53.29340478237672, 5.767100204763587], [53.29339338947, 5.767196578184185], [53.293372832319704, 5.767306983303085], [53.29334539614279, 5.767399031179917], [53.29332235676003, 5.767467302738134], [53.29332019989755, 5.767473162862594], [53.29330290654165, 5.767520234801335], [53.29328786180302, 5.767561042822517], [53.29326310128061, 5.767622415769418], [53.29323477510521, 5.767703103496732], [53.29314839578088, 5.767987487381539], [53.29311705576306, 5.768109163646196], [53.29310060965478, 5.7681751989209715], [53.293073940022964, 5.768294396311035], [53.293065376864014, 5.768331227314122], [53.2930479662884, 5.768403896386138], [53.29303045974051,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff6b7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_a2b12bf525854a81a9f9b58b58f25a7c = L.popup({maxWidth: '300'
});
var html_2f2e7e791edc4f1397d83f0a6fe6fad3 = $('<div id="html_2f2e7e791edc4f1397d83f0a6fe6fad3" style="width: 100.0%; height: 100.0%;">Leeuwarden (23, 6%)</div>')[0];
popup_a2b12bf525854a81a9f9b58b58f25a7c.setContent(html_2f2e7e791edc4f1397d83f0a6fe6fad3);
polygon_a2f67e457cd143bcb4afbe4c083adaeb.bindPopup(popup_a2b12bf525854a81a9f9b58b58f25a7c)
;
var polygon_df35b439a93e4dc88a5467c1cdbd106b = L.polygon(
[[[52.92339365270775, 6.246637363120104], [52.923438178540636, 6.246039873821533], [52.92349204334805, 6.245218950245877], [52.923499109178266, 6.245119802200247], [52.92352559278043, 6.244749569352325], [52.923533226641226, 6.244653912042559], [52.923601339024486, 6.243678274029418], [52.923608004973126, 6.243590880085666], [52.9236191670756, 6.243479306202213], [52.923622430301286, 6.243446626949409], [52.9236331722655, 6.243329676317513], [52.9236976784566, 6.24249714866299], [52.923763183409456, 6.241603417062132], [52.92380499442227, 6.241060035237014], [52.92387481612106, 6.240150517186916], [52.92393265392701, 6.239343872984964], [52.923998553526154, 6.23848594751974], [52.92405718453197, 6.237690035064976], [52.924137439247666, 6.2365332113809435], [52.92416510657122, 6.236079910872133], [52.92416731397021, 6.236043774845062], [52.924167507908216, 6.2360424961724865], [52.92417921230438, 6.235965372330708], [52.92417926635942, 6.235964635498799], [52.9241793216984, 6.235963872371296], [52.924200062631954, 6.235685786890971], [52.92420126534108, 6.235669601341726], [52.924346624274946, 6.23371999215692], [52.92435551320954, 6.233600711456737], [52.92437305092755, 6.233365491614247], [52.9243784635512, 6.2332928961499166], [52.92441913794229, 6.232747276223095], [52.92442021392291, 6.23273119243524], [52.92444701714578, 6.232331908312756], [52.924450322576284, 6.2322826037445545], [52.92446397528783, 6.232079174793214], [52.924493509874665, 6.231639049405093], [52.92455090343259, 6.2306441900887135], [52.92458121567918, 6.23022935863989], [52.92460595606181, 6.229888175367797], [52.92462610962797, 6.229621284894818], [52.92464745450975, 6.229315352515273], [52.924650583813076, 6.229261523275657], [52.92465440337996, 6.229188910638767], [52.92465512872017, 6.229179079737471], [52.92470645900492, 6.2282293624105005], [52.924708591462185, 6.228212406600578], [52.924789889523474, 6.227565995845106], [52.92485098779344, 6.226783337678955], [52.92485371464046, 6.226748281642792], [52.92490858111243, 6.225825882144906], [52.9249486821658, 6.225377624924184], [52.92498431347596, 6.224948820324664], [52.92503163288913, 6.22434215114813], [52.92509545910863, 6.223438966133852], [52.92514490055706, 6.222742412495018], [52.92515101671916, 6.222667195881659], [52.92518389274079, 6.222237798953602], [52.92554462798293, 6.217136307971307], [52.92579450474501, 6.213630170666528], [52.92594574189356, 6.213574505762779], [52.9261394087772, 6.213493649520836], [52.926268670663255, 6.213443575064706], [52.9264253857966, 6.21337932739512], [52.926428935931696, 6.213377952397929], [52.926588257699095, 6.213316296888089], [52.92671593749798, 6.213266235904952], [52.9267171250413, 6.213266549758793], [52.92671831479719, 6.213266860931595], [52.92676654907715, 6.213245675905537], [52.92701946431672, 6.213131215379608], [52.92719819002906, 6.213058921088531], [52.92737438084739, 6.2129671413507825], [52.92749517272789, 6.212913765729207], [52.927636093283105, 6.212851490862989], [52.927924643256446, 6.212736673847221], [52.92808590448244, 6.212672507297477], [52.92815191172498, 6.212645322657915], [52.92822641416118, 6.212615056482835], [52.92833036801372, 6.212571561679011], [52.92842618623831, 6.212527213760475], [52.92847993556371, 6.212503812325491], [52.92852378315215, 6.212481531417318], [52.928618428070706, 6.212439168726138], [52.928692326436774, 6.2124066148501305], [52.928759497642, 6.212374811304882], [52.92883971881619, 6.212338897647266], [52.928944261749585, 6.212284273398289], [52.92900935304022, 6.212251745719628], [52.92902044334019, 6.212246424011131], [52.929093365102176, 6.212205641740833], [52.92925311548963, 6.212125976491811], [52.92937322776896, 6.212068166493651], [52.92946274242413, 6.212030790967197], [52.929515511950065, 6.21201001673567], [52.92957261881331, 6.211984594389259], [52.9296619136001, 6.211941325090266], [52.929716533117535, 6.211912941745805], [52.92974565592678, 6.211897802639701], [52.929860217907716, 6.211839409846043], [52.929885503155944, 6.2118269194178435], [52.92990487642407
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff5b5",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_d6eaff363d0d41ce98b336849172806e = L.popup({maxWidth: '300'
});
var html_45e1b6e7fd4b4c3a94ba11eb2e826fcd = $('<div id="html_45e1b6e7fd4b4c3a94ba11eb2e826fcd" style="width: 100.0%; height: 100.0%;">Ooststellingwerf (2, 6%)</div>')[0];
popup_d6eaff363d0d41ce98b336849172806e.setContent(html_45e1b6e7fd4b4c3a94ba11eb2e826fcd);
polygon_df35b439a93e4dc88a5467c1cdbd106b.bindPopup(popup_d6eaff363d0d41ce98b336849172806e)
;
var polygon_712dcb95978b417ab7254aaa4a4200ca = L.polygon(
[[[53.075024750782205, 6.33088403100416], [53.07499671345996, 6.330755051368262], [53.074961418035635, 6.330592694184935], [53.07470848200836, 6.329429181981148], [53.07469778075883, 6.329392481031124], [53.07435644613559, 6.327788233011823], [53.07434299569208, 6.327725031305147], [53.074327680294594, 6.327702465299188], [53.0743043064912, 6.327600655924339], [53.07416434065755, 6.326954288763919], [53.07388908070573, 6.325697137012846], [53.073879546032416, 6.325653583153511], [53.073873118426164, 6.32561375310665], [53.07387129489849, 6.325605610807539], [53.07373703557545, 6.325003802234907], [53.07360463507531, 6.324397127771732], [53.07341350898111, 6.32349590849253], [53.07321474188596, 6.322600979684662], [53.072950350901344, 6.321403071483377], [53.072851759012025, 6.320967875585375], [53.072839214675255, 6.320912441588206], [53.07266889064115, 6.320128012264357], [53.07264536349252, 6.320040412118983], [53.072491732786105, 6.319315689367889], [53.07246559881844, 6.319196997875373], [53.07208989371531, 6.317490550737626], [53.072060494007175, 6.317357019880042], [53.07203088671055, 6.317237480455523], [53.07192281020471, 6.316741878443809], [53.071813264436244, 6.316239563871966], [53.07175186095162, 6.315958036460779], [53.07172073732537, 6.315813682717981], [53.07161203898506, 6.315282713221933], [53.07158795972445, 6.315170858854745], [53.071549140483754, 6.314993232613543], [53.07151643017462, 6.314843549765585], [53.07145028781968, 6.314567818173011], [53.0714199233794, 6.314441223834028], [53.07138960383502, 6.314310019809197], [53.071368645808, 6.314220882968744], [53.07135699591466, 6.314171440617826], [53.0713154200946, 6.3140443242853115], [53.071304545336936, 6.313995778314027], [53.07118619267397, 6.313468775372425], [53.07097677496012, 6.312519148199111], [53.070668317475665, 6.3111425001543795], [53.070625785466476, 6.310952522857692], [53.07059549071986, 6.31081647492298], [53.07055681166261, 6.310638471771897], [53.07047261812388, 6.310257344160436], [53.07030652994019, 6.309484489280142], [53.07004798213705, 6.308275155194859], [53.06989488582169, 6.307609598789013], [53.06989211221739, 6.3075975293287385], [53.06973233363981, 6.306871380601445], [53.06957333177434, 6.306147655111954], [53.06954178369395, 6.305992683201085], [53.069485939469736, 6.305729505040059], [53.06923523505859, 6.304679624001984], [53.06922427901373, 6.304639973478072], [53.06920664256659, 6.30457617636794], [53.06919831970276, 6.304546055855748], [53.06916491608359, 6.304425169961116], [53.06888627731863, 6.303188872344145], [53.06885798055557, 6.303023097948107], [53.068798371677076, 6.3027143732142905], [53.06872375731938, 6.302378268153754], [53.068590767095145, 6.301750356911145], [53.06851264988086, 6.301386564784298], [53.06840082286547, 6.300876866183299], [53.068291261664534, 6.300364368549857], [53.06822382393792, 6.300050249120956], [53.0681310808945, 6.299629849491105], [53.06803669412818, 6.299186784656834], [53.06797823819079, 6.298908232248924], [53.067943577435386, 6.298743031780792], [53.06786083561045, 6.298358773129177], [53.067772171790196, 6.297949477397966], [53.06769494084855, 6.297578705113916], [53.06763130438719, 6.297276655901535], [53.06757722159562, 6.2970227722088135], [53.067558604816476, 6.29693371626963], [53.06752272337477, 6.296762062740718], [53.06745261049954, 6.296439216884625], [53.06738603792838, 6.296122278606364], [53.067303599323694, 6.2957252961199845], [53.067207389058694, 6.295263604922786], [53.067131265983235, 6.294896163711612], [53.06705767842728, 6.294539085652645], [53.06703547885233, 6.294436335405129], [53.066988961844615, 6.294220974773012], [53.0669092772633, 6.293857043381497], [53.066786780181246, 6.293272311150536], [53.066675039317026, 6.292770458868134], [53.066566023930996, 6.292253746958136], [53.06656022655965, 6.29222775637435], [53.0664675664247, 6.2917820292035485], [53.066407101100516, 6.291509154588384], [53.06631592077197, 6.291075351731674], [53.06625187909596, 6.290761750921743], [53.06619884638115, 6.290511024194362], [53.06616505086
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_e618ab8cc28f492dabc884a1e419b695 = L.popup({maxWidth: '300'
});
var html_9040143bcce245bdaf6d71a4d0e1a663 = $('<div id="html_9040143bcce245bdaf6d71a4d0e1a663" style="width: 100.0%; height: 100.0%;">Opsterland (2, 1%)</div>')[0];
popup_e618ab8cc28f492dabc884a1e419b695.setContent(html_9040143bcce245bdaf6d71a4d0e1a663);
polygon_712dcb95978b417ab7254aaa4a4200ca.bindPopup(popup_e618ab8cc28f492dabc884a1e419b695)
;
var polygon_405e16eedb0245759159e3c77598d8be = L.polygon(
[[[53.129004290697836, 6.185205456396789], [53.12878402801594, 6.184637382895723], [53.12866293869319, 6.184552356459142], [53.12863606870793, 6.1845350088165025], [53.12860560950466, 6.184518238956394], [53.12857366425987, 6.184503233623007], [53.12844884344676, 6.184436112392388], [53.12832017489787, 6.184374702051629], [53.128344107083166, 6.184260925641066], [53.128355836304586, 6.184205175154044], [53.12836363044045, 6.184162828850948], [53.128378421498574, 6.184072399539608], [53.128402149669, 6.18393523680231], [53.12842796256485, 6.183748063112858], [53.128445785662684, 6.183632575312069], [53.128451584226525, 6.183582228754377], [53.128450058900256, 6.183549391484616], [53.12844414842142, 6.183531504989477], [53.12829613650106, 6.1831461097744365], [53.1280839742825, 6.182591150810729], [53.12783363136727, 6.18194475237793], [53.12746737123084, 6.18100287901184], [53.127231657575614, 6.180395894190656], [53.12722714266637, 6.180384277599109], [53.12704789095999, 6.179908396571067], [53.12659416100301, 6.178714992277736], [53.1263425693519, 6.178069407443114], [53.12597940787836, 6.177120470984835], [53.12589576165826, 6.176905524243147], [53.1256777016774, 6.1763452019049545], [53.12542936033279, 6.175703677455262], [53.1253709521381, 6.175540854619665], [53.125363412038865, 6.175510884020647], [53.125339312423016, 6.175415059665019], [53.125366876258546, 6.175421432011016], [53.125304143409295, 6.175252122078895], [53.125157695974885, 6.174861239836279], [53.125019276018165, 6.1745121416340325], [53.12488779600366, 6.174167965904283], [53.12479857363469, 6.1745355900756085], [53.12479743913732, 6.174541470618477], [53.12470776702961, 6.1744865547814785], [53.12470977446335, 6.174378045702155], [53.124712020294915, 6.174323395199683], [53.12470855748041, 6.1742801150680435], [53.12470376570965, 6.174233911307572], [53.1246978115513, 6.174170448065007], [53.12469147612318, 6.174110248525987], [53.12468466337076, 6.174051654216709], [53.12467637343959, 6.173990822013972], [53.12466545436866, 6.173900632502742], [53.12466319098861, 6.173859345518153], [53.1246646814945, 6.17381578061165], [53.12466768997637, 6.173777756864613], [53.124671662013796, 6.1737407508338045], [53.12467540409892, 6.173701843180603], [53.12468429694158, 6.173635272127639], [53.124687151171905, 6.173613886712202], [53.1244712872951, 6.173528674515187], [53.12445699168946, 6.173523021964184], [53.1234835748588, 6.173189760904183], [53.12348568477298, 6.173165360101747], [53.12351476626798, 6.172712909268765], [53.123559539796624, 6.172095268447951], [53.123563475922545, 6.1720225594523805], [53.12358395306564, 6.171670368394303], [53.12358780828908, 6.17158107639038], [53.12349506613872, 6.17154751920822], [53.123498419564534, 6.171493727149189], [53.12350250012874, 6.171324742547037], [53.12350295187356, 6.171273572199391], [53.12350132656061, 6.17118418030367], [53.12349832674815, 6.171075419466997], [53.12348703789505, 6.170946685102607], [53.12346231668911, 6.17078182626627], [53.123441534886986, 6.170676941051116], [53.123432137990335, 6.1706380958573135], [53.12341891654253, 6.170576609851723], [53.12340238151293, 6.170508027903092], [53.123368732434855, 6.170398757400292], [53.12330512769661, 6.170225653041943], [53.12322996799953, 6.17003299564402], [53.12316946463769, 6.1698967853887705], [53.12312639872209, 6.1697860175215355], [53.12311419094402, 6.169744014785114], [53.123090760530154, 6.169663432590375], [53.12309105274841, 6.169631036635052], [53.123057967558424, 6.169556405506995], [53.12300122459777, 6.169457984679074], [53.12296663382123, 6.169411649517349], [53.122915813229746, 6.169366814114045], [53.12286272740363, 6.169345420212756], [53.12285311055957, 6.169341542241637], [53.12286629665298, 6.1691703646143194], [53.12284527874964, 6.169163367970837], [53.12262995346609, 6.1691066625935616], [53.12255786587129, 6.169084658383458], [53.12259363836272, 6.1687598909271495], [53.122604759130276, 6.1686462338902315], [53.12262054957527, 6.1684847977101045], [53.12239389134774, 6.167919610924144], [53.12218646
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_a2dfda1c2ae747f4b61cead136be1d1b = L.popup({maxWidth: '300'
});
var html_221ee07411024ecaa7321c85fd803c69 = $('<div id="html_221ee07411024ecaa7321c85fd803c69" style="width: 100.0%; height: 100.0%;">Smallingerland (3, 1%)</div>')[0];
popup_a2dfda1c2ae747f4b61cead136be1d1b.setContent(html_221ee07411024ecaa7321c85fd803c69);
polygon_405e16eedb0245759159e3c77598d8be.bindPopup(popup_a2dfda1c2ae747f4b61cead136be1d1b)
;
var polygon_8c168ee0b00c40269a0a400a2965ec26 = L.polygon(
[[[52.933184922154105, 6.209520416466611], [52.93315226897604, 6.2095380208533415], [52.93315348516466, 6.209554567393132], [52.9330697866076, 6.209632575426412], [52.93302010359534, 6.20967364065344], [52.93298818336949, 6.209704599524205], [52.932961583546586, 6.209730556964362], [52.93293988640776, 6.209746938948276], [52.93291422857116, 6.2097637082542665], [52.93287815544492, 6.20979635790346], [52.93286419469258, 6.209815251476848], [52.93283144494684, 6.209838028968218], [52.932812907131826, 6.2098533847532655], [52.93278906228898, 6.209876017938963], [52.932761453761316, 6.209898386723516], [52.93273545808669, 6.209925337532026], [52.93271259062147, 6.209945668793448], [52.93265203042218, 6.209991137769451], [52.93258717568516, 6.210046833397468], [52.932553855140306, 6.210076500727201], [52.932520309846204, 6.210099619603584], [52.93249784238231, 6.210119289192653], [52.93248586598731, 6.210139469054252], [52.93246900159921, 6.210170190332783], [52.93246155286567, 6.2101857115938675], [52.93245409936488, 6.210197944795396], [52.932444648127145, 6.2102092334145995], [52.93242750523568, 6.21022457166571], [52.93238763087073, 6.210249414576372], [52.93233139593451, 6.210289253647582], [52.93231109904768, 6.2103092173009715], [52.932296747503045, 6.2103287721172435], [52.93227984754834, 6.210352948388503], [52.93226332269971, 6.210374826890241], [52.932245209823265, 6.210393775062334], [52.932224098726024, 6.210408517187523], [52.93215226531471, 6.210457103672532], [52.93213037314741, 6.210474151245645], [52.93211443512682, 6.210494048155432], [52.9321004674463, 6.210511304339902], [52.93208868645199, 6.210530818576091], [52.93206641584463, 6.21055080374015], [52.932033508548905, 6.210581771706833], [52.93200684415301, 6.210597256649814], [52.93198332549194, 6.210606450250693], [52.93197499150245, 6.210613684799037], [52.931969132872595, 6.210618779285437], [52.93194922708107, 6.210635789784487], [52.931912146968486, 6.210665846373897], [52.93189545265903, 6.210682144069568], [52.93188692954665, 6.210690475227171], [52.931868236643446, 6.210712713687645], [52.93184502253985, 6.210742884097154], [52.93182315194319, 6.210764512386765], [52.93179023795767, 6.210792862816622], [52.931755121899776, 6.210819594824971], [52.93172725109919, 6.2108301784289015], [52.93170050370695, 6.210827948418665], [52.931680710664295, 6.210829879326089], [52.931663987261956, 6.210836315332083], [52.93166035778716, 6.21083870135139], [52.931649610815555, 6.210846663630464], [52.93163688295871, 6.210856089918426], [52.93161123597765, 6.21087547534989], [52.931538765380985, 6.210953585855734], [52.93151653605003, 6.210980457574799], [52.931495645014735, 6.210999783867403], [52.93147136839606, 6.2110158781059726], [52.93142275833033, 6.211036585084551], [52.93137139515903, 6.21106192400436], [52.931271285788235, 6.21111879387133], [52.93122191996471, 6.211146401602205], [52.93117199854606, 6.211181553968921], [52.93112428955072, 6.211221908617002], [52.931117963665365, 6.21122547815316], [52.9310622805079, 6.21125692223393], [52.93102413165768, 6.211271251665363], [52.93096607655103, 6.2113039152782195], [52.930896349055146, 6.211337711625443], [52.93081988218059, 6.211372599573826], [52.93077065824172, 6.211390050888131], [52.930743171586585, 6.211397339702469], [52.93070545133728, 6.2114185485988544], [52.93069306414646, 6.211422954804921], [52.930666118794065, 6.211432558567178], [52.93061912113246, 6.211459481419231], [52.9306057644248, 6.211465043889572], [52.93056853274406, 6.211480551325586], [52.93053653391154, 6.211497079013899], [52.93051738277779, 6.211508837958579], [52.9304763523868, 6.2115386102742045], [52.930422040918145, 6.211567595872744], [52.93036793832974, 6.211599216865744], [52.930342404299516, 6.211610008122568], [52.93028929214932, 6.211633468169346], [52.93016285126758, 6.211695593330663], [52.930040795665434, 6.2117564476434], [52.929935331196084, 6.21181175512422], [52.929904876424075, 6.211820727508698], [52.929885503155944, 6.2118269194178435], [52.929860217907716, 6.211839409846043], [52.929745
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fed875",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_c162c38912d24ba2a00689ac0fd96a15 = L.popup({maxWidth: '300'
});
var html_c4148373755b474b8a431ddc4fffdb2d = $('<div id="html_c4148373755b474b8a431ddc4fffdb2d" style="width: 100.0%; height: 100.0%;">Weststellingwerf (3, 25%)</div>')[0];
popup_c162c38912d24ba2a00689ac0fd96a15.setContent(html_c4148373755b474b8a431ddc4fffdb2d);
polygon_8c168ee0b00c40269a0a400a2965ec26.bindPopup(popup_c162c38912d24ba2a00689ac0fd96a15)
;
var polygon_b38b9b0751204e079890e97acd57677f = L.polygon(
[[[53.281483896086264, 5.876350432489802], [53.281409691983185, 5.876542756320584], [53.2814350811341, 5.876645160012425], [53.28138683998888, 5.87669146477699], [53.281326062900234, 5.876730475846292], [53.28124472649578, 5.876774395308161], [53.28109442961543, 5.876828716887195], [53.280982730944025, 5.876870613057629], [53.28090824679273, 5.876911116871735], [53.28086002929209, 5.876944467333256], [53.28080720729678, 5.877005216556281], [53.28057405932319, 5.8773183090909615], [53.28043942234375, 5.87751162043524], [53.28031730234726, 5.877288765802078], [53.28017906566436, 5.877036480639173], [53.28012373103969, 5.876935509475357], [53.28008598685053, 5.87699630898564], [53.280047114356414, 5.877062658176017], [53.279938284625715, 5.877242692760687], [53.27978250012606, 5.877500916116479], [53.279565305607264, 5.877856592152794], [53.27891354504382, 5.878921469399144], [53.27881725737002, 5.879079255161165], [53.278741116354944, 5.879210344495592], [53.27871186414736, 5.879253037124705], [53.27852572597206, 5.87955209648595], [53.27835431023674, 5.879821473576576], [53.27830070693287, 5.879912415142213], [53.27828304078933, 5.879938763443599], [53.27826321868309, 5.879956841910336], [53.27824619641971, 5.879959390706156], [53.278231448587825, 5.879977557300113], [53.278215924974994, 5.87998376678393], [53.278200427185475, 5.880015626187003], [53.27818386908775, 5.880039243836345], [53.27813473088111, 5.8801128304485815], [53.27798607884125, 5.88034384518863], [53.27780147326138, 5.880643092632978], [53.27772413303289, 5.880770369739339], [53.27765111787636, 5.880885972891057], [53.27757433707647, 5.881010511442012], [53.27752572475264, 5.881091432901817], [53.27749358432857, 5.881141601211793], [53.27742626130327, 5.881234195761178], [53.27720793927011, 5.881592564862491], [53.27704546949802, 5.881846302344165], [53.27698634620302, 5.881946319737816], [53.27683271498583, 5.882185495213982], [53.27680099007569, 5.88221577311817], [53.27678250237223, 5.882244658367476], [53.276773319585644, 5.882259919220252], [53.27674567249871, 5.882320600169539], [53.276354011845214, 5.882956578012747], [53.275912601672104, 5.883686609492787], [53.27571816989601, 5.884008965277107], [53.27560612306347, 5.884182046874487], [53.275479731536166, 5.884369083710779], [53.27534363089975, 5.884574505128765], [53.27509241115845, 5.884967718149684], [53.274961280027405, 5.8851705993354155], [53.27491686306212, 5.8852446491040356], [53.27460448906929, 5.8857495305098455], [53.27436037180612, 5.886164562796531], [53.27407843665777, 5.88663493116314], [53.27388783364666, 5.886952928337332], [53.27372653940298, 5.8871590312073865], [53.273315946864486, 5.887827379157787], [53.273146667253236, 5.8880647134015245], [53.27298325844497, 5.888298950233496], [53.27266566195963, 5.888805479307087], [53.27256541089434, 5.888964508165652], [53.27253651699395, 5.889023890911876], [53.27251344331867, 5.889075201473695], [53.27248866116058, 5.889135456219575], [53.27247277343504, 5.889159375150139], [53.27241899934753, 5.8892378794206115], [53.27236551744713, 5.889317450912334], [53.27230427769786, 5.889399825713853], [53.2722025725447, 5.889532617972166], [53.27215698414826, 5.88959643388266], [53.27210041980568, 5.889675612667828], [53.272060669952, 5.889730910095108], [53.27199709472623, 5.88982808035586], [53.27193248482185, 5.889925703951445], [53.27178057851406, 5.890169474430799], [53.2715996055775, 5.8904622488499845], [53.27156490458143, 5.89052204184969], [53.27144699987513, 5.890735477205042], [53.27113744541345, 5.891275864926711], [53.27104359746242, 5.891441372284035], [53.27097952465667, 5.891562658628309], [53.270977993880805, 5.891565554566619], [53.27095394957726, 5.89153327267407], [53.27084262949678, 5.891699638491085], [53.27079270545102, 5.891776683135599], [53.27074738742475, 5.891843993430475], [53.270724340808584, 5.8918757850074055], [53.27068989533609, 5.891915192964102], [53.27068178878425, 5.891928408361216], [53.27067094395516, 5.891947482468142], [53.270658642599564, 5.891966659374631], [53.27065278639668, 5.8
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffcc6",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_33b314c8fe7f477c8898a676d3302d08 = L.popup({maxWidth: '300'
});
var html_c712d32ad20645fcbde0e14cafc07e61 = $('<div id="html_c712d32ad20645fcbde0e14cafc07e61" style="width: 100.0%; height: 100.0%;">Tytsjerksteradiel (4, 2%)</div>')[0];
popup_33b314c8fe7f477c8898a676d3302d08.setContent(html_c712d32ad20645fcbde0e14cafc07e61);
polygon_b38b9b0751204e079890e97acd57677f.bindPopup(popup_33b314c8fe7f477c8898a676d3302d08)
;
var polygon_c769ad4806e141578a00cfc0c65c89a1 = L.polygon(
[[[53.325069178417294, 6.034320682057868], [53.325002595004186, 6.034379293658696], [53.324950471420514, 6.034427421397184], [53.32484772280514, 6.034515880863414], [53.32478324402785, 6.034582358140175], [53.32472969605152, 6.034628048465112], [53.32466740596947, 6.034690355631371], [53.32461637008292, 6.034736698095982], [53.32458087013277, 6.034773159393012], [53.32455082015082, 6.034801943046732], [53.32452394163151, 6.03483919334969], [53.32450107647276, 6.034868715132852], [53.3244796326686, 6.03489948936329], [53.324461439574996, 6.0349291115486015], [53.32444064806984, 6.034968899857776], [53.324417659335424, 6.035014628359533], [53.32438918522258, 6.035072865724805], [53.324349285468884, 6.035168676023886], [53.3243357286332, 6.035203199648682], [53.32432127020443, 6.035261722699741], [53.32430619089177, 6.035307029451502], [53.32429642012964, 6.035362651435175], [53.32429351834815, 6.035414219916895], [53.32428844329056, 6.035515580702107], [53.32428302791402, 6.035613319967717], [53.32427689582041, 6.035712249300344], [53.324268920519664, 6.035816537863839], [53.32426392429957, 6.0359064799445905], [53.32426779476261, 6.036013438342622], [53.324276079585154, 6.036106656350729], [53.3242990195211, 6.03620982033502], [53.32432316358555, 6.036297979209965], [53.32433475568019, 6.0363290671119305], [53.32435204679155, 6.036375434641531], [53.32437112032663, 6.036420880085861], [53.3243930499737, 6.036468170389213], [53.32443844845842, 6.036548981132119], [53.32448135912937, 6.036626152812061], [53.32452138001539, 6.036704451741567], [53.32459506512813, 6.036848302282693], [53.324675114780405, 6.0370049012365135], [53.32475482030072, 6.037160294691983], [53.324798039835926, 6.037243460188857], [53.32484444254092, 6.0373345085509715], [53.32487881064609, 6.037401287055649], [53.32492251632137, 6.0374676524035324], [53.32496221449797, 6.037542345360192], [53.32500508976016, 6.037624321120649], [53.32504770743966, 6.037692471356875], [53.32507908615456, 6.03777358316042], [53.32510927900881, 6.037867884344641], [53.3251347769608, 6.037966287222233], [53.32515347866351, 6.0380603399640975], [53.32516712716467, 6.038156702677058], [53.32517505707774, 6.038248717710678], [53.325176302676944, 6.038416856618604], [53.32517124423927, 6.038615787542085], [53.325162553252014, 6.0388499174602694], [53.32515565221927, 6.039078625880013], [53.32514480200658, 6.039316340314168], [53.32513502167834, 6.039552269020803], [53.325120583677226, 6.039767175870632], [53.325103258063365, 6.040009098966318], [53.325081983838615, 6.040238399736828], [53.32506573346023, 6.040483924953478], [53.32504588002805, 6.040742648293961], [53.32502424308774, 6.04097556026364], [53.32498419928019, 6.041443787643528], [53.324973747648194, 6.041553038007304], [53.32495717719578, 6.041667102477484], [53.32493594427139, 6.041759543997913], [53.32490931554154, 6.041842974123556], [53.32485823796098, 6.0419954298912355], [53.32480140160004, 6.04214608664852], [53.3247395373901, 6.042307546957263], [53.324675152268405, 6.042466612487004], [53.32461688477443, 6.042607655601156], [53.32454746154582, 6.042772722208893], [53.324478407567284, 6.042929373975078], [53.32439640101106, 6.043126244037521], [53.3243244655102, 6.043300305260728], [53.32426727527853, 6.043443148724325], [53.324210071720664, 6.04361300539104], [53.32408596310672, 6.043950334470512], [53.32401797749605, 6.044136398816475], [53.3239859336702, 6.044297858385118], [53.323958562258014, 6.04446413109906], [53.32390743135385, 6.044752248496981], [53.323887956893635, 6.044938331382263], [53.323873885056294, 6.045101009598383], [53.3238590870733, 6.045284687681552], [53.32384353777789, 6.045539804387653], [53.32383448985872, 6.045710288178485], [53.32382328420024, 6.045889173377435], [53.32382034536781, 6.04608605774965], [53.323826746998165, 6.04625415150302], [53.32384430465369, 6.046411429567082], [53.32387692543644, 6.046633561655503], [53.323900950752, 6.046787847589045], [53.32393216373208, 6.046930718699537], [53.32401792282294, 6.047292141411166], [53.32405345059775, 6.0474
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_e25988801b864a839d6966a9aa68eb2a = L.popup({maxWidth: '300'
});
var html_c789937994394fc99d353c01a3bafa3d = $('<div id="html_c789937994394fc99d353c01a3bafa3d" style="width: 100.0%; height: 100.0%;">Dantumadiel (3, 2%)</div>')[0];
popup_e25988801b864a839d6966a9aa68eb2a.setContent(html_c789937994394fc99d353c01a3bafa3d);
polygon_c769ad4806e141578a00cfc0c65c89a1.bindPopup(popup_e25988801b864a839d6966a9aa68eb2a)
;
var polygon_defd5e15d0764c988eb20d3d252aea56 = L.polygon(
[[[[53.375211679718696, 5.850111068652949], [53.37531545331031, 5.849958773410351], [53.37633636166836, 5.8484913469106905], [53.37663829352857, 5.8480611646620915], [53.37668608800056, 5.8479930690937065], [53.37771226524705, 5.8465228250395285], [53.37805932611621, 5.84603087387064], [53.37846951987256, 5.8454392215604445], [53.38301091877081, 5.858531098277638], [53.38060306425852, 5.861465570816728], [53.380575018702025, 5.861503225366409], [53.380550628749525, 5.861543344545966], [53.38053010946367, 5.861585574597577], [53.380513641776815, 5.861629543150439], [53.38050137089565, 5.861674862504213], [53.380493405020786, 5.861721133047638], [53.38048981439272, 5.861767946782173], [53.380490630672426, 5.861814890919598], [53.38049584666222, 5.86186155152184], [53.38100913632899, 5.865077097471749], [53.38101856654582, 5.865122520591759], [53.38103216614431, 5.865166874168188], [53.38104981804884, 5.865209776371948], [53.382106853292385, 5.867474172402033], [53.38353618664399, 5.871348271111364], [53.38450495546026, 5.874317598052985], [53.38506006857838, 5.8770657268638224], [53.38507126159093, 5.877110418327582], [53.38592478305356, 5.879955136270764], [53.38594394929453, 5.880008009689866], [53.385968932086726, 5.880058396229085], [53.38599941535354, 5.880105658409364], [53.387027238468946, 5.881517985186846], [53.387424893222786, 5.883739143790016], [53.38716699273474, 5.886151856984064], [53.38716418009735, 5.886200572541394], [53.387166129506134, 5.886249330271658], [53.38717282239401, 5.88629766578352], [53.3871841950148, 5.88634511870705], [53.387200139050364, 5.886391237078498], [53.38722050264228, 5.886435581645014], [53.38724509183821, 5.886477730048287], [53.3872736724392, 5.886517280847293], [53.38730546457293, 5.886553282467286], [53.387305972230294, 5.886553857341799], [53.38734168357324, 5.88658711116023], [53.387380466336566, 5.886616725577732], [53.38742195113517, 5.886642418532797], [53.3874657428485, 5.886663945313753], [53.38751142438389, 5.8866811008895095], [53.38755856064911, 5.886693721862372], [53.387606702696424, 5.886701688024315], [53.38765539199853, 5.886704923501903], [53.387704164815844, 5.88670339747894], [53.38775255661334, 5.88669712448998], [53.38780010648499, 5.8866861642818895], [53.387846361543666, 5.886670621244798], [53.38789088123464, 5.8866506434178305], [53.38793324153165, 5.886626421079117], [53.387973038975474, 5.886598184933495], [53.38800989451674, 5.8865662039151685], [53.389015555922, 5.885603612616981], [53.39096138647854, 5.8837411173957435], [53.390977120293556, 5.883725371542526], [53.391421032896105, 5.8832608858908575], [53.39467718449563, 5.879853828535524], [53.39469589850425, 5.881062133895147], [53.39237674458305, 5.883731924277797], [53.392344071347374, 5.883773845032963], [53.392316032560444, 5.883818997180987], [53.392292945048226, 5.883866870522455], [53.392272936758516, 5.883914702871891], [53.39112886777234, 5.886649744613388], [53.391117333275574, 5.886680042872519], [53.389499970797296, 5.891381491741571], [53.38948846460321, 5.891419874439656], [53.38948006889565, 5.89145905525268], [53.388883476712536, 5.894913662445099], [53.388880546520504, 5.894932841992471], [53.388344701062714, 5.898962454264254], [53.38826987796031, 5.8995251315945945], [53.38762321832691, 5.9023635284632014], [53.387613600495584, 5.90242106213112], [53.38761074879807, 5.902479324412614], [53.38763453058474, 5.904993624258924], [53.38739877109083, 5.9088631794607895], [53.38684704130088, 5.913969236022098], [53.38684557943233, 5.913985139192724], [53.386593429897715, 5.917309918373544], [53.38659326256682, 5.917383265487401], [53.386784685141606, 5.920069819267495], [53.3867903975056, 5.9201175184709784], [53.387637117517926, 5.925132858738314], [53.388354959428355, 5.930443997569832], [53.388360277705345, 5.930691179728633], [53.38837536733121, 5.931392513319355], [53.38838155914306, 5.931680295513498], [53.38845351662997, 5.935024725860822], [53.38845806584665, 5.935236163738548], [53.38846170249454, 5.935286549715085], [53.388470404782666, 5.935336311568154],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_185a07f8abf140b9a4ce919ac63bf532 = L.popup({maxWidth: '300'
});
var html_57277d6cb2814536977e40038d3f4e99 = $('<div id="html_57277d6cb2814536977e40038d3f4e99" style="width: 100.0%; height: 100.0%;">Dongeradeel (3, 1%)</div>')[0];
popup_185a07f8abf140b9a4ce919ac63bf532.setContent(html_57277d6cb2814536977e40038d3f4e99);
polygon_defd5e15d0764c988eb20d3d252aea56.bindPopup(popup_185a07f8abf140b9a4ce919ac63bf532)
;
var polygon_3a69161c0a654afaaf310ecba1119f1e = L.polygon(
[[[53.465894891007025, 5.673199508015758], [53.46657886883981, 5.674744064628537], [53.46632464455889, 5.677547383176248], [53.46557705119703, 5.67845748293569], [53.46554963088327, 5.678494168471414], [53.46552568252719, 5.678533209198605], [53.46550540707488, 5.678574277533995], [53.465488974653766, 5.678617028881045], [53.46547652314515, 5.678661104521385], [53.46520045859463, 5.679842744372556], [53.46385680811263, 5.685593975208119], [53.462631444314, 5.688979625802052], [53.46261472459884, 5.689035972617415], [53.462604732529606, 5.689093892139416], [53.46201129152766, 5.694369069087091], [53.462008192444564, 5.6944190416091764], [53.46187153141161, 5.705954043385134], [53.4608104611567, 5.714824147983657], [53.46080725054871, 5.714865404180392], [53.46080746245162, 5.714906784572727], [53.46101898482034, 5.719451046351848], [53.46070261629353, 5.724049742862753], [53.46070143841069, 5.724085122758707], [53.46072225550517, 5.733873310340916], [53.459936253346875, 5.755652436481733], [53.459935998245896, 5.755678847718393], [53.46024386302679, 5.774049397462565], [53.460288147458414, 5.776691886647778], [53.46028908576624, 5.776715249483879], [53.46080734945037, 5.78486273946793], [53.461434225933324, 5.7947177033069535], [53.46241767335356, 5.810178227074355], [53.4627474342981, 5.817898514556229], [53.46254432272487, 5.821165617628655], [53.46254460413039, 5.821231902560346], [53.46314227426406, 5.829685874376156], [53.463326991242525, 5.834523291238136], [53.46332763058115, 5.8345358742361215], [53.46390234422695, 5.843593533109394], [53.46390243907107, 5.8435949940341825], [53.464247314579815, 5.848789612862489], [53.46433875724307, 5.853021876138797], [53.46433942299164, 5.853039036324931], [53.464772853401755, 5.860777612271159], [53.465212086422035, 5.869077874540455], [53.46587884239857, 5.8818162408945955], [53.46686831760723, 5.906055603221368], [53.467333954785886, 5.921552965223693], [53.467333987625544, 5.921554021041036], [53.46761575515895, 5.930315197907377], [53.467720036102115, 5.938689382041834], [53.46750269851556, 5.948115215352958], [53.46695726735625, 5.956319712210762], [53.466340212035725, 5.960338713459336], [53.46633592248631, 5.960375871796824], [53.46604457460114, 5.964126834855357], [53.46522746707026, 5.9670937787081995], [53.46423671147724, 5.968886450870387], [53.463564773869905, 5.969442511354769], [53.46340293929303, 5.968322475879614], [53.46339340417697, 5.9682737337197445], [53.46337908041579, 5.96822617800029], [53.463360109340144, 5.9681802779471775], [53.463336678135086, 5.968136486450098], [53.46330901799318, 5.9680952355939], [53.463277401833366, 5.9680569323952675], [53.462954877518555, 5.967703521515287], [53.46291967163951, 5.967668592714812], [53.462881178744816, 5.967637323367526], [53.46283977752372, 5.9676100210981415], [53.462795875277294, 5.967586954503658], [53.462749903911465, 5.967568350510928], [53.46270231568793, 5.967554392144171], [53.46265357877488, 5.967545216724406], [53.462604172641186, 5.967540914518496], [53.46255458333946, 5.967541527851112], [53.46250529872431, 5.96754705068835], [53.46245680365285, 5.967557428697089], [53.462409575214735, 5.967572559779515], [53.46236407803863, 5.9675922950775515], [53.46232075972121, 5.967616440437308], [53.46228004642375, 5.967644758319149], [53.46224233867961, 5.96767697013458], [53.462208007453796, 5.96771275898698], [53.46217739049349, 5.967751772789197], [53.46216862541859, 5.967764160761679], [53.46182601488109, 5.967393960201721], [53.46178459990108, 5.967354077192466], [53.46173888005988, 5.96731921243781], [53.46097248636352, 5.966801649044128], [53.46093576182559, 5.966779089652563], [53.46089723091134, 5.966759776794638], [53.460857179923636, 5.96674385397399], [53.459175695268115, 5.9661579450921725], [53.45920927782779, 5.966013436323674], [53.460486807894455, 5.9661449274428655], [53.46155789266127, 5.966761183070833], [53.46160143242804, 5.966783473628763], [53.46164694188089, 5.966801403212259], [53.46169398547975, 5.966814800229452], [53.46174211300227, 5.966823536466586], [53.4617
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_7c4a0597899841ed9a50dd170e1e991e = L.popup({maxWidth: '300'
});
var html_8e16cce747e249099f4a2aabaae7f6d7 = $('<div id="html_8e16cce747e249099f4a2aabaae7f6d7" style="width: 100.0%; height: 100.0%;">Ameland (0, 0%)</div>')[0];
popup_7c4a0597899841ed9a50dd170e1e991e.setContent(html_8e16cce747e249099f4a2aabaae7f6d7);
polygon_3a69161c0a654afaaf310ecba1119f1e.bindPopup(popup_7c4a0597899841ed9a50dd170e1e991e)
;
var polygon_8ee2fe27a7c94818b8647a5ebe715764 = L.polygon(
[[[53.20983813312905, 5.437989346050762], [53.209644457064186, 5.438459886729576], [53.209633709704086, 5.438485994983495], [53.20947544065938, 5.438877071721935], [53.20947064606092, 5.438888905491809], [53.209469278995904, 5.4388922867023215], [53.2094275949994, 5.438995377449227], [53.209199794016854, 5.439551291747308], [53.20906491054456, 5.439880259799018], [53.20877181790613, 5.440593974728685], [53.20853273873469, 5.441175047562663], [53.208362180960236, 5.441597236384608], [53.20827581277111, 5.44181154557753], [53.20815655026248, 5.442139142792064], [53.20787961076493, 5.442887285759172], [53.20760017046596, 5.44361138068842], [53.20741792819598, 5.444155139567909], [53.20733837927079, 5.444399965243595], [53.20724799486629, 5.444658665295334], [53.20717997247241, 5.44484889031642], [53.20716041226444, 5.4449017417841], [53.20715702070255, 5.444910912381838], [53.20714243579392, 5.444950300076739], [53.207088738622204, 5.445134871542363], [53.20706026041961, 5.445233598227448], [53.20699111346357, 5.445443905833286], [53.206925415986284, 5.4456538292087675], [53.206887011664406, 5.4457830129388975], [53.20686432906753, 5.445862170575253], [53.20683878926308, 5.445923049922264], [53.20676652225674, 5.44607963629116], [53.20668861716353, 5.446243922400654], [53.20664312816159, 5.4463429383584865], [53.20650977516406, 5.446665507350418], [53.20647776122866, 5.446752807414637], [53.206324450318085, 5.447200839617387], [53.20617418443799, 5.447629026790151], [53.20603206895108, 5.448036764404534], [53.205879836791226, 5.448474357182479], [53.205706414215314, 5.448965076492913], [53.205508732954215, 5.449516699218674], [53.205364738511804, 5.449930991211409], [53.20517120145433, 5.4504706386307324], [53.20500971087911, 5.450880617973165], [53.20489723733185, 5.451169055373813], [53.20474412263103, 5.4515559200242985], [53.20463644172421, 5.451851752644251], [53.204447401443986, 5.452368117554514], [53.20427430120093, 5.452832899631024], [53.20414685657501, 5.453179205639054], [53.204127661311354, 5.453231900393913], [53.20409763113173, 5.453314359966563], [53.20409708186081, 5.453315870850923], [53.204072559157304, 5.453383207803902], [53.20403487893998, 5.453487086272432], [53.20397754438702, 5.453645200108129], [53.20393842425309, 5.453753101369246], [53.20391516942388, 5.453817237314482], [53.20390622411595, 5.453842425828953], [53.20382350731755, 5.454075431239434], [53.203746609200905, 5.4542835723224625], [53.20362671933177, 5.454610635889836], [53.203453872995865, 5.455087118798393], [53.203320327234756, 5.4554542634019745], [53.203134288945385, 5.455958059638734], [53.2031043783037, 5.456032509591697], [53.203081746217435, 5.456090239252748], [53.203031023475816, 5.456213128453047], [53.202994545393814, 5.45627004201215], [53.202954456394025, 5.456324077944852], [53.2029041405676, 5.456380191821049], [53.202837476643126, 5.456457633788714], [53.20278579256338, 5.456502102939937], [53.202689265512156, 5.456571235713113], [53.20263929539446, 5.456604108995106], [53.20242382550475, 5.4567205052419085], [53.20211469777515, 5.4568850856936235], [53.201712483632136, 5.457102233395263], [53.20112233502518, 5.457427969727227], [53.20083922815991, 5.457578082098523], [53.20079095071449, 5.457604505427468], [53.20068920853286, 5.457647362268686], [53.20058647851668, 5.4576894245026475], [53.20051495616888, 5.457714776574229], [53.2003820022692, 5.457766202070195], [53.20025123403413, 5.4578136194000315], [53.2002246120333, 5.457824379838925], [53.20017946684657, 5.457857900696788], [53.200147837195935, 5.45788886981026], [53.20012379290945, 5.457917157849942], [53.200070984737344, 5.458007590173755], [53.20002115404246, 5.458123809942158], [53.20009778798237, 5.458221413536262], [53.20011537765825, 5.458334691843252], [53.2001432039622, 5.4584283538511755], [53.20017030171865, 5.458538834968503], [53.20017771244952, 5.4586037322896335], [53.200179131087765, 5.458680292284871], [53.200195321583614, 5.459028342747534], [53.20020917270758, 5.459215823980288], [53.200223818813306, 5.459380500368], [53.2002
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#feeb9d",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_4187424cab574f548a0b483915d17b32 = L.popup({maxWidth: '300'
});
var html_ed20401f41374ce88d066cd38f7363eb = $('<div id="html_ed20401f41374ce88d066cd38f7363eb" style="width: 100.0%; height: 100.0%;">Harlingen (5, 14%)</div>')[0];
popup_4187424cab574f548a0b483915d17b32.setContent(html_ed20401f41374ce88d066cd38f7363eb);
polygon_8ee2fe27a7c94818b8647a5ebe715764.bindPopup(popup_4187424cab574f548a0b483915d17b32)
;
var polygon_330d464077b44a799316728b079954c4 = L.polygon(
[[[53.34575987910701, 6.2644403476487485], [53.34560872016441, 6.26560761967956], [53.34560734031609, 6.265619363881715], [53.34547941801557, 6.266831674044096], [53.34547811957323, 6.266845932831891], [53.34534250850742, 6.2686153095215], [53.345341907250436, 6.268624191420567], [53.345209107156926, 6.270884362606905], [53.34500409100883, 6.272409530264661], [53.3448463808085, 6.273239404526662], [53.34478574401875, 6.273558476539974], [53.3447762114854, 6.273588839679805], [53.344522873973226, 6.274395773369355], [53.34447116338438, 6.2745604825586465], [53.34407931887651, 6.275597342791173], [53.34309011442218, 6.27767932045665], [53.34308090006338, 6.277699898479892], [53.34240116060968, 6.279314585392467], [53.342187533151694, 6.279822046683271], [53.34216655598584, 6.279882398702693], [53.34180517669001, 6.281185216417156], [53.34180071710401, 6.281202483673193], [53.341503763411914, 6.282443258802937], [53.341497508864876, 6.2824734860406455], [53.34121565998473, 6.28408480988579], [53.341211522133975, 6.284113264313142], [53.34094919443267, 6.286371425519061], [53.340863615041066, 6.286352239437666], [53.34040876772846, 6.286250268170416], [53.3390693133891, 6.285949995338088], [53.33863812979271, 6.285853344068522], [53.338609367837996, 6.285846899447867], [53.33727479030078, 6.2855477498841825], [53.33681855341963, 6.285445482062089], [53.3363762498783, 6.285346343069739], [53.33632964790625, 6.285335905868119], [53.33629491602774, 6.285328120080934], [53.33548190456316, 6.285145902493344], [53.33502060306914, 6.285042515970645], [53.3336859623411, 6.2847434108890345], [53.3332271314862, 6.28464058086012], [53.33248985604563, 6.284475370769359], [53.33189150668553, 6.284341284516116], [53.33154367856537, 6.284263336901821], [53.33149337808511, 6.284252095834119], [53.331437305974674, 6.284239549857192], [53.33141530054554, 6.284234625004113], [53.3309600078391, 6.284132544206995], [53.33091747626664, 6.284123014125279], [53.330101736173305, 6.283940260936832], [53.32964391733543, 6.283837694442622], [53.329003687003585, 6.283694259606402], [53.32887238839625, 6.283664839590718], [53.328425530724886, 6.2835615883794596], [53.328305197734466, 6.2835337800041495], [53.32829253549578, 6.283530845759175], [53.32826817883964, 6.283525221389903], [53.32804293666331, 6.283473183834266], [53.3279001005245, 6.28344018804904], [53.32785975026109, 6.283430481173304], [53.32712274307826, 6.283253284727051], [53.32711634786448, 6.28325179150234], [53.32696630951426, 6.283217796387554], [53.326707033612244, 6.283159047249714], [53.32650458631151, 6.283112911497704], [53.32645259598522, 6.283100972475487], [53.32619204694955, 6.283039116612165], [53.326185902642884, 6.283037698785784], [53.326059470780244, 6.283009362563755], [53.325947824692115, 6.282984330877752], [53.325567754300806, 6.282897585787833], [53.32540177654515, 6.282856990597649], [53.3252689058525, 6.282824020019796], [53.32526107106787, 6.28282214277011], [53.3249714306252, 6.282755206409508], [53.32472132572522, 6.282696756244619], [53.32470220069415, 6.2826922837710555], [53.32469122249212, 6.282689846343607], [53.32462045793453, 6.282674967879334], [53.32426905568593, 6.282594920710345], [53.32303434028945, 6.282313988555181], [53.323029484631746, 6.282312909132756], [53.322917784917884, 6.282288660499118], [53.322475597569, 6.2821855515037885], [53.32159105071417, 6.281979266691299], [53.32159049963246, 6.281979138502471], [53.32113093694555, 6.281872512249793], [53.32097276456199, 6.281835807824855], [53.32097029586179, 6.281835241540424], [53.32067555238294, 6.281768416970366], [53.31992596481595, 6.281598460814422], [53.319901540384116, 6.281593559321256], [53.319783540239854, 6.281572922720451], [53.31974646683012, 6.281564884884437], [53.3195148823543, 6.281513320736784], [53.319428140506865, 6.281494017094762], [53.319337970015866, 6.281472491986246], [53.31899405928827, 6.281390382141078], [53.31895700959851, 6.281383003636174], [53.31884307121489, 6.281364757352574], [53.3186413736887, 6.281319069168974], [53.31847181443588, 6.2812
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff9bf",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_d736834402304ec09cf24fdebccdc8a1 = L.popup({maxWidth: '300'
});
var html_02f9ea7af1ee4c4bb4723fb133a6381c = $('<div id="html_02f9ea7af1ee4c4bb4723fb133a6381c" style="width: 100.0%; height: 100.0%;">Kollumerland en Nieuwkruisland (4, 4%)</div>')[0];
popup_d736834402304ec09cf24fdebccdc8a1.setContent(html_02f9ea7af1ee4c4bb4723fb133a6381c);
polygon_330d464077b44a799316728b079954c4.bindPopup(popup_d736834402304ec09cf24fdebccdc8a1)
;
var polygon_da07266b6578475c96fe4104c935f644 = L.polygon(
[[[[53.47193300178735, 6.0595555504378], [53.47201860868304, 6.0595160007165125], [53.47180487209525, 6.060001034817661], [53.47060816348886, 6.062716734966402], [53.46901875523744, 6.0641774176009555], [53.46898297186578, 6.0642138440515305], [53.46895109026047, 6.064253730129705], [53.46892344292575, 6.064296659849851], [53.46890031820517, 6.064342185483152], [53.46888195727441, 6.0643898322271195], [53.468868551625924, 6.064439103157472], [53.46886024107184, 6.064489484410729], [53.46874972048504, 6.065468646880935], [53.46621893860135, 6.0650373062714085], [53.465845814990814, 6.0646536651819805], [53.4669766249255, 6.06420737250214], [53.467022632191394, 6.064186469703], [53.467066294621404, 6.064161029818327], [53.4671071662308, 6.064131312700821], [53.467144829541326, 6.064097621892477], [53.46717889984554, 6.064060301524084], [53.467209029136356, 6.064019732800146], [53.46723490966167, 6.06397633010511], [53.4684890712322, 6.0616086871474995], [53.46901444017756, 6.060903166391211], [53.47193300178735, 6.0595555504378]]], [[[53.4750862538122, 6.058098743652412], [53.47515988273995, 6.058064724884541], [53.47500007101985, 6.0583722429294316], [53.4750862538122, 6.058098743652412]]], [[[53.51529009773884, 6.389837834905169], [53.51436839268511, 6.390691584619445], [53.51419366395357, 6.390739785728176], [53.513437290892746, 6.390948440709099], [53.5126749945378, 6.390384043897177], [53.51263560293228, 6.390357674628782], [53.51259389120519, 6.390335154221938], [53.51255023426769, 6.390316685093387], [53.51250502451479, 6.390302433246382], [53.5124586682984, 6.3902925267786275], [53.51241158227505, 6.390287054730917], [53.512364189660865, 6.390286066286825], [53.51231691642766, 6.390289570330631], [53.51227018747422, 6.390297535367473], [53.51222442280729, 6.390309889806424], [53.51218003376645, 6.390326522603964], [53.51213741932694, 6.3903472842620515], [53.512096962513645, 6.390371988171841], [53.51205902695837, 6.390400412290946], [53.51156785530583, 6.390806171411768], [53.51082264212277, 6.389608734801434], [53.510796785021185, 6.389571128574035], [53.51076760666882, 6.389536036669059], [53.510735350158484, 6.389503751446714], [53.510700284227916, 6.389474541883978], [53.510662701020955, 6.389448651333665], [53.510622913653506, 6.389426295496997], [53.50930999240396, 6.388765530882528], [53.50785403764404, 6.382132529455669], [53.50684553317898, 6.372059818235013], [53.506840108089655, 6.372021030627502], [53.50683166372858, 6.371982786636383], [53.50574219523144, 6.367828747985116], [53.505726015709016, 6.3677781719312145], [53.505704563731776, 6.367729596970107], [53.5056780812535, 6.367683570971816], [53.50564686696627, 6.367640613056982], [53.50561127293156, 6.367601207741769], [53.50557170060938, 6.367565799473082], [53.502841320358385, 6.365372286463799], [53.50240659272257, 6.364417873156026], [53.50490618145486, 6.35926451801928], [53.504924253259794, 6.359222457718269], [53.50493840245331, 6.359178920844499], [53.50601742060145, 6.355256220113671], [53.50604479259424, 6.355156711003192], [53.50605652308993, 6.355102442386275], [53.5066787812642, 6.351180026579947], [53.506684482548415, 6.35112345598349], [53.506683724490166, 6.3510666038738295], [53.50626118956552, 6.3450592741120815], [53.50625709394488, 6.345021558247238], [53.506208396878186, 6.344690652781338], [53.50591918563231, 6.34272540952241], [53.505912108539164, 6.342687522451114], [53.50590213412617, 6.342650293074216], [53.504635211329614, 6.338559343017373], [53.504621509649816, 6.338520765110462], [53.504604697874164, 6.338483437438014], [53.50352110176084, 6.336318819977605], [53.503510640517234, 6.336299040780712], [53.501589295856256, 6.332855067796914], [53.500822590702995, 6.330472335026986], [53.50085659867049, 6.329443361381655], [53.50090556174612, 6.327961893415878], [53.50090908502549, 6.327855290114307], [53.50090889590105, 6.327817285124096], [53.500905820615685, 6.327779404288982], [53.50090300887829, 6.327755891893008], [53.50054509797823, 6.324762958476599], [53.50029365354688, 6.319857923685882], [53.50
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fee692",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_7fd9ef28f3534cc99f63a177f8170de0 = L.popup({maxWidth: '300'
});
var html_f084a867388b4b6cafe91ae5e3121181 = $('<div id="html_f084a867388b4b6cafe91ae5e3121181" style="width: 100.0%; height: 100.0%;">Schiermonnikoog (2, 17%)</div>')[0];
popup_7fd9ef28f3534cc99f63a177f8170de0.setContent(html_f084a867388b4b6cafe91ae5e3121181);
polygon_da07266b6578475c96fe4104c935f644.bindPopup(popup_7fd9ef28f3534cc99f63a177f8170de0)
;
var polygon_22cf229fed0a4b6fb40aac330377244b = L.polygon(
[[[[53.25455860028397, 5.2555114077055745], [53.253784176804835, 5.259036185307247], [53.25254344032144, 5.263469889456295], [53.2525313995101, 5.263524535614219], [53.25252554018863, 5.2635801849813815], [53.25236569937922, 5.266845153416133], [53.25220184693421, 5.267338858938373], [53.25211087134121, 5.265263775950789], [53.25210760136635, 5.262080717157426], [53.252105025452224, 5.262030540167252], [53.2520974268196, 5.261980875023952], [53.252084882195405, 5.2619322232194605], [53.2520675182485, 5.2618850760135585], [53.252045510310694, 5.261839909473398], [53.25201908060632, 5.261797179666436], [53.25198849600832, 5.261757318055302], [53.251954065343554, 5.261720727141131], [53.25191613627435, 5.261687776399311], [53.251875091788094, 5.261658798548731], [53.25183134632994, 5.261634086192156], [53.25178534161803, 5.261613888861684], [53.251737542183214, 5.261598410499107], [53.25168843067851, 5.261587807396614], [53.25098950328609, 5.261473314175499], [53.250651822188125, 5.261193025645646], [53.25058093833399, 5.261134189271962], [53.25043835172284, 5.259927257733124], [53.24993466886504, 5.255663808859628], [53.249849843099696, 5.25267398135802], [53.2502414407274, 5.249908626836014], [53.25103105546529, 5.248697144105266], [53.25234347638244, 5.2486929253372985], [53.25239483238559, 5.2486901149025105], [53.252445627966125, 5.248682043558046], [53.25249532563821, 5.248668796709628], [53.25254339953335, 5.248650514526802], [53.25258934096483, 5.248627390459752], [53.25263266381025, 5.248599669192331], [53.25267290965542, 5.2485676440529865], [53.25270965264494, 5.248531653910939], [53.25274250398836, 5.248492079590491], [53.25336992489284, 5.247651814596112], [53.254287263955035, 5.247903703198259], [53.25508834187034, 5.250200826430741], [53.25493201921116, 5.253811796696817], [53.25468396141696, 5.254940828267383], [53.25455860028397, 5.2555114077055745]]], [[[53.2946547841704, 5.159351500691284], [53.295743174863404, 5.159644939741725], [53.29651170692961, 5.159852193558006], [53.296484648877716, 5.159869488531998], [53.295508806657075, 5.1600871514143325], [53.294803357305845, 5.160244502813853], [53.2942514699249, 5.160032633927113], [53.29276413722555, 5.159461648733198], [53.292762956360434, 5.158841551797027], [53.2946547841704, 5.159351500691284]]], [[[53.41005849770674, 5.47559186606592], [53.40969022865513, 5.476931088323671], [53.409459118992494, 5.47705228910617], [53.408764107134964, 5.476062844268292], [53.40791695970415, 5.472780299312327], [53.40791206409665, 5.472762669423449], [53.407359620096194, 5.470905713560811], [53.407330831123375, 5.470808943839693], [53.40667830156471, 5.468615565708126], [53.406282250893035, 5.466643756282099], [53.40627854463461, 5.4666268288381135], [53.405575893079096, 5.463664313477331], [53.40521413227165, 5.460770671782554], [53.40482657747149, 5.457465056662207], [53.40466648718227, 5.455854604867869], [53.40464326029576, 5.455620950589169], [53.404467505781156, 5.4538529222172745], [53.4044892371747, 5.452731124711095], [53.40467558024402, 5.451081152057839], [53.40467867580161, 5.451032974400662], [53.404706532795075, 5.449277686018612], [53.40470603496646, 5.449246077629033], [53.40467335453875, 5.448556640670813], [53.40465687029993, 5.448208883794033], [53.404627451274905, 5.447588250450118], [53.404696626939085, 5.444892713520334], [53.40469609514212, 5.444853506713541], [53.404419969819884, 5.439627087818351], [53.404595577238396, 5.437081811804614], [53.40459640237333, 5.437028409309296], [53.40424762915649, 5.427850784728228], [53.404252995740386, 5.4277474321707775], [53.40430486748512, 5.426748458228085], [53.404692413296985, 5.419284892666318], [53.4046930317799, 5.419251602601139], [53.40463076274579, 5.415023254624704], [53.40460972509305, 5.413594703216496], [53.404600274160245, 5.41295294229661], [53.40460003467896, 5.412573038683106], [53.40459986084708, 5.412297278683437], [53.404598152176895, 5.4095867120644], [53.4046197245106, 5.40874814092547], [53.40466946365183, 5.406814654781576], [53.404727396475586, 5.404562659487047],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fdaa48",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_c1562d9b88984013be3a45e0b218b7b2 = L.popup({maxWidth: '300'
});
var html_ed948907997845eba4dcdd39089d4055 = $('<div id="html_ed948907997845eba4dcdd39089d4055" style="width: 100.0%; height: 100.0%;">Terschelling (2, 40%)</div>')[0];
popup_c1562d9b88984013be3a45e0b218b7b2.setContent(html_ed948907997845eba4dcdd39089d4055);
polygon_22cf229fed0a4b6fb40aac330377244b.bindPopup(popup_c1562d9b88984013be3a45e0b218b7b2)
;
var polygon_406b2995a196433096a2a3100323e97b = L.polygon(
[[[[53.295743174863404, 5.159644939741725], [53.2946547841704, 5.159351500691284], [53.292762956360434, 5.158841551797027], [53.292758702623274, 5.156607825556846], [53.292756630070436, 5.156563289694052], [53.29243634749576, 5.153057373527685], [53.29281592779627, 5.150371920187414], [53.29282028201786, 5.150325745107803], [53.292820338922766, 5.150279365220086], [53.292816098021355, 5.150233179594855], [53.29280759580399, 5.15018758563119], [53.29249407466455, 5.148853117223442], [53.2924914084605, 5.148842310515585], [53.292141166836394, 5.147487719969363], [53.29212370188967, 5.147433245580077], [53.29210012897376, 5.147381122638032], [53.29143799709352, 5.146115365781446], [53.2914154592796, 5.146076616782182], [53.291389541550664, 5.146040042073336], [53.28987704556708, 5.144096564852228], [53.28798527830324, 5.140443416452684], [53.28644811161107, 5.13716838388221], [53.286439442301926, 5.137150816584368], [53.28469051029984, 5.133775117039892], [53.28317353497084, 5.129481579169042], [53.282649529449806, 5.127953361110129], [53.28244844020839, 5.126451031544452], [53.28244712257906, 5.1264418377909315], [53.282127921031034, 5.124352950845987], [53.282163000986344, 5.122231379151409], [53.28232867070389, 5.120958727628396], [53.28243074244527, 5.120174626834062], [53.28337815368462, 5.118714621800031], [53.28340343294244, 5.118670994795331], [53.28560614723333, 5.11438489593397], [53.28612374782612, 5.113589000701716], [53.28749380537031, 5.111482314035326], [53.28810133857393, 5.111548409569888], [53.28893187059216, 5.113083655938952], [53.28921179822027, 5.113641478800509], [53.28963553138475, 5.114485868644885], [53.29101203404351, 5.118960954676816], [53.29103647870919, 5.119024610552684], [53.29245532792173, 5.122078837902841], [53.29247695675715, 5.122120221101264], [53.29250235179391, 5.122159406146133], [53.29253129154914, 5.122196051284976], [53.29256352362468, 5.122229836917123], [53.29259876690841, 5.122260468381098], [53.29263671402594, 5.12228767852451], [53.29267703402139, 5.122311230034025], [53.29413116208555, 5.123071865030063], [53.29537910421954, 5.124024366277826], [53.297194506054886, 5.125409985423349], [53.298894346873205, 5.127343148189414], [53.29992209615952, 5.129125976327714], [53.2998740397055, 5.132645912924335], [53.299875023438084, 5.132684820744028], [53.30004444425185, 5.135319802997208], [53.30021620913329, 5.1401433302034345], [53.29894420802638, 5.145358727444268], [53.29893477245873, 5.145408062528125], [53.29893033437788, 5.145458095356091], [53.298772025892816, 5.149597959277943], [53.298772258255944, 5.14964150259999], [53.29910914272855, 5.15652610536356], [53.29865119774167, 5.158484673158044], [53.29651170692961, 5.159852193558006], [53.295743174863404, 5.159644939741725]]], [[[53.30105231611505, 5.099383420536489], [53.30080299269759, 5.0986395097366115], [53.30078623911882, 5.098596284621974], [53.30076555417225, 5.098554796962093], [53.30025981159494, 5.0976482820209], [53.30023664959185, 5.0976107568184], [53.30021027133028, 5.097575418361636], [53.30018088199294, 5.097542541529973], [53.30014871018409, 5.097512382055085], [53.29938724410355, 5.096859186187986], [53.29938213765126, 5.096854864763887], [53.29881576138757, 5.0963820247955205], [53.29842429217624, 5.095918504319968], [53.29839675733769, 5.095888474276736], [53.29836686893257, 5.0958607857580045], [53.29727987931152, 5.09493316702005], [53.29683421771577, 5.094361937252231], [53.29626587900617, 5.0933111719071205], [53.29599593009603, 5.092507500957651], [53.29600657800135, 5.092451350652432], [53.29617244208979, 5.092278360539105], [53.29640834472491, 5.092192318276325], [53.296451694048464, 5.092174155813423], [53.29649314645155, 5.0921520032246566], [53.2965323356543, 5.092126056253749], [53.2965689153748, 5.092096544172174], [53.29660256238896, 5.092063727753277], [53.29663297938652, 5.092027896968042], [53.296659897598154, 5.091989368422866], [53.296683079170364, 5.091948482561972], [53.29710893726282, 5.091107563736949], [53.297132352072616, 5.091053690114549], [53.29714928693382,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_bc4e87caf9ef45689dfbc17260b9314f = L.popup({maxWidth: '300'
});
var html_f04cadfd19204fb1a106708416c2c4ed = $('<div id="html_f04cadfd19204fb1a106708416c2c4ed" style="width: 100.0%; height: 100.0%;">Vlieland (0, 0%)</div>')[0];
popup_bc4e87caf9ef45689dfbc17260b9314f.setContent(html_f04cadfd19204fb1a106708416c2c4ed);
polygon_406b2995a196433096a2a3100323e97b.bindPopup(popup_bc4e87caf9ef45689dfbc17260b9314f)
;
var polygon_4464dc3461ef4a21a553775bb7f7217d = L.polygon(
[[[53.37332465989894, 5.852787503939816], [53.3726815166471, 5.853689945758588], [53.37258642958759, 5.8538095455246575], [53.372398731815274, 5.854058896923892], [53.372186333323754, 5.854377495462308], [53.372178688266864, 5.854388696230421], [53.37161495189858, 5.855215102577823], [53.371519654914984, 5.85535371404308], [53.37126057253685, 5.855730595125918], [53.37094964568407, 5.856180929106106], [53.37064478534462, 5.856598225466993], [53.37050301732875, 5.8568121636700745], [53.370345747585354, 5.857049517474567], [53.370253614008405, 5.85717588176254], [53.370121252869076, 5.857357437293496], [53.36999195431945, 5.857534789744228], [53.36972859538855, 5.857896002937669], [53.36948519479387, 5.858265633285171], [53.368940478868915, 5.859053221063307], [53.3686608508673, 5.8594651513041605], [53.36798027934038, 5.860476587598827], [53.367247726039686, 5.861550273689842], [53.36664230125065, 5.862435926764554], [53.36595612641499, 5.863446862194752], [53.36556503848659, 5.86402882587451], [53.3653382759931, 5.864371515728814], [53.36531753927239, 5.864393924033894], [53.36529901263954, 5.864402791848536], [53.365287982447434, 5.86439047158981], [53.36512592214824, 5.864642497573906], [53.364994916526506, 5.8648192322142965], [53.364907652753004, 5.864814538451411], [53.36482154478504, 5.864817503167783], [53.36480853469291, 5.8651204067710845], [53.36483376287823, 5.865091560395614], [53.3647024170133, 5.867358793386248], [53.36470198328744, 5.867476347954564], [53.36470075605525, 5.8678128053214476], [53.364732695067595, 5.867820522524164], [53.36472515823113, 5.868078585826399], [53.36471483326234, 5.868267547874881], [53.36464767725858, 5.86828108252315], [53.36465910442571, 5.868295106040772], [53.364665344481296, 5.868316445789094], [53.364659329741244, 5.8684049314865305], [53.3646346398017, 5.868949956543376], [53.36460977551125, 5.8695333289603475], [53.364597483858255, 5.869880550888275], [53.36458901152052, 5.870119870441313], [53.364573497120745, 5.870568678295353], [53.36456667571983, 5.870893113317734], [53.364538349461405, 5.871026066822598], [53.36459634775121, 5.871064348201029], [53.36459195363948, 5.8711292822099255], [53.36457166164369, 5.871429201401665], [53.364571225447655, 5.871660214517911], [53.36452961945948, 5.871694776057812], [53.36448872543429, 5.871728760600261], [53.364523696888945, 5.871826734331474], [53.36459477364484, 5.872033166368012], [53.36464305580219, 5.872181372547079], [53.36468135001484, 5.8723219712105195], [53.36469641376329, 5.872456720871266], [53.364706311692984, 5.8725466618117155], [53.36470261795174, 5.872676061979042], [53.36468106790949, 5.872721319355027], [53.36458302636596, 5.872862513413817], [53.364486969429045, 5.873001655331915], [53.36424336182599, 5.873337415485776], [53.36391362877761, 5.873804460611684], [53.363766206301804, 5.874009141832543], [53.36370317092989, 5.8740966496933], [53.363321006882416, 5.874623369438782], [53.36310764445297, 5.874922261702559], [53.36295866243234, 5.875125475458069], [53.36283154144671, 5.875304391845639], [53.36261363497072, 5.875619973079301], [53.36236446267096, 5.875972208203667], [53.3622898376148, 5.876061245443828], [53.36227383506458, 5.876072254103275], [53.362211275535536, 5.876115314082691], [53.36214271812824, 5.876157389910486], [53.36207699858155, 5.876164303943739], [53.36199191824945, 5.8761132281167985], [53.36197733473205, 5.876104470257073], [53.36175342305552, 5.875909782471931], [53.361651420131956, 5.875828608924292], [53.36159988044125, 5.875775587339589], [53.36147637871766, 5.875733494802566], [53.361152124476604, 5.875630348458489], [53.361046871332384, 5.875594982124947], [53.36103142396478, 5.875621888271103], [53.360977626502645, 5.875715606124969], [53.36105464002865, 5.875947494218196], [53.361069121537525, 5.876001190891142], [53.36106864955723, 5.876039998949734], [53.361062433128524, 5.8760772684979665], [53.361058935002774, 5.876084634451025], [53.36104090877673, 5.876122626081722], [53.3610101075596, 5.876171182263751], [53.36094045128508, 5.876297764153733], [53.36
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_fc228e08554e4a5fb88b86a4304c2a50 = L.popup({maxWidth: '300'
});
var html_52a90c5d55904916ae009ea66c32ebda = $('<div id="html_52a90c5d55904916ae009ea66c32ebda" style="width: 100.0%; height: 100.0%;">Ferwerderadiel (0, 0%)</div>')[0];
popup_fc228e08554e4a5fb88b86a4304c2a50.setContent(html_52a90c5d55904916ae009ea66c32ebda);
polygon_4464dc3461ef4a21a553775bb7f7217d.bindPopup(popup_fc228e08554e4a5fb88b86a4304c2a50)
;
var polygon_939f97267cec4a94ab1b80bc97b7807d = L.polygon(
[[[[52.95446367289039, 5.408531037716525], [52.95426090139331, 5.407874904035726], [52.954825511951356, 5.407523081551722], [52.95494576594951, 5.407578899118848], [52.954993013232674, 5.407597967674468], [52.955041955782946, 5.407612128972177], [52.9550920853974, 5.40762123596584], [52.95514288154707, 5.40762519409151], [52.95519381678187, 5.407623962249347], [52.95524436220754, 5.407617553230383], [52.95529399297743, 5.407606033583708], [52.955342193742396, 5.407589522925441], [52.95538846400197, 5.407568192696684], [52.95574827778572, 5.407379527900801], [52.9559454244806, 5.407571827798478], [52.95613133781713, 5.407927885326217], [52.955976449558484, 5.408908635357154], [52.955971128261126, 5.408958363789995], [52.9559708014285, 5.409008375052916], [52.95597547233054, 5.409058168786583], [52.95598509423521, 5.409107246808029], [52.956083428067075, 5.409502847323309], [52.95609223525207, 5.409538278942908], [52.95610609832982, 5.409584425958679], [52.956124338997654, 5.409629024277326], [52.95614037007444, 5.409659470904519], [52.9561467878558, 5.409671659717478], [52.95617323642333, 5.409711936326874], [52.956203439074315, 5.409749480059546], [52.9562371153189, 5.4097839422495495], [52.956273952408225, 5.409815002849012], [52.9563136082389, 5.409842373400383], [52.95635571453009, 5.409865799715323], [52.95639988024369, 5.409885064235335], [52.956445695215905, 5.409899988052207], [52.956492733966385, 5.409910432569529], [52.95654055964965, 5.40991630078982], [52.956588728112024, 5.40991753821534], [52.95663679201646, 5.409914133354209], [52.95668430499695, 5.409906117827126], [52.95673082580386, 5.409893566073714], [52.9567759224018, 5.4098765946612035], [52.956819175981934, 5.4098553612018785], [52.95686018485137, 5.4098300628893465], [52.95689856816369, 5.4098009346672145], [52.95749840527068, 5.4092983984511465], [52.9575293187294, 5.409270216739084], [52.9575577683133, 5.409239549623133], [52.95758355489227, 5.409206611754803], [52.95795646222654, 5.408686879988288], [52.95978322013656, 5.408434899283802], [52.960077232447425, 5.411172995041629], [52.96008479807174, 5.411221174597558], [52.960097021543426, 5.411268387890396], [52.96011378656798, 5.41131418573131], [52.9601349336424, 5.411358132398126], [52.96016026157272, 5.4113998097808], [52.96018952938817, 5.411438821359332], [52.96022245863379, 5.411474795976273], [52.96025873601963, 5.411507391367923], [52.96029801640146, 5.41153629742065], [52.960339926064414, 5.411561239121308], [52.960619223211296, 5.411709511073901], [52.96139008338477, 5.412118741688575], [52.96328538503444, 5.413124910492954], [52.96333134604737, 5.413146395793685], [52.963379247752684, 5.413163112835441], [52.96342859694813, 5.413174889497363], [52.9634788855279, 5.4131816045253895], [52.96352959571418, 5.413183188780711], [52.96358020538821, 5.413179625951626], [52.96363019346615, 5.413170952721492], [52.96367904526417, 5.413157258391025], [52.963726257797745, 5.413138683958851], [52.96467532758285, 5.4127084884247685], [52.9678337814051, 5.411761503481357], [52.96787816604808, 5.411745884515081], [52.96792088596195, 5.411726162507091], [52.96796156282793, 5.411702512111436], [52.96948469262392, 5.410718228019252], [52.97039520873853, 5.410491880897907], [52.97051066162993, 5.410463180220127], [52.970942876516716, 5.410355735009817], [52.97099110178201, 5.410341130341056], [52.9710376122252, 5.41032174603718], [52.971081935491334, 5.410297778963052], [52.971123621438174, 5.410269472525645], [52.97116224670782, 5.410237114202031], [52.97119741902628, 5.410201032619795], [52.97122878118734, 5.410161594219524], [52.97125601468035, 5.410119199533283], [52.971278842924924, 5.410074279116854], [52.971297034079925, 5.410027289177055], [52.97131040339798, 5.409978706938558], [52.97139447307927, 5.409599433133757], [52.97205109337038, 5.409598570897714], [52.9721037024817, 5.409598501814451], [52.97215443785903, 5.409595854100541], [52.97220464264762, 5.409588071549216], [52.972253107586404, 5.409575414946181], [52.972253798515375, 5.409575234510304], [52.972301397959626, 5.4
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffcc6",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_4ace2b6460764125a4bd6437fb8a7416 = L.popup({maxWidth: '300'
});
var html_db3c80ce6bf84e79ba04e1a72da6e6ae = $('<div id="html_db3c80ce6bf84e79ba04e1a72da6e6ae" style="width: 100.0%; height: 100.0%;">Súdwest-Fryslân (8, 2%)</div>')[0];
popup_4ace2b6460764125a4bd6437fb8a7416.setContent(html_db3c80ce6bf84e79ba04e1a72da6e6ae);
polygon_939f97267cec4a94ab1b80bc97b7807d.bindPopup(popup_4ace2b6460764125a4bd6437fb8a7416)
;
var polygon_ecf13ccc36b149478c249b14bf29fd75 = L.polygon(
[[[[53.04991737218333, 5.797867859250339], [53.04980870085548, 5.797947047380133], [53.0498584173969, 5.798073707964035], [53.049715767770955, 5.798231744438682], [53.04971023050528, 5.798237627412537], [53.04963724815387, 5.798315123188399], [53.04941906389348, 5.798571641473139], [53.049210956469246, 5.79886359505992], [53.04904224106722, 5.799085771015765], [53.04897931572874, 5.799160153911213], [53.04875032838869, 5.799403676262753], [53.04859363318501, 5.799569087218999], [53.04844622415095, 5.7997048354672], [53.04836318369567, 5.799782917276036], [53.0482712839267, 5.799850296671125], [53.04822696359179, 5.799902649595146], [53.048083741588194, 5.800069586462974], [53.047963301055525, 5.800212715254577], [53.04790839519645, 5.800272662151748], [53.047690071546675, 5.800633333163056], [53.047617492082864, 5.800812285872637], [53.047552058247916, 5.800967327293216], [53.04747822177974, 5.801104260920357], [53.04742881978197, 5.80120180560636], [53.04740816767129, 5.801238739065667], [53.047202721927974, 5.80164499001245], [53.04716617548572, 5.801712340292025], [53.046998679633575, 5.801928586909914], [53.04687326106914, 5.802091492184895], [53.04679938714532, 5.8022233510713805], [53.046707048082034, 5.802536028835384], [53.046646201546345, 5.802774449724454], [53.046320812146206, 5.8034416667159565], [53.04626047430259, 5.803579913916537], [53.04621918553454, 5.803682466430958], [53.04617004317458, 5.8038185532309114], [53.04600093794807, 5.804350936407914], [53.04595985828481, 5.804455145089562], [53.0459101852771, 5.8045754947080725], [53.04586220713665, 5.804653034078457], [53.04578648429387, 5.804783451663434], [53.04554889169144, 5.805230918780259], [53.04546043771119, 5.805404155158272], [53.04528404808269, 5.805761531074106], [53.0449985728236, 5.806275760062028], [53.04487216656318, 5.806554896437374], [53.04471664518638, 5.806943776986996], [53.04466877417109, 5.807056920758117], [53.04461560738823, 5.807176051515522], [53.044580779021366, 5.807242112900576], [53.04448838543825, 5.807392474701117], [53.04435881285641, 5.807633253136694], [53.04430192759401, 5.807754359448399], [53.04422789633609, 5.807916363996081], [53.0441384311256, 5.808066766988414], [53.04396922647796, 5.808376983639154], [53.04383539645654, 5.808660061474263], [53.043751275197465, 5.808859464216784], [53.043690997336064, 5.809019809176928], [53.043690313485946, 5.809022115929049], [53.04369026076047, 5.809022291970233], [53.04368944928055, 5.8090250188443555], [53.04368457705137, 5.809041396435654], [53.04356697299575, 5.809436844484435], [53.04338812206688, 5.810024441038522], [53.04333005699419, 5.810208929376264], [53.04323728633708, 5.810490220598954], [53.04303326302144, 5.811056778107913], [53.04284205542602, 5.811528224257556], [53.042650574737415, 5.812068623234812], [53.04237214069131, 5.812831548186679], [53.0421642180006, 5.813419829703613], [53.041875531374465, 5.81440167910748], [53.041789818303194, 5.814649071069828], [53.04164145084288, 5.815015124114029], [53.04143441371589, 5.8155564871054395], [53.0412968596076, 5.815993760474655], [53.041078867772804, 5.816816814625667], [53.04105555570383, 5.816897394168216], [53.04099865162736, 5.81707100581671], [53.040342535690264, 5.818887710988184], [53.04027249895803, 5.81905171908382], [53.03993180282013, 5.819868372703048], [53.03963370562619, 5.820528549251262], [53.03959089960485, 5.820611658747895], [53.03953207337661, 5.820719088572318], [53.03926232248376, 5.8211812756035695], [53.03906292997206, 5.821505104906763], [53.03904685571826, 5.821539294743002], [53.0390118193511, 5.821610880414288], [53.03882949680962, 5.822044262807864], [53.038647033243365, 5.822540675091895], [53.0386304799448, 5.822590215033196], [53.03843152271311, 5.823185779251598], [53.03843146111856, 5.823185975184565], [53.03830917920402, 5.823571790638473], [53.03821406261678, 5.823842173636641], [53.03818071274977, 5.823926460513632], [53.03811696999169, 5.824057999464271], [53.03797215134026, 5.824315491305799], [53.037791549649256, 5.824604972558494], [53.0376528460754, 5.82
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_9c35037716b44d07a16e1b527ab3f590 = L.popup({maxWidth: '300'
});
var html_3d270d9891914420bb301fc84249b592 = $('<div id="html_3d270d9891914420bb301fc84249b592" style="width: 100.0%; height: 100.0%;">De Fryske Marren (0, 0%)</div>')[0];
popup_9c35037716b44d07a16e1b527ab3f590.setContent(html_3d270d9891914420bb301fc84249b592);
polygon_ecf13ccc36b149478c249b14bf29fd75.bindPopup(popup_9c35037716b44d07a16e1b527ab3f590)
;
var polygon_45aedd41061b427e8b3b808435ade2b3 = L.polygon(
[[[53.32455228385236, 5.721834508178419], [53.323963950076234, 5.7219554147236815], [53.32396416557883, 5.721984559996337], [53.32383550042409, 5.721986201740931], [53.32298426518724, 5.722210514276576], [53.32234600425163, 5.722381189971215], [53.322313754786606, 5.722391309338989], [53.32229296441225, 5.722393998899744], [53.320072597753395, 5.722053029165614], [53.31848414101858, 5.721794745460838], [53.31759789513867, 5.721657285410032], [53.316033227708274, 5.7214146123963], [53.31603505516773, 5.721438423820188], [53.316073404842015, 5.721444813253394], [53.316076239013526, 5.721466126859752], [53.31608941432579, 5.721565244434036], [53.31611024814956, 5.721717978929829], [53.3161240906622, 5.72181946646083], [53.31614915424059, 5.722121329704542], [53.31621111199848, 5.722474299601289], [53.31644125850091, 5.723655042143826], [53.316536144920896, 5.724084304345007], [53.31741525882212, 5.727683300868041], [53.317450887073534, 5.727815792713361], [53.31746017785865, 5.727885624602718], [53.31745826209004, 5.729580718829052], [53.317452177118625, 5.7296822249632555], [53.31743761928516, 5.7297711194784435], [53.31715309109211, 5.731051137454177], [53.31712944371872, 5.7311636362311305], [53.317109741440426, 5.731259901240429], [53.31700223967885, 5.732216206892468], [53.31692204011483, 5.732659139778424], [53.31687571691106, 5.7328917186760435], [53.31676818036722, 5.733466036883563], [53.31659524136057, 5.734297158277772], [53.316485800049655, 5.7347914627657826], [53.31644371843924, 5.735006846606875], [53.31640755418973, 5.735214175602039], [53.316375309874964, 5.735432983617689], [53.31636531958956, 5.735500814208836], [53.316332322409025, 5.735703141129549], [53.31632004240697, 5.7357733982915455], [53.31630278835959, 5.735854749627887], [53.31628592072127, 5.735917452576772], [53.31620738235472, 5.736204455951201], [53.31607432104055, 5.7366704415420395], [53.31593739579349, 5.737203884110312], [53.31590149227795, 5.737360524824703], [53.31587735574382, 5.737490732835008], [53.31584988034271, 5.737647247489638], [53.31582911020632, 5.7377660038932445], [53.315820143803705, 5.7378241787830975], [53.31581692951646, 5.737845038437017], [53.31579327259329, 5.737998448027423], [53.31575906911795, 5.738184795373912], [53.31573980230331, 5.738277996171121], [53.31570387794425, 5.738428904029746], [53.31567086382003, 5.738571011635007], [53.315649480748164, 5.738644014246872], [53.315569658258276, 5.738833499369258], [53.3155252495341, 5.73894193367127], [53.31550838071331, 5.738983133205876], [53.31548581901839, 5.739050454189476], [53.31546127977262, 5.739136468659302], [53.315440619011596, 5.739223566049463], [53.31542085872191, 5.73930990511014], [53.315310379057806, 5.739955104062532], [53.3152944115331, 5.740074542844514], [53.31528984562793, 5.740111806583595], [53.31528822510899, 5.740125042076042], [53.31528006465291, 5.740208293990224], [53.31515554687815, 5.740819119165249], [53.315114850968385, 5.741097354314708], [53.31508372188731, 5.741312230036696], [53.315032904218356, 5.741746830366579], [53.31498512996917, 5.742145174983847], [53.31492758797911, 5.7423732899871975], [53.31488648241455, 5.742488048705465], [53.31485557490993, 5.742554127700975], [53.31484370205121, 5.742579566393872], [53.314815884088816, 5.742643120289699], [53.314805500718364, 5.742675233535676], [53.31479788757894, 5.74271266558704], [53.314793059320394, 5.742765290527487], [53.31478417776948, 5.74288810138595], [53.31476860336459, 5.7430528839619015], [53.314759575381665, 5.743140238105705], [53.31475069308724, 5.743202462559465], [53.31473420035816, 5.743307054960008], [53.314713846393396, 5.743413956096441], [53.3144867741563, 5.7445530782226815], [53.31441398964005, 5.744916637560672], [53.31440813699798, 5.744947917592501], [53.314272394470635, 5.745671873234631], [53.31416095547107, 5.7462627166821925], [53.31396306750101, 5.747311910048312], [53.31395083550619, 5.74736991763583], [53.31392871382961, 5.747474745181547], [53.31387669456909, 5.747721363759591], [53.313555283063565, 5.749301163802779], [53.3129
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffac0",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_17e2a7e207a545918b2e54bfb62fb3cc);
var popup_8fd7b8a442714a878147554fba893705 = L.popup({maxWidth: '300'
});
var html_150e5b99d76e4cf984048a06ec34e21d = $('<div id="html_150e5b99d76e4cf984048a06ec34e21d" style="width: 100.0%; height: 100.0%;">Waadhoeke (12, 3%)</div>')[0];
popup_8fd7b8a442714a878147554fba893705.setContent(html_150e5b99d76e4cf984048a06ec34e21d);
polygon_45aedd41061b427e8b3b808435ade2b3.bindPopup(popup_8fd7b8a442714a878147554fba893705)
;
var feature_group_c4db0bec6def4c829583589d0bb8ddf7 = L.featureGroup(
).addTo(map_08fa7b2de2344893b5e222cc7ef30d78);
var tile_layer_aabaf8ef773f475b947dbacc9107a237 = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"subdomains": "abc"
}).addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var polygon_32da738323ae4b0f831b99c8995b05b4 = L.polygon(
[[[53.269759508775365, 6.194671132611735], [53.26966256466082, 6.1949765937649], [53.26960830536876, 6.195151984432215], [53.26964221149918, 6.195179629389442], [53.269623008143704, 6.195242553242415], [53.26961811063762, 6.195258589550095], [53.26937791554775, 6.19604553754901], [53.26921755430138, 6.196613832786641], [53.269086120483635, 6.197084055563407], [53.268907899497286, 6.197738897615405], [53.26881991147339, 6.198088851008265], [53.26877497954512, 6.198267556729182], [53.26876743260404, 6.1983033278076665], [53.268764465279176, 6.19833023690617], [53.268761605003284, 6.198346655731733], [53.26876232793156, 6.198364670592993], [53.26876488694076, 6.198378238169626], [53.26876834463733, 6.198391838190719], [53.268777144133935, 6.198410079872639], [53.26878772031936, 6.198431367520512], [53.26881414914032, 6.198487038237103], [53.268831726259805, 6.198524075668228], [53.26883429592207, 6.19853614496885], [53.268840312582604, 6.198563313550326], [53.26884365306568, 6.198588901301505], [53.26884394524377, 6.198590870956022], [53.26884702255867, 6.198611493500448], [53.26884804640412, 6.1986262014232025], [53.268848595667585, 6.198634035463153], [53.268850013207874, 6.198671564160531], [53.268851320622396, 6.198702825048716], [53.26885139068103, 6.198704469419138], [53.26885146031491, 6.1987060954847735], [53.26884839353408, 6.198744786796262], [53.268848376234054, 6.1987449932248655], [53.268846489327316, 6.19875428088197], [53.26884298438064, 6.198771619811379], [53.26883419022517, 6.198815084081894], [53.26880876539925, 6.198931337659331], [53.26870780958379, 6.199375293158311], [53.26870439211742, 6.19939030719791], [53.268617884465414, 6.199771789529354], [53.268610376272804, 6.199803064534829], [53.26856391747034, 6.199954729317168], [53.26840382162373, 6.2005035946131954], [53.268235472362036, 6.2010687268907505], [53.26816979608277, 6.201344312109932], [53.268073703573116, 6.2017840000635225], [53.267992998786774, 6.202229447287939], [53.267910976375624, 6.2026821975194455], [53.2678932043684, 6.2028406489501595], [53.267731307699854, 6.203834840757127], [53.26768004858667, 6.204283280700766], [53.26766782100095, 6.204426893031735], [53.26762005633225, 6.204884391387382], [53.26758332477131, 6.2051413291265645], [53.26750503251955, 6.205602819233884], [53.26749898488233, 6.205638451771671], [53.267494453509585, 6.205665179910391], [53.267456199035415, 6.205893535192691], [53.26740471211465, 6.206097537422055], [53.267329306972236, 6.2064448081412795], [53.267303343637586, 6.206426838848215], [53.26729092999902, 6.206418240062203], [53.2671921357428, 6.2067678526254095], [53.26714493241874, 6.2067574688941605], [53.26713743160457, 6.206755812469838], [53.267109615747216, 6.2067499638139525], [53.26704685903486, 6.20673675171938], [53.26700374575687, 6.206734044974832], [53.267010060843866, 6.206821200981218], [53.266967723704866, 6.20695491490284], [53.26694301922232, 6.207032938359169], [53.266940428687064, 6.207041162612057], [53.266910945752315, 6.207159713236561], [53.26688741341757, 6.207418709757151], [53.266858059800725, 6.2076326759736205], [53.266764076603636, 6.208483273656984], [53.26671646932924, 6.208722476172495], [53.266714173323, 6.2087494409111335], [53.26671241268521, 6.208770300425963], [53.266634239937346, 6.209267402868237], [53.266631079785206, 6.209286707962972], [53.266629176064896, 6.209298331672999], [53.266614415248725, 6.209388428522967], [53.26656765938793, 6.209619806597593], [53.26654595668374, 6.20975128696196], [53.266473336981015, 6.210416941286713], [53.266456358189025, 6.210518520583605], [53.26643734978252, 6.210650051570928], [53.26641576682591, 6.210766545402872], [53.26638860179508, 6.211020851732452], [53.26632413383465, 6.211448259872339], [53.266310793846216, 6.211515779931415], [53.26623685020235, 6.211906930022046], [53.26621515200588, 6.211900040594912], [53.26601706153361, 6.211945565333452], [53.266010408459756, 6.2119565592105115], [53.26600098929331, 6.211981724164535], [53.26597329118088, 6.2120712715344], [53.26593984958193, 6.21218972492678
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ffffcc",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_a867f0d98ea34f1c83d760448cb52747 = L.popup({maxWidth: '300'
});
var html_e78c577c8fd540caada36b7d14c55abc = $('<div id="html_e78c577c8fd540caada36b7d14c55abc" style="width: 100.0%; height: 100.0%;">Achtkarspelen (1, 0%)</div>')[0];
popup_a867f0d98ea34f1c83d760448cb52747.setContent(html_e78c577c8fd540caada36b7d14c55abc);
polygon_32da738323ae4b0f831b99c8995b05b4.bindPopup(popup_a867f0d98ea34f1c83d760448cb52747)
;
var polygon_a1eec3fcddee4a09a6659edc7ddef6d4 = L.polygon(
[[[53.085088543925515, 5.874575981389083], [53.085073180952044, 5.874634822180829], [53.08507017193695, 5.874643340273311], [53.08506889045081, 5.874635863471304], [53.085056565491556, 5.874643769529419], [53.085034392838004, 5.87465571337816], [53.085017549230436, 5.874654420122894], [53.08501498093187, 5.874605483049306], [53.085013635600994, 5.874474651879138], [53.08500660910789, 5.874428052333491], [53.08495843096827, 5.874373827218185], [53.084956284649834, 5.874201198046077], [53.08497610816547, 5.874121707191524], [53.084976366590084, 5.874082443263308], [53.08497231085913, 5.874058800863846], [53.08496408486037, 5.874055320805154], [53.08495029467539, 5.87407004623361], [53.08494274956134, 5.87407581252407], [53.08493362415112, 5.874070291898426], [53.084926812258765, 5.874050589370601], [53.08492569167721, 5.874032264264528], [53.08494198741108, 5.873964897545452], [53.084976012602496, 5.87385562704371], [53.08500418574085, 5.87375130546824], [53.085036368759624, 5.873635342286888], [53.085072607701996, 5.873558497270963], [53.08508336027202, 5.873532872830523], [53.08508196691698, 5.8733912955264165], [53.08506909540108, 5.873263827640352], [53.0850492442375, 5.873193309123472], [53.08498057178848, 5.873091737648598], [53.084933432040806, 5.872996243903468], [53.08484862000784, 5.872905820749675], [53.084808356326775, 5.872905071319804], [53.08478624330206, 5.872904659856547], [53.08478542569847, 5.8729046206449285], [53.08478460809115, 5.872904582344204], [53.08474844790223, 5.872920220957429], [53.08463644855481, 5.872961547872281], [53.084622535104955, 5.872966675519677], [53.08454359440721, 5.872990596437782], [53.08444727549939, 5.873012099156913], [53.08434522765401, 5.873036895308143], [53.08422291824529, 5.873081180466668], [53.084191139341705, 5.873084481097982], [53.08416836549936, 5.873076345752845], [53.08413584769496, 5.873031432289154], [53.08409556026476, 5.872961254148758], [53.0840578628499, 5.872910492175134], [53.084023717097075, 5.872865858601872], [53.084007593961374, 5.872830949490496], [53.08400094421276, 5.87278663917818], [53.08400081023549, 5.872695672703833], [53.08399729112153, 5.872391204350249], [53.08399008676143, 5.872055697327266], [53.083988447223916, 5.8719968320385245], [53.08398150579813, 5.871944563593095], [53.08396732725833, 5.8719087055437935], [53.08394572525907, 5.871881913838539], [53.08392109996579, 5.871871684342264], [53.083825441235405, 5.871867810400127], [53.083684366098815, 5.871863966704613], [53.083613899859095, 5.8718700297698625], [53.083520136131284, 5.871886324438561], [53.083324564955944, 5.871932569232413], [53.08312811446721, 5.871969491684642], [53.08291931429603, 5.872005021548086], [53.08276418673284, 5.872047389372373], [53.08263742266685, 5.872075641697114], [53.08251692805145, 5.872097950246072], [53.08239858854058, 5.872113984001344], [53.08232871748479, 5.872132738975617], [53.082298667792976, 5.87213511945514], [53.0822916380145, 5.872135682165933], [53.082259488114616, 5.872132950091286], [53.082222088066615, 5.87211957859239], [53.082187482921064, 5.872090791677741], [53.0821595279371, 5.872043991815099], [53.08213075844629, 5.871972006284111], [53.08209916340635, 5.871887646923096], [53.08207157887283, 5.871838195311417], [53.08203762979681, 5.871804759656209], [53.08199583473964, 5.8717895185992415], [53.0819435136779, 5.871786024162847], [53.08187634937454, 5.871786617772486], [53.08182334518438, 5.871781026186068], [53.081813400582966, 5.871773662803919], [53.081802192830764, 5.871765358967488], [53.08179035227532, 5.871729111703088], [53.081746395250946, 5.871575071291762], [53.08174177037524, 5.871558857225356], [53.08171650345368, 5.8714539757224085], [53.08165020498854, 5.87125161749373], [53.08158504715924, 5.871060479887116], [53.08152719428043, 5.8708471591080995], [53.0814476683701, 5.870582230323719], [53.08142950009133, 5.870506111280532], [53.081425285811875, 5.870425924912282], [53.081432132094506, 5.870312657129354], [53.08127265373181, 5.870324402696038], [53.081066272081046, 5.87035519029482], [53.0808951
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffeca",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_1f30a16e69e646c498b13536b4522234 = L.popup({maxWidth: '300'
});
var html_f3f24cf8ff924737abf76a3d99bb1225 = $('<div id="html_f3f24cf8ff924737abf76a3d99bb1225" style="width: 100.0%; height: 100.0%;">Heerenveen (1, 1%)</div>')[0];
popup_1f30a16e69e646c498b13536b4522234.setContent(html_f3f24cf8ff924737abf76a3d99bb1225);
polygon_a1eec3fcddee4a09a6659edc7ddef6d4.bindPopup(popup_1f30a16e69e646c498b13536b4522234)
;
var polygon_a3d2a6ffe0e14ac7b4f0bd5856ebd2ed = L.polygon(
[[[53.29467007108855, 5.73581343441129], [53.294622941823796, 5.735903516799399], [53.29464216168692, 5.735928146960399], [53.294657843738975, 5.735973715624759], [53.29467833641181, 5.7360644639402505], [53.294673698965674, 5.736145261352982], [53.2946413419833, 5.736303219271786], [53.29461058505068, 5.7364670390209005], [53.29459693184507, 5.73671258161576], [53.294587598425814, 5.7368365023489165], [53.294586486040956, 5.736851259794231], [53.294584945766516, 5.736871709091462], [53.294583279974766, 5.736893827887364], [53.29455636684815, 5.737251099349593], [53.29451175271746, 5.737975547680568], [53.29446975453135, 5.738787148950071], [53.2944214210726, 5.739826501645531], [53.294375118580845, 5.740691904064966], [53.29433548779892, 5.741608498117357], [53.29429299550967, 5.7426090518144335], [53.29425829692361, 5.743402857533427], [53.294210395996124, 5.744253242746667], [53.29418200772737, 5.7448251426459125], [53.29414822585497, 5.745396997917746], [53.29410989484453, 5.745896678128958], [53.294078272963574, 5.746435556127786], [53.29405253414856, 5.746929641685797], [53.2940358673638, 5.747273982150564], [53.29402184183196, 5.7475465093912765], [53.294024936871416, 5.747623004674741], [53.29402825958456, 5.747704391625001], [53.29403012411911, 5.7477508378921165], [53.29402270108174, 5.747918740889447], [53.294004796044455, 5.74831556058915], [53.29399293968741, 5.748553162370716], [53.293962856531124, 5.748875644407773], [53.29393937422782, 5.749362847288765], [53.29393458407746, 5.7497890191818275], [53.293932687563625, 5.750179073183655], [53.29394524861445, 5.750868437763484], [53.29395336922122, 5.751213135289207], [53.293947225770246, 5.751372350672035], [53.29393670957827, 5.751876908556262], [53.293928611256796, 5.752324347551778], [53.29392217462733, 5.752756654362041], [53.29393657368194, 5.753250925141817], [53.29395553453461, 5.75360396332734], [53.29396242106563, 5.753879665489254], [53.29396967309522, 5.75418236514928], [53.293979958569984, 5.754550777409503], [53.2939943603572, 5.75474811025315], [53.293995956727905, 5.7549310867401555], [53.293987368676916, 5.755153417452902], [53.29397390926391, 5.755499131883724], [53.29398874107949, 5.755819443796086], [53.29400928959606, 5.756355310002215], [53.29403444820912, 5.756852075335567], [53.29404780170891, 5.757388480407635], [53.29405669152696, 5.757972988954264], [53.294070755801464, 5.758452413409307], [53.29407912221457, 5.758913941715893], [53.294091626983345, 5.75940235111007], [53.29409627567264, 5.75965704883129], [53.294102456099054, 5.759995875315465], [53.2941133732203, 5.7605022681381834], [53.29412517071452, 5.760753720000888], [53.29418759091036, 5.761426726346741], [53.294238811170175, 5.761742709018887], [53.294324690528654, 5.762210313602651], [53.294434404977714, 5.762842045816712], [53.29449161023956, 5.763196776098054], [53.29449106820005, 5.7632839046071735], [53.29441218545812, 5.76353921708975], [53.294307534889036, 5.763873787813065], [53.294206326969054, 5.764199088939051], [53.294116435936, 5.76443990432277], [53.29389889986343, 5.76504012772369], [53.29381627706413, 5.765283552594293], [53.29371427762757, 5.765645102625359], [53.2936675247273, 5.765799533901518], [53.2935283212751, 5.7662274904023], [53.293480944620164, 5.766422916208645], [53.293417846381494, 5.766782238449316], [53.29340687332183, 5.766868013424954], [53.29340280451819, 5.766981308107443], [53.29340478237672, 5.767100204763587], [53.29339338947, 5.767196578184185], [53.293372832319704, 5.767306983303085], [53.29334539614279, 5.767399031179917], [53.29332235676003, 5.767467302738134], [53.29332019989755, 5.767473162862594], [53.29330290654165, 5.767520234801335], [53.29328786180302, 5.767561042822517], [53.29326310128061, 5.767622415769418], [53.29323477510521, 5.767703103496732], [53.29314839578088, 5.767987487381539], [53.29311705576306, 5.768109163646196], [53.29310060965478, 5.7681751989209715], [53.293073940022964, 5.768294396311035], [53.293065376864014, 5.768331227314122], [53.2930479662884, 5.768403896386138], [53.29303045974051,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffbc2",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_bbc93d15293e4f1cb0bf0f6bb9e43514 = L.popup({maxWidth: '300'
});
var html_26f7be5eb6ff438b942f5abab2208f9f = $('<div id="html_26f7be5eb6ff438b942f5abab2208f9f" style="width: 100.0%; height: 100.0%;">Leeuwarden (11, 3%)</div>')[0];
popup_bbc93d15293e4f1cb0bf0f6bb9e43514.setContent(html_26f7be5eb6ff438b942f5abab2208f9f);
polygon_a3d2a6ffe0e14ac7b4f0bd5856ebd2ed.bindPopup(popup_bbc93d15293e4f1cb0bf0f6bb9e43514)
;
var polygon_2b32d279331c4e36bfb963825b10d97e = L.polygon(
[[[52.92339365270775, 6.246637363120104], [52.923438178540636, 6.246039873821533], [52.92349204334805, 6.245218950245877], [52.923499109178266, 6.245119802200247], [52.92352559278043, 6.244749569352325], [52.923533226641226, 6.244653912042559], [52.923601339024486, 6.243678274029418], [52.923608004973126, 6.243590880085666], [52.9236191670756, 6.243479306202213], [52.923622430301286, 6.243446626949409], [52.9236331722655, 6.243329676317513], [52.9236976784566, 6.24249714866299], [52.923763183409456, 6.241603417062132], [52.92380499442227, 6.241060035237014], [52.92387481612106, 6.240150517186916], [52.92393265392701, 6.239343872984964], [52.923998553526154, 6.23848594751974], [52.92405718453197, 6.237690035064976], [52.924137439247666, 6.2365332113809435], [52.92416510657122, 6.236079910872133], [52.92416731397021, 6.236043774845062], [52.924167507908216, 6.2360424961724865], [52.92417921230438, 6.235965372330708], [52.92417926635942, 6.235964635498799], [52.9241793216984, 6.235963872371296], [52.924200062631954, 6.235685786890971], [52.92420126534108, 6.235669601341726], [52.924346624274946, 6.23371999215692], [52.92435551320954, 6.233600711456737], [52.92437305092755, 6.233365491614247], [52.9243784635512, 6.2332928961499166], [52.92441913794229, 6.232747276223095], [52.92442021392291, 6.23273119243524], [52.92444701714578, 6.232331908312756], [52.924450322576284, 6.2322826037445545], [52.92446397528783, 6.232079174793214], [52.924493509874665, 6.231639049405093], [52.92455090343259, 6.2306441900887135], [52.92458121567918, 6.23022935863989], [52.92460595606181, 6.229888175367797], [52.92462610962797, 6.229621284894818], [52.92464745450975, 6.229315352515273], [52.924650583813076, 6.229261523275657], [52.92465440337996, 6.229188910638767], [52.92465512872017, 6.229179079737471], [52.92470645900492, 6.2282293624105005], [52.924708591462185, 6.228212406600578], [52.924789889523474, 6.227565995845106], [52.92485098779344, 6.226783337678955], [52.92485371464046, 6.226748281642792], [52.92490858111243, 6.225825882144906], [52.9249486821658, 6.225377624924184], [52.92498431347596, 6.224948820324664], [52.92503163288913, 6.22434215114813], [52.92509545910863, 6.223438966133852], [52.92514490055706, 6.222742412495018], [52.92515101671916, 6.222667195881659], [52.92518389274079, 6.222237798953602], [52.92554462798293, 6.217136307971307], [52.92579450474501, 6.213630170666528], [52.92594574189356, 6.213574505762779], [52.9261394087772, 6.213493649520836], [52.926268670663255, 6.213443575064706], [52.9264253857966, 6.21337932739512], [52.926428935931696, 6.213377952397929], [52.926588257699095, 6.213316296888089], [52.92671593749798, 6.213266235904952], [52.9267171250413, 6.213266549758793], [52.92671831479719, 6.213266860931595], [52.92676654907715, 6.213245675905537], [52.92701946431672, 6.213131215379608], [52.92719819002906, 6.213058921088531], [52.92737438084739, 6.2129671413507825], [52.92749517272789, 6.212913765729207], [52.927636093283105, 6.212851490862989], [52.927924643256446, 6.212736673847221], [52.92808590448244, 6.212672507297477], [52.92815191172498, 6.212645322657915], [52.92822641416118, 6.212615056482835], [52.92833036801372, 6.212571561679011], [52.92842618623831, 6.212527213760475], [52.92847993556371, 6.212503812325491], [52.92852378315215, 6.212481531417318], [52.928618428070706, 6.212439168726138], [52.928692326436774, 6.2124066148501305], [52.928759497642, 6.212374811304882], [52.92883971881619, 6.212338897647266], [52.928944261749585, 6.212284273398289], [52.92900935304022, 6.212251745719628], [52.92902044334019, 6.212246424011131], [52.929093365102176, 6.212205641740833], [52.92925311548963, 6.212125976491811], [52.92937322776896, 6.212068166493651], [52.92946274242413, 6.212030790967197], [52.929515511950065, 6.21201001673567], [52.92957261881331, 6.211984594389259], [52.9296619136001, 6.211941325090266], [52.929716533117535, 6.211912941745805], [52.92974565592678, 6.211897802639701], [52.929860217907716, 6.211839409846043], [52.929885503155944, 6.2118269194178435], [52.92990487642407
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fff5b5",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_554d84c1de16419c9bba3f73f41f8c7d = L.popup({maxWidth: '300'
});
var html_91d00f789abe49408387816f1cfcc326 = $('<div id="html_91d00f789abe49408387816f1cfcc326" style="width: 100.0%; height: 100.0%;">Ooststellingwerf (2, 6%)</div>')[0];
popup_554d84c1de16419c9bba3f73f41f8c7d.setContent(html_91d00f789abe49408387816f1cfcc326);
polygon_2b32d279331c4e36bfb963825b10d97e.bindPopup(popup_554d84c1de16419c9bba3f73f41f8c7d)
;
var polygon_2a1ca99115024d76a59cec07a2e5d9fd = L.polygon(
[[[53.075024750782205, 6.33088403100416], [53.07499671345996, 6.330755051368262], [53.074961418035635, 6.330592694184935], [53.07470848200836, 6.329429181981148], [53.07469778075883, 6.329392481031124], [53.07435644613559, 6.327788233011823], [53.07434299569208, 6.327725031305147], [53.074327680294594, 6.327702465299188], [53.0743043064912, 6.327600655924339], [53.07416434065755, 6.326954288763919], [53.07388908070573, 6.325697137012846], [53.073879546032416, 6.325653583153511], [53.073873118426164, 6.32561375310665], [53.07387129489849, 6.325605610807539], [53.07373703557545, 6.325003802234907], [53.07360463507531, 6.324397127771732], [53.07341350898111, 6.32349590849253], [53.07321474188596, 6.322600979684662], [53.072950350901344, 6.321403071483377], [53.072851759012025, 6.320967875585375], [53.072839214675255, 6.320912441588206], [53.07266889064115, 6.320128012264357], [53.07264536349252, 6.320040412118983], [53.072491732786105, 6.319315689367889], [53.07246559881844, 6.319196997875373], [53.07208989371531, 6.317490550737626], [53.072060494007175, 6.317357019880042], [53.07203088671055, 6.317237480455523], [53.07192281020471, 6.316741878443809], [53.071813264436244, 6.316239563871966], [53.07175186095162, 6.315958036460779], [53.07172073732537, 6.315813682717981], [53.07161203898506, 6.315282713221933], [53.07158795972445, 6.315170858854745], [53.071549140483754, 6.314993232613543], [53.07151643017462, 6.314843549765585], [53.07145028781968, 6.314567818173011], [53.0714199233794, 6.314441223834028], [53.07138960383502, 6.314310019809197], [53.071368645808, 6.314220882968744], [53.07135699591466, 6.314171440617826], [53.0713154200946, 6.3140443242853115], [53.071304545336936, 6.313995778314027], [53.07118619267397, 6.313468775372425], [53.07097677496012, 6.312519148199111], [53.070668317475665, 6.3111425001543795], [53.070625785466476, 6.310952522857692], [53.07059549071986, 6.31081647492298], [53.07055681166261, 6.310638471771897], [53.07047261812388, 6.310257344160436], [53.07030652994019, 6.309484489280142], [53.07004798213705, 6.308275155194859], [53.06989488582169, 6.307609598789013], [53.06989211221739, 6.3075975293287385], [53.06973233363981, 6.306871380601445], [53.06957333177434, 6.306147655111954], [53.06954178369395, 6.305992683201085], [53.069485939469736, 6.305729505040059], [53.06923523505859, 6.304679624001984], [53.06922427901373, 6.304639973478072], [53.06920664256659, 6.30457617636794], [53.06919831970276, 6.304546055855748], [53.06916491608359, 6.304425169961116], [53.06888627731863, 6.303188872344145], [53.06885798055557, 6.303023097948107], [53.068798371677076, 6.3027143732142905], [53.06872375731938, 6.302378268153754], [53.068590767095145, 6.301750356911145], [53.06851264988086, 6.301386564784298], [53.06840082286547, 6.300876866183299], [53.068291261664534, 6.300364368549857], [53.06822382393792, 6.300050249120956], [53.0681310808945, 6.299629849491105], [53.06803669412818, 6.299186784656834], [53.06797823819079, 6.298908232248924], [53.067943577435386, 6.298743031780792], [53.06786083561045, 6.298358773129177], [53.067772171790196, 6.297949477397966], [53.06769494084855, 6.297578705113916], [53.06763130438719, 6.297276655901535], [53.06757722159562, 6.2970227722088135], [53.067558604816476, 6.29693371626963], [53.06752272337477, 6.296762062740718], [53.06745261049954, 6.296439216884625], [53.06738603792838, 6.296122278606364], [53.067303599323694, 6.2957252961199845], [53.067207389058694, 6.295263604922786], [53.067131265983235, 6.294896163711612], [53.06705767842728, 6.294539085652645], [53.06703547885233, 6.294436335405129], [53.066988961844615, 6.294220974773012], [53.0669092772633, 6.293857043381497], [53.066786780181246, 6.293272311150536], [53.066675039317026, 6.292770458868134], [53.066566023930996, 6.292253746958136], [53.06656022655965, 6.29222775637435], [53.0664675664247, 6.2917820292035485], [53.066407101100516, 6.291509154588384], [53.06631592077197, 6.291075351731674], [53.06625187909596, 6.290761750921743], [53.06619884638115, 6.290511024194362], [53.06616505086
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_29ea40ab710144e3ac7646eeeac4b857 = L.popup({maxWidth: '300'
});
var html_cf1ad18a2a59462691e8fbafe15e9b6d = $('<div id="html_cf1ad18a2a59462691e8fbafe15e9b6d" style="width: 100.0%; height: 100.0%;">Opsterland (0, 0%)</div>')[0];
popup_29ea40ab710144e3ac7646eeeac4b857.setContent(html_cf1ad18a2a59462691e8fbafe15e9b6d);
polygon_2a1ca99115024d76a59cec07a2e5d9fd.bindPopup(popup_29ea40ab710144e3ac7646eeeac4b857)
;
var polygon_414f102272fc47dea97ed9fc59fb282b = L.polygon(
[[[53.129004290697836, 6.185205456396789], [53.12878402801594, 6.184637382895723], [53.12866293869319, 6.184552356459142], [53.12863606870793, 6.1845350088165025], [53.12860560950466, 6.184518238956394], [53.12857366425987, 6.184503233623007], [53.12844884344676, 6.184436112392388], [53.12832017489787, 6.184374702051629], [53.128344107083166, 6.184260925641066], [53.128355836304586, 6.184205175154044], [53.12836363044045, 6.184162828850948], [53.128378421498574, 6.184072399539608], [53.128402149669, 6.18393523680231], [53.12842796256485, 6.183748063112858], [53.128445785662684, 6.183632575312069], [53.128451584226525, 6.183582228754377], [53.128450058900256, 6.183549391484616], [53.12844414842142, 6.183531504989477], [53.12829613650106, 6.1831461097744365], [53.1280839742825, 6.182591150810729], [53.12783363136727, 6.18194475237793], [53.12746737123084, 6.18100287901184], [53.127231657575614, 6.180395894190656], [53.12722714266637, 6.180384277599109], [53.12704789095999, 6.179908396571067], [53.12659416100301, 6.178714992277736], [53.1263425693519, 6.178069407443114], [53.12597940787836, 6.177120470984835], [53.12589576165826, 6.176905524243147], [53.1256777016774, 6.1763452019049545], [53.12542936033279, 6.175703677455262], [53.1253709521381, 6.175540854619665], [53.125363412038865, 6.175510884020647], [53.125339312423016, 6.175415059665019], [53.125366876258546, 6.175421432011016], [53.125304143409295, 6.175252122078895], [53.125157695974885, 6.174861239836279], [53.125019276018165, 6.1745121416340325], [53.12488779600366, 6.174167965904283], [53.12479857363469, 6.1745355900756085], [53.12479743913732, 6.174541470618477], [53.12470776702961, 6.1744865547814785], [53.12470977446335, 6.174378045702155], [53.124712020294915, 6.174323395199683], [53.12470855748041, 6.1742801150680435], [53.12470376570965, 6.174233911307572], [53.1246978115513, 6.174170448065007], [53.12469147612318, 6.174110248525987], [53.12468466337076, 6.174051654216709], [53.12467637343959, 6.173990822013972], [53.12466545436866, 6.173900632502742], [53.12466319098861, 6.173859345518153], [53.1246646814945, 6.17381578061165], [53.12466768997637, 6.173777756864613], [53.124671662013796, 6.1737407508338045], [53.12467540409892, 6.173701843180603], [53.12468429694158, 6.173635272127639], [53.124687151171905, 6.173613886712202], [53.1244712872951, 6.173528674515187], [53.12445699168946, 6.173523021964184], [53.1234835748588, 6.173189760904183], [53.12348568477298, 6.173165360101747], [53.12351476626798, 6.172712909268765], [53.123559539796624, 6.172095268447951], [53.123563475922545, 6.1720225594523805], [53.12358395306564, 6.171670368394303], [53.12358780828908, 6.17158107639038], [53.12349506613872, 6.17154751920822], [53.123498419564534, 6.171493727149189], [53.12350250012874, 6.171324742547037], [53.12350295187356, 6.171273572199391], [53.12350132656061, 6.17118418030367], [53.12349832674815, 6.171075419466997], [53.12348703789505, 6.170946685102607], [53.12346231668911, 6.17078182626627], [53.123441534886986, 6.170676941051116], [53.123432137990335, 6.1706380958573135], [53.12341891654253, 6.170576609851723], [53.12340238151293, 6.170508027903092], [53.123368732434855, 6.170398757400292], [53.12330512769661, 6.170225653041943], [53.12322996799953, 6.17003299564402], [53.12316946463769, 6.1698967853887705], [53.12312639872209, 6.1697860175215355], [53.12311419094402, 6.169744014785114], [53.123090760530154, 6.169663432590375], [53.12309105274841, 6.169631036635052], [53.123057967558424, 6.169556405506995], [53.12300122459777, 6.169457984679074], [53.12296663382123, 6.169411649517349], [53.122915813229746, 6.169366814114045], [53.12286272740363, 6.169345420212756], [53.12285311055957, 6.169341542241637], [53.12286629665298, 6.1691703646143194], [53.12284527874964, 6.169163367970837], [53.12262995346609, 6.1691066625935616], [53.12255786587129, 6.169084658383458], [53.12259363836272, 6.1687598909271495], [53.122604759130276, 6.1686462338902315], [53.12262054957527, 6.1684847977101045], [53.12239389134774, 6.167919610924144], [53.12218646
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffeca",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_c9ab94a7fd76444f951b89f5c40f2402 = L.popup({maxWidth: '300'
});
var html_7474ef1a64bd4a7297746274e7d79c75 = $('<div id="html_7474ef1a64bd4a7297746274e7d79c75" style="width: 100.0%; height: 100.0%;">Smallingerland (1, 0%)</div>')[0];
popup_c9ab94a7fd76444f951b89f5c40f2402.setContent(html_7474ef1a64bd4a7297746274e7d79c75);
polygon_414f102272fc47dea97ed9fc59fb282b.bindPopup(popup_c9ab94a7fd76444f951b89f5c40f2402)
;
var polygon_47d649c1140d4701a3d70c8d58d746b8 = L.polygon(
[[[52.933184922154105, 6.209520416466611], [52.93315226897604, 6.2095380208533415], [52.93315348516466, 6.209554567393132], [52.9330697866076, 6.209632575426412], [52.93302010359534, 6.20967364065344], [52.93298818336949, 6.209704599524205], [52.932961583546586, 6.209730556964362], [52.93293988640776, 6.209746938948276], [52.93291422857116, 6.2097637082542665], [52.93287815544492, 6.20979635790346], [52.93286419469258, 6.209815251476848], [52.93283144494684, 6.209838028968218], [52.932812907131826, 6.2098533847532655], [52.93278906228898, 6.209876017938963], [52.932761453761316, 6.209898386723516], [52.93273545808669, 6.209925337532026], [52.93271259062147, 6.209945668793448], [52.93265203042218, 6.209991137769451], [52.93258717568516, 6.210046833397468], [52.932553855140306, 6.210076500727201], [52.932520309846204, 6.210099619603584], [52.93249784238231, 6.210119289192653], [52.93248586598731, 6.210139469054252], [52.93246900159921, 6.210170190332783], [52.93246155286567, 6.2101857115938675], [52.93245409936488, 6.210197944795396], [52.932444648127145, 6.2102092334145995], [52.93242750523568, 6.21022457166571], [52.93238763087073, 6.210249414576372], [52.93233139593451, 6.210289253647582], [52.93231109904768, 6.2103092173009715], [52.932296747503045, 6.2103287721172435], [52.93227984754834, 6.210352948388503], [52.93226332269971, 6.210374826890241], [52.932245209823265, 6.210393775062334], [52.932224098726024, 6.210408517187523], [52.93215226531471, 6.210457103672532], [52.93213037314741, 6.210474151245645], [52.93211443512682, 6.210494048155432], [52.9321004674463, 6.210511304339902], [52.93208868645199, 6.210530818576091], [52.93206641584463, 6.21055080374015], [52.932033508548905, 6.210581771706833], [52.93200684415301, 6.210597256649814], [52.93198332549194, 6.210606450250693], [52.93197499150245, 6.210613684799037], [52.931969132872595, 6.210618779285437], [52.93194922708107, 6.210635789784487], [52.931912146968486, 6.210665846373897], [52.93189545265903, 6.210682144069568], [52.93188692954665, 6.210690475227171], [52.931868236643446, 6.210712713687645], [52.93184502253985, 6.210742884097154], [52.93182315194319, 6.210764512386765], [52.93179023795767, 6.210792862816622], [52.931755121899776, 6.210819594824971], [52.93172725109919, 6.2108301784289015], [52.93170050370695, 6.210827948418665], [52.931680710664295, 6.210829879326089], [52.931663987261956, 6.210836315332083], [52.93166035778716, 6.21083870135139], [52.931649610815555, 6.210846663630464], [52.93163688295871, 6.210856089918426], [52.93161123597765, 6.21087547534989], [52.931538765380985, 6.210953585855734], [52.93151653605003, 6.210980457574799], [52.931495645014735, 6.210999783867403], [52.93147136839606, 6.2110158781059726], [52.93142275833033, 6.211036585084551], [52.93137139515903, 6.21106192400436], [52.931271285788235, 6.21111879387133], [52.93122191996471, 6.211146401602205], [52.93117199854606, 6.211181553968921], [52.93112428955072, 6.211221908617002], [52.931117963665365, 6.21122547815316], [52.9310622805079, 6.21125692223393], [52.93102413165768, 6.211271251665363], [52.93096607655103, 6.2113039152782195], [52.930896349055146, 6.211337711625443], [52.93081988218059, 6.211372599573826], [52.93077065824172, 6.211390050888131], [52.930743171586585, 6.211397339702469], [52.93070545133728, 6.2114185485988544], [52.93069306414646, 6.211422954804921], [52.930666118794065, 6.211432558567178], [52.93061912113246, 6.211459481419231], [52.9306057644248, 6.211465043889572], [52.93056853274406, 6.211480551325586], [52.93053653391154, 6.211497079013899], [52.93051738277779, 6.211508837958579], [52.9304763523868, 6.2115386102742045], [52.930422040918145, 6.211567595872744], [52.93036793832974, 6.211599216865744], [52.930342404299516, 6.211610008122568], [52.93028929214932, 6.211633468169346], [52.93016285126758, 6.211695593330663], [52.930040795665434, 6.2117564476434], [52.929935331196084, 6.21181175512422], [52.929904876424075, 6.211820727508698], [52.929885503155944, 6.2118269194178435], [52.929860217907716, 6.211839409846043], [52.929745
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_b18f6fd2f0db463e97ac36f354c3dd9b = L.popup({maxWidth: '300'
});
var html_46e097b57f914aea9c72797458ef2f81 = $('<div id="html_46e097b57f914aea9c72797458ef2f81" style="width: 100.0%; height: 100.0%;">Weststellingwerf (0, 0%)</div>')[0];
popup_b18f6fd2f0db463e97ac36f354c3dd9b.setContent(html_46e097b57f914aea9c72797458ef2f81);
polygon_47d649c1140d4701a3d70c8d58d746b8.bindPopup(popup_b18f6fd2f0db463e97ac36f354c3dd9b)
;
var polygon_8a4569c54d7e4947b084e1ea9721fdcb = L.polygon(
[[[53.281483896086264, 5.876350432489802], [53.281409691983185, 5.876542756320584], [53.2814350811341, 5.876645160012425], [53.28138683998888, 5.87669146477699], [53.281326062900234, 5.876730475846292], [53.28124472649578, 5.876774395308161], [53.28109442961543, 5.876828716887195], [53.280982730944025, 5.876870613057629], [53.28090824679273, 5.876911116871735], [53.28086002929209, 5.876944467333256], [53.28080720729678, 5.877005216556281], [53.28057405932319, 5.8773183090909615], [53.28043942234375, 5.87751162043524], [53.28031730234726, 5.877288765802078], [53.28017906566436, 5.877036480639173], [53.28012373103969, 5.876935509475357], [53.28008598685053, 5.87699630898564], [53.280047114356414, 5.877062658176017], [53.279938284625715, 5.877242692760687], [53.27978250012606, 5.877500916116479], [53.279565305607264, 5.877856592152794], [53.27891354504382, 5.878921469399144], [53.27881725737002, 5.879079255161165], [53.278741116354944, 5.879210344495592], [53.27871186414736, 5.879253037124705], [53.27852572597206, 5.87955209648595], [53.27835431023674, 5.879821473576576], [53.27830070693287, 5.879912415142213], [53.27828304078933, 5.879938763443599], [53.27826321868309, 5.879956841910336], [53.27824619641971, 5.879959390706156], [53.278231448587825, 5.879977557300113], [53.278215924974994, 5.87998376678393], [53.278200427185475, 5.880015626187003], [53.27818386908775, 5.880039243836345], [53.27813473088111, 5.8801128304485815], [53.27798607884125, 5.88034384518863], [53.27780147326138, 5.880643092632978], [53.27772413303289, 5.880770369739339], [53.27765111787636, 5.880885972891057], [53.27757433707647, 5.881010511442012], [53.27752572475264, 5.881091432901817], [53.27749358432857, 5.881141601211793], [53.27742626130327, 5.881234195761178], [53.27720793927011, 5.881592564862491], [53.27704546949802, 5.881846302344165], [53.27698634620302, 5.881946319737816], [53.27683271498583, 5.882185495213982], [53.27680099007569, 5.88221577311817], [53.27678250237223, 5.882244658367476], [53.276773319585644, 5.882259919220252], [53.27674567249871, 5.882320600169539], [53.276354011845214, 5.882956578012747], [53.275912601672104, 5.883686609492787], [53.27571816989601, 5.884008965277107], [53.27560612306347, 5.884182046874487], [53.275479731536166, 5.884369083710779], [53.27534363089975, 5.884574505128765], [53.27509241115845, 5.884967718149684], [53.274961280027405, 5.8851705993354155], [53.27491686306212, 5.8852446491040356], [53.27460448906929, 5.8857495305098455], [53.27436037180612, 5.886164562796531], [53.27407843665777, 5.88663493116314], [53.27388783364666, 5.886952928337332], [53.27372653940298, 5.8871590312073865], [53.273315946864486, 5.887827379157787], [53.273146667253236, 5.8880647134015245], [53.27298325844497, 5.888298950233496], [53.27266566195963, 5.888805479307087], [53.27256541089434, 5.888964508165652], [53.27253651699395, 5.889023890911876], [53.27251344331867, 5.889075201473695], [53.27248866116058, 5.889135456219575], [53.27247277343504, 5.889159375150139], [53.27241899934753, 5.8892378794206115], [53.27236551744713, 5.889317450912334], [53.27230427769786, 5.889399825713853], [53.2722025725447, 5.889532617972166], [53.27215698414826, 5.88959643388266], [53.27210041980568, 5.889675612667828], [53.272060669952, 5.889730910095108], [53.27199709472623, 5.88982808035586], [53.27193248482185, 5.889925703951445], [53.27178057851406, 5.890169474430799], [53.2715996055775, 5.8904622488499845], [53.27156490458143, 5.89052204184969], [53.27144699987513, 5.890735477205042], [53.27113744541345, 5.891275864926711], [53.27104359746242, 5.891441372284035], [53.27097952465667, 5.891562658628309], [53.270977993880805, 5.891565554566619], [53.27095394957726, 5.89153327267407], [53.27084262949678, 5.891699638491085], [53.27079270545102, 5.891776683135599], [53.27074738742475, 5.891843993430475], [53.270724340808584, 5.8918757850074055], [53.27068989533609, 5.891915192964102], [53.27068178878425, 5.891928408361216], [53.27067094395516, 5.891947482468142], [53.270658642599564, 5.891966659374631], [53.27065278639668, 5.8
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc9",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_05ae9362f4924913a559837635d232bc = L.popup({maxWidth: '300'
});
var html_65c2eb6f9e1645309abbd3c4f192c2c4 = $('<div id="html_65c2eb6f9e1645309abbd3c4f192c2c4" style="width: 100.0%; height: 100.0%;">Tytsjerksteradiel (2, 1%)</div>')[0];
popup_05ae9362f4924913a559837635d232bc.setContent(html_65c2eb6f9e1645309abbd3c4f192c2c4);
polygon_8a4569c54d7e4947b084e1ea9721fdcb.bindPopup(popup_05ae9362f4924913a559837635d232bc)
;
var polygon_51eee33986c346d795f1b05c61363939 = L.polygon(
[[[53.325069178417294, 6.034320682057868], [53.325002595004186, 6.034379293658696], [53.324950471420514, 6.034427421397184], [53.32484772280514, 6.034515880863414], [53.32478324402785, 6.034582358140175], [53.32472969605152, 6.034628048465112], [53.32466740596947, 6.034690355631371], [53.32461637008292, 6.034736698095982], [53.32458087013277, 6.034773159393012], [53.32455082015082, 6.034801943046732], [53.32452394163151, 6.03483919334969], [53.32450107647276, 6.034868715132852], [53.3244796326686, 6.03489948936329], [53.324461439574996, 6.0349291115486015], [53.32444064806984, 6.034968899857776], [53.324417659335424, 6.035014628359533], [53.32438918522258, 6.035072865724805], [53.324349285468884, 6.035168676023886], [53.3243357286332, 6.035203199648682], [53.32432127020443, 6.035261722699741], [53.32430619089177, 6.035307029451502], [53.32429642012964, 6.035362651435175], [53.32429351834815, 6.035414219916895], [53.32428844329056, 6.035515580702107], [53.32428302791402, 6.035613319967717], [53.32427689582041, 6.035712249300344], [53.324268920519664, 6.035816537863839], [53.32426392429957, 6.0359064799445905], [53.32426779476261, 6.036013438342622], [53.324276079585154, 6.036106656350729], [53.3242990195211, 6.03620982033502], [53.32432316358555, 6.036297979209965], [53.32433475568019, 6.0363290671119305], [53.32435204679155, 6.036375434641531], [53.32437112032663, 6.036420880085861], [53.3243930499737, 6.036468170389213], [53.32443844845842, 6.036548981132119], [53.32448135912937, 6.036626152812061], [53.32452138001539, 6.036704451741567], [53.32459506512813, 6.036848302282693], [53.324675114780405, 6.0370049012365135], [53.32475482030072, 6.037160294691983], [53.324798039835926, 6.037243460188857], [53.32484444254092, 6.0373345085509715], [53.32487881064609, 6.037401287055649], [53.32492251632137, 6.0374676524035324], [53.32496221449797, 6.037542345360192], [53.32500508976016, 6.037624321120649], [53.32504770743966, 6.037692471356875], [53.32507908615456, 6.03777358316042], [53.32510927900881, 6.037867884344641], [53.3251347769608, 6.037966287222233], [53.32515347866351, 6.0380603399640975], [53.32516712716467, 6.038156702677058], [53.32517505707774, 6.038248717710678], [53.325176302676944, 6.038416856618604], [53.32517124423927, 6.038615787542085], [53.325162553252014, 6.0388499174602694], [53.32515565221927, 6.039078625880013], [53.32514480200658, 6.039316340314168], [53.32513502167834, 6.039552269020803], [53.325120583677226, 6.039767175870632], [53.325103258063365, 6.040009098966318], [53.325081983838615, 6.040238399736828], [53.32506573346023, 6.040483924953478], [53.32504588002805, 6.040742648293961], [53.32502424308774, 6.04097556026364], [53.32498419928019, 6.041443787643528], [53.324973747648194, 6.041553038007304], [53.32495717719578, 6.041667102477484], [53.32493594427139, 6.041759543997913], [53.32490931554154, 6.041842974123556], [53.32485823796098, 6.0419954298912355], [53.32480140160004, 6.04214608664852], [53.3247395373901, 6.042307546957263], [53.324675152268405, 6.042466612487004], [53.32461688477443, 6.042607655601156], [53.32454746154582, 6.042772722208893], [53.324478407567284, 6.042929373975078], [53.32439640101106, 6.043126244037521], [53.3243244655102, 6.043300305260728], [53.32426727527853, 6.043443148724325], [53.324210071720664, 6.04361300539104], [53.32408596310672, 6.043950334470512], [53.32401797749605, 6.044136398816475], [53.3239859336702, 6.044297858385118], [53.323958562258014, 6.04446413109906], [53.32390743135385, 6.044752248496981], [53.323887956893635, 6.044938331382263], [53.323873885056294, 6.045101009598383], [53.3238590870733, 6.045284687681552], [53.32384353777789, 6.045539804387653], [53.32383448985872, 6.045710288178485], [53.32382328420024, 6.045889173377435], [53.32382034536781, 6.04608605774965], [53.323826746998165, 6.04625415150302], [53.32384430465369, 6.046411429567082], [53.32387692543644, 6.046633561655503], [53.323900950752, 6.046787847589045], [53.32393216373208, 6.046930718699537], [53.32401792282294, 6.047292141411166], [53.32405345059775, 6.0474
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_50129897af7243ae84af9c339cca71f3 = L.popup({maxWidth: '300'
});
var html_19dd8fd0201a4efeb759878354d13431 = $('<div id="html_19dd8fd0201a4efeb759878354d13431" style="width: 100.0%; height: 100.0%;">Dantumadiel (0, 0%)</div>')[0];
popup_50129897af7243ae84af9c339cca71f3.setContent(html_19dd8fd0201a4efeb759878354d13431);
polygon_51eee33986c346d795f1b05c61363939.bindPopup(popup_50129897af7243ae84af9c339cca71f3)
;
var polygon_9147375363e14845a6fca1193c9b001a = L.polygon(
[[[[53.375211679718696, 5.850111068652949], [53.37531545331031, 5.849958773410351], [53.37633636166836, 5.8484913469106905], [53.37663829352857, 5.8480611646620915], [53.37668608800056, 5.8479930690937065], [53.37771226524705, 5.8465228250395285], [53.37805932611621, 5.84603087387064], [53.37846951987256, 5.8454392215604445], [53.38301091877081, 5.858531098277638], [53.38060306425852, 5.861465570816728], [53.380575018702025, 5.861503225366409], [53.380550628749525, 5.861543344545966], [53.38053010946367, 5.861585574597577], [53.380513641776815, 5.861629543150439], [53.38050137089565, 5.861674862504213], [53.380493405020786, 5.861721133047638], [53.38048981439272, 5.861767946782173], [53.380490630672426, 5.861814890919598], [53.38049584666222, 5.86186155152184], [53.38100913632899, 5.865077097471749], [53.38101856654582, 5.865122520591759], [53.38103216614431, 5.865166874168188], [53.38104981804884, 5.865209776371948], [53.382106853292385, 5.867474172402033], [53.38353618664399, 5.871348271111364], [53.38450495546026, 5.874317598052985], [53.38506006857838, 5.8770657268638224], [53.38507126159093, 5.877110418327582], [53.38592478305356, 5.879955136270764], [53.38594394929453, 5.880008009689866], [53.385968932086726, 5.880058396229085], [53.38599941535354, 5.880105658409364], [53.387027238468946, 5.881517985186846], [53.387424893222786, 5.883739143790016], [53.38716699273474, 5.886151856984064], [53.38716418009735, 5.886200572541394], [53.387166129506134, 5.886249330271658], [53.38717282239401, 5.88629766578352], [53.3871841950148, 5.88634511870705], [53.387200139050364, 5.886391237078498], [53.38722050264228, 5.886435581645014], [53.38724509183821, 5.886477730048287], [53.3872736724392, 5.886517280847293], [53.38730546457293, 5.886553282467286], [53.387305972230294, 5.886553857341799], [53.38734168357324, 5.88658711116023], [53.387380466336566, 5.886616725577732], [53.38742195113517, 5.886642418532797], [53.3874657428485, 5.886663945313753], [53.38751142438389, 5.8866811008895095], [53.38755856064911, 5.886693721862372], [53.387606702696424, 5.886701688024315], [53.38765539199853, 5.886704923501903], [53.387704164815844, 5.88670339747894], [53.38775255661334, 5.88669712448998], [53.38780010648499, 5.8866861642818895], [53.387846361543666, 5.886670621244798], [53.38789088123464, 5.8866506434178305], [53.38793324153165, 5.886626421079117], [53.387973038975474, 5.886598184933495], [53.38800989451674, 5.8865662039151685], [53.389015555922, 5.885603612616981], [53.39096138647854, 5.8837411173957435], [53.390977120293556, 5.883725371542526], [53.391421032896105, 5.8832608858908575], [53.39467718449563, 5.879853828535524], [53.39469589850425, 5.881062133895147], [53.39237674458305, 5.883731924277797], [53.392344071347374, 5.883773845032963], [53.392316032560444, 5.883818997180987], [53.392292945048226, 5.883866870522455], [53.392272936758516, 5.883914702871891], [53.39112886777234, 5.886649744613388], [53.391117333275574, 5.886680042872519], [53.389499970797296, 5.891381491741571], [53.38948846460321, 5.891419874439656], [53.38948006889565, 5.89145905525268], [53.388883476712536, 5.894913662445099], [53.388880546520504, 5.894932841992471], [53.388344701062714, 5.898962454264254], [53.38826987796031, 5.8995251315945945], [53.38762321832691, 5.9023635284632014], [53.387613600495584, 5.90242106213112], [53.38761074879807, 5.902479324412614], [53.38763453058474, 5.904993624258924], [53.38739877109083, 5.9088631794607895], [53.38684704130088, 5.913969236022098], [53.38684557943233, 5.913985139192724], [53.386593429897715, 5.917309918373544], [53.38659326256682, 5.917383265487401], [53.386784685141606, 5.920069819267495], [53.3867903975056, 5.9201175184709784], [53.387637117517926, 5.925132858738314], [53.388354959428355, 5.930443997569832], [53.388360277705345, 5.930691179728633], [53.38837536733121, 5.931392513319355], [53.38838155914306, 5.931680295513498], [53.38845351662997, 5.935024725860822], [53.38845806584665, 5.935236163738548], [53.38846170249454, 5.935286549715085], [53.388470404782666, 5.935336311568154],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_2ad1becc80634536b74fe7aafb54a7e9 = L.popup({maxWidth: '300'
});
var html_a0efedaab9ff4e36b7df9613484104f9 = $('<div id="html_a0efedaab9ff4e36b7df9613484104f9" style="width: 100.0%; height: 100.0%;">Dongeradeel (0, 0%)</div>')[0];
popup_2ad1becc80634536b74fe7aafb54a7e9.setContent(html_a0efedaab9ff4e36b7df9613484104f9);
polygon_9147375363e14845a6fca1193c9b001a.bindPopup(popup_2ad1becc80634536b74fe7aafb54a7e9)
;
var polygon_f19f6987a7d644b88b2d96e4038dc9fa = L.polygon(
[[[53.465894891007025, 5.673199508015758], [53.46657886883981, 5.674744064628537], [53.46632464455889, 5.677547383176248], [53.46557705119703, 5.67845748293569], [53.46554963088327, 5.678494168471414], [53.46552568252719, 5.678533209198605], [53.46550540707488, 5.678574277533995], [53.465488974653766, 5.678617028881045], [53.46547652314515, 5.678661104521385], [53.46520045859463, 5.679842744372556], [53.46385680811263, 5.685593975208119], [53.462631444314, 5.688979625802052], [53.46261472459884, 5.689035972617415], [53.462604732529606, 5.689093892139416], [53.46201129152766, 5.694369069087091], [53.462008192444564, 5.6944190416091764], [53.46187153141161, 5.705954043385134], [53.4608104611567, 5.714824147983657], [53.46080725054871, 5.714865404180392], [53.46080746245162, 5.714906784572727], [53.46101898482034, 5.719451046351848], [53.46070261629353, 5.724049742862753], [53.46070143841069, 5.724085122758707], [53.46072225550517, 5.733873310340916], [53.459936253346875, 5.755652436481733], [53.459935998245896, 5.755678847718393], [53.46024386302679, 5.774049397462565], [53.460288147458414, 5.776691886647778], [53.46028908576624, 5.776715249483879], [53.46080734945037, 5.78486273946793], [53.461434225933324, 5.7947177033069535], [53.46241767335356, 5.810178227074355], [53.4627474342981, 5.817898514556229], [53.46254432272487, 5.821165617628655], [53.46254460413039, 5.821231902560346], [53.46314227426406, 5.829685874376156], [53.463326991242525, 5.834523291238136], [53.46332763058115, 5.8345358742361215], [53.46390234422695, 5.843593533109394], [53.46390243907107, 5.8435949940341825], [53.464247314579815, 5.848789612862489], [53.46433875724307, 5.853021876138797], [53.46433942299164, 5.853039036324931], [53.464772853401755, 5.860777612271159], [53.465212086422035, 5.869077874540455], [53.46587884239857, 5.8818162408945955], [53.46686831760723, 5.906055603221368], [53.467333954785886, 5.921552965223693], [53.467333987625544, 5.921554021041036], [53.46761575515895, 5.930315197907377], [53.467720036102115, 5.938689382041834], [53.46750269851556, 5.948115215352958], [53.46695726735625, 5.956319712210762], [53.466340212035725, 5.960338713459336], [53.46633592248631, 5.960375871796824], [53.46604457460114, 5.964126834855357], [53.46522746707026, 5.9670937787081995], [53.46423671147724, 5.968886450870387], [53.463564773869905, 5.969442511354769], [53.46340293929303, 5.968322475879614], [53.46339340417697, 5.9682737337197445], [53.46337908041579, 5.96822617800029], [53.463360109340144, 5.9681802779471775], [53.463336678135086, 5.968136486450098], [53.46330901799318, 5.9680952355939], [53.463277401833366, 5.9680569323952675], [53.462954877518555, 5.967703521515287], [53.46291967163951, 5.967668592714812], [53.462881178744816, 5.967637323367526], [53.46283977752372, 5.9676100210981415], [53.462795875277294, 5.967586954503658], [53.462749903911465, 5.967568350510928], [53.46270231568793, 5.967554392144171], [53.46265357877488, 5.967545216724406], [53.462604172641186, 5.967540914518496], [53.46255458333946, 5.967541527851112], [53.46250529872431, 5.96754705068835], [53.46245680365285, 5.967557428697089], [53.462409575214735, 5.967572559779515], [53.46236407803863, 5.9675922950775515], [53.46232075972121, 5.967616440437308], [53.46228004642375, 5.967644758319149], [53.46224233867961, 5.96767697013458], [53.462208007453796, 5.96771275898698], [53.46217739049349, 5.967751772789197], [53.46216862541859, 5.967764160761679], [53.46182601488109, 5.967393960201721], [53.46178459990108, 5.967354077192466], [53.46173888005988, 5.96731921243781], [53.46097248636352, 5.966801649044128], [53.46093576182559, 5.966779089652563], [53.46089723091134, 5.966759776794638], [53.460857179923636, 5.96674385397399], [53.459175695268115, 5.9661579450921725], [53.45920927782779, 5.966013436323674], [53.460486807894455, 5.9661449274428655], [53.46155789266127, 5.966761183070833], [53.46160143242804, 5.966783473628763], [53.46164694188089, 5.966801403212259], [53.46169398547975, 5.966814800229452], [53.46174211300227, 5.966823536466586], [53.4617
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_2f87e2bb9ba04414a2d2e4d3034fd603 = L.popup({maxWidth: '300'
});
var html_e4255ddb469448b091572cf3c55741af = $('<div id="html_e4255ddb469448b091572cf3c55741af" style="width: 100.0%; height: 100.0%;">Ameland (0, 0%)</div>')[0];
popup_2f87e2bb9ba04414a2d2e4d3034fd603.setContent(html_e4255ddb469448b091572cf3c55741af);
polygon_f19f6987a7d644b88b2d96e4038dc9fa.bindPopup(popup_2f87e2bb9ba04414a2d2e4d3034fd603)
;
var polygon_a5fded5279374b698d68e3331e69d293 = L.polygon(
[[[53.20983813312905, 5.437989346050762], [53.209644457064186, 5.438459886729576], [53.209633709704086, 5.438485994983495], [53.20947544065938, 5.438877071721935], [53.20947064606092, 5.438888905491809], [53.209469278995904, 5.4388922867023215], [53.2094275949994, 5.438995377449227], [53.209199794016854, 5.439551291747308], [53.20906491054456, 5.439880259799018], [53.20877181790613, 5.440593974728685], [53.20853273873469, 5.441175047562663], [53.208362180960236, 5.441597236384608], [53.20827581277111, 5.44181154557753], [53.20815655026248, 5.442139142792064], [53.20787961076493, 5.442887285759172], [53.20760017046596, 5.44361138068842], [53.20741792819598, 5.444155139567909], [53.20733837927079, 5.444399965243595], [53.20724799486629, 5.444658665295334], [53.20717997247241, 5.44484889031642], [53.20716041226444, 5.4449017417841], [53.20715702070255, 5.444910912381838], [53.20714243579392, 5.444950300076739], [53.207088738622204, 5.445134871542363], [53.20706026041961, 5.445233598227448], [53.20699111346357, 5.445443905833286], [53.206925415986284, 5.4456538292087675], [53.206887011664406, 5.4457830129388975], [53.20686432906753, 5.445862170575253], [53.20683878926308, 5.445923049922264], [53.20676652225674, 5.44607963629116], [53.20668861716353, 5.446243922400654], [53.20664312816159, 5.4463429383584865], [53.20650977516406, 5.446665507350418], [53.20647776122866, 5.446752807414637], [53.206324450318085, 5.447200839617387], [53.20617418443799, 5.447629026790151], [53.20603206895108, 5.448036764404534], [53.205879836791226, 5.448474357182479], [53.205706414215314, 5.448965076492913], [53.205508732954215, 5.449516699218674], [53.205364738511804, 5.449930991211409], [53.20517120145433, 5.4504706386307324], [53.20500971087911, 5.450880617973165], [53.20489723733185, 5.451169055373813], [53.20474412263103, 5.4515559200242985], [53.20463644172421, 5.451851752644251], [53.204447401443986, 5.452368117554514], [53.20427430120093, 5.452832899631024], [53.20414685657501, 5.453179205639054], [53.204127661311354, 5.453231900393913], [53.20409763113173, 5.453314359966563], [53.20409708186081, 5.453315870850923], [53.204072559157304, 5.453383207803902], [53.20403487893998, 5.453487086272432], [53.20397754438702, 5.453645200108129], [53.20393842425309, 5.453753101369246], [53.20391516942388, 5.453817237314482], [53.20390622411595, 5.453842425828953], [53.20382350731755, 5.454075431239434], [53.203746609200905, 5.4542835723224625], [53.20362671933177, 5.454610635889836], [53.203453872995865, 5.455087118798393], [53.203320327234756, 5.4554542634019745], [53.203134288945385, 5.455958059638734], [53.2031043783037, 5.456032509591697], [53.203081746217435, 5.456090239252748], [53.203031023475816, 5.456213128453047], [53.202994545393814, 5.45627004201215], [53.202954456394025, 5.456324077944852], [53.2029041405676, 5.456380191821049], [53.202837476643126, 5.456457633788714], [53.20278579256338, 5.456502102939937], [53.202689265512156, 5.456571235713113], [53.20263929539446, 5.456604108995106], [53.20242382550475, 5.4567205052419085], [53.20211469777515, 5.4568850856936235], [53.201712483632136, 5.457102233395263], [53.20112233502518, 5.457427969727227], [53.20083922815991, 5.457578082098523], [53.20079095071449, 5.457604505427468], [53.20068920853286, 5.457647362268686], [53.20058647851668, 5.4576894245026475], [53.20051495616888, 5.457714776574229], [53.2003820022692, 5.457766202070195], [53.20025123403413, 5.4578136194000315], [53.2002246120333, 5.457824379838925], [53.20017946684657, 5.457857900696788], [53.200147837195935, 5.45788886981026], [53.20012379290945, 5.457917157849942], [53.200070984737344, 5.458007590173755], [53.20002115404246, 5.458123809942158], [53.20009778798237, 5.458221413536262], [53.20011537765825, 5.458334691843252], [53.2001432039622, 5.4584283538511755], [53.20017030171865, 5.458538834968503], [53.20017771244952, 5.4586037322896335], [53.200179131087765, 5.458680292284871], [53.200195321583614, 5.459028342747534], [53.20020917270758, 5.459215823980288], [53.200223818813306, 5.459380500368], [53.2002
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fee28a",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_24e58f8b7cf54f61b97eefc47a03db1e = L.popup({maxWidth: '300'
});
var html_9c89fbfc5f244212b6a80a1e1c27cbf0 = $('<div id="html_9c89fbfc5f244212b6a80a1e1c27cbf0" style="width: 100.0%; height: 100.0%;">Harlingen (7, 19%)</div>')[0];
popup_24e58f8b7cf54f61b97eefc47a03db1e.setContent(html_9c89fbfc5f244212b6a80a1e1c27cbf0);
polygon_a5fded5279374b698d68e3331e69d293.bindPopup(popup_24e58f8b7cf54f61b97eefc47a03db1e)
;
var polygon_b21692f741e9473c8b7d7a165a71fd97 = L.polygon(
[[[53.34575987910701, 6.2644403476487485], [53.34560872016441, 6.26560761967956], [53.34560734031609, 6.265619363881715], [53.34547941801557, 6.266831674044096], [53.34547811957323, 6.266845932831891], [53.34534250850742, 6.2686153095215], [53.345341907250436, 6.268624191420567], [53.345209107156926, 6.270884362606905], [53.34500409100883, 6.272409530264661], [53.3448463808085, 6.273239404526662], [53.34478574401875, 6.273558476539974], [53.3447762114854, 6.273588839679805], [53.344522873973226, 6.274395773369355], [53.34447116338438, 6.2745604825586465], [53.34407931887651, 6.275597342791173], [53.34309011442218, 6.27767932045665], [53.34308090006338, 6.277699898479892], [53.34240116060968, 6.279314585392467], [53.342187533151694, 6.279822046683271], [53.34216655598584, 6.279882398702693], [53.34180517669001, 6.281185216417156], [53.34180071710401, 6.281202483673193], [53.341503763411914, 6.282443258802937], [53.341497508864876, 6.2824734860406455], [53.34121565998473, 6.28408480988579], [53.341211522133975, 6.284113264313142], [53.34094919443267, 6.286371425519061], [53.340863615041066, 6.286352239437666], [53.34040876772846, 6.286250268170416], [53.3390693133891, 6.285949995338088], [53.33863812979271, 6.285853344068522], [53.338609367837996, 6.285846899447867], [53.33727479030078, 6.2855477498841825], [53.33681855341963, 6.285445482062089], [53.3363762498783, 6.285346343069739], [53.33632964790625, 6.285335905868119], [53.33629491602774, 6.285328120080934], [53.33548190456316, 6.285145902493344], [53.33502060306914, 6.285042515970645], [53.3336859623411, 6.2847434108890345], [53.3332271314862, 6.28464058086012], [53.33248985604563, 6.284475370769359], [53.33189150668553, 6.284341284516116], [53.33154367856537, 6.284263336901821], [53.33149337808511, 6.284252095834119], [53.331437305974674, 6.284239549857192], [53.33141530054554, 6.284234625004113], [53.3309600078391, 6.284132544206995], [53.33091747626664, 6.284123014125279], [53.330101736173305, 6.283940260936832], [53.32964391733543, 6.283837694442622], [53.329003687003585, 6.283694259606402], [53.32887238839625, 6.283664839590718], [53.328425530724886, 6.2835615883794596], [53.328305197734466, 6.2835337800041495], [53.32829253549578, 6.283530845759175], [53.32826817883964, 6.283525221389903], [53.32804293666331, 6.283473183834266], [53.3279001005245, 6.28344018804904], [53.32785975026109, 6.283430481173304], [53.32712274307826, 6.283253284727051], [53.32711634786448, 6.28325179150234], [53.32696630951426, 6.283217796387554], [53.326707033612244, 6.283159047249714], [53.32650458631151, 6.283112911497704], [53.32645259598522, 6.283100972475487], [53.32619204694955, 6.283039116612165], [53.326185902642884, 6.283037698785784], [53.326059470780244, 6.283009362563755], [53.325947824692115, 6.282984330877752], [53.325567754300806, 6.282897585787833], [53.32540177654515, 6.282856990597649], [53.3252689058525, 6.282824020019796], [53.32526107106787, 6.28282214277011], [53.3249714306252, 6.282755206409508], [53.32472132572522, 6.282696756244619], [53.32470220069415, 6.2826922837710555], [53.32469122249212, 6.282689846343607], [53.32462045793453, 6.282674967879334], [53.32426905568593, 6.282594920710345], [53.32303434028945, 6.282313988555181], [53.323029484631746, 6.282312909132756], [53.322917784917884, 6.282288660499118], [53.322475597569, 6.2821855515037885], [53.32159105071417, 6.281979266691299], [53.32159049963246, 6.281979138502471], [53.32113093694555, 6.281872512249793], [53.32097276456199, 6.281835807824855], [53.32097029586179, 6.281835241540424], [53.32067555238294, 6.281768416970366], [53.31992596481595, 6.281598460814422], [53.319901540384116, 6.281593559321256], [53.319783540239854, 6.281572922720451], [53.31974646683012, 6.281564884884437], [53.3195148823543, 6.281513320736784], [53.319428140506865, 6.281494017094762], [53.319337970015866, 6.281472491986246], [53.31899405928827, 6.281390382141078], [53.31895700959851, 6.281383003636174], [53.31884307121489, 6.281364757352574], [53.3186413736887, 6.281319069168974], [53.31847181443588, 6.2812
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_51c5fbd377dd4e9bb5e1e2153e10db93 = L.popup({maxWidth: '300'
});
var html_2fd6a7e0d6ca46a3b34c4e6d667ee431 = $('<div id="html_2fd6a7e0d6ca46a3b34c4e6d667ee431" style="width: 100.0%; height: 100.0%;">Kollumerland en Nieuwkruisland (0, 0%)</div>')[0];
popup_51c5fbd377dd4e9bb5e1e2153e10db93.setContent(html_2fd6a7e0d6ca46a3b34c4e6d667ee431);
polygon_b21692f741e9473c8b7d7a165a71fd97.bindPopup(popup_51c5fbd377dd4e9bb5e1e2153e10db93)
;
var polygon_01d83189e0a240d0a6ae7a8484b8bf49 = L.polygon(
[[[[53.47193300178735, 6.0595555504378], [53.47201860868304, 6.0595160007165125], [53.47180487209525, 6.060001034817661], [53.47060816348886, 6.062716734966402], [53.46901875523744, 6.0641774176009555], [53.46898297186578, 6.0642138440515305], [53.46895109026047, 6.064253730129705], [53.46892344292575, 6.064296659849851], [53.46890031820517, 6.064342185483152], [53.46888195727441, 6.0643898322271195], [53.468868551625924, 6.064439103157472], [53.46886024107184, 6.064489484410729], [53.46874972048504, 6.065468646880935], [53.46621893860135, 6.0650373062714085], [53.465845814990814, 6.0646536651819805], [53.4669766249255, 6.06420737250214], [53.467022632191394, 6.064186469703], [53.467066294621404, 6.064161029818327], [53.4671071662308, 6.064131312700821], [53.467144829541326, 6.064097621892477], [53.46717889984554, 6.064060301524084], [53.467209029136356, 6.064019732800146], [53.46723490966167, 6.06397633010511], [53.4684890712322, 6.0616086871474995], [53.46901444017756, 6.060903166391211], [53.47193300178735, 6.0595555504378]]], [[[53.4750862538122, 6.058098743652412], [53.47515988273995, 6.058064724884541], [53.47500007101985, 6.0583722429294316], [53.4750862538122, 6.058098743652412]]], [[[53.51529009773884, 6.389837834905169], [53.51436839268511, 6.390691584619445], [53.51419366395357, 6.390739785728176], [53.513437290892746, 6.390948440709099], [53.5126749945378, 6.390384043897177], [53.51263560293228, 6.390357674628782], [53.51259389120519, 6.390335154221938], [53.51255023426769, 6.390316685093387], [53.51250502451479, 6.390302433246382], [53.5124586682984, 6.3902925267786275], [53.51241158227505, 6.390287054730917], [53.512364189660865, 6.390286066286825], [53.51231691642766, 6.390289570330631], [53.51227018747422, 6.390297535367473], [53.51222442280729, 6.390309889806424], [53.51218003376645, 6.390326522603964], [53.51213741932694, 6.3903472842620515], [53.512096962513645, 6.390371988171841], [53.51205902695837, 6.390400412290946], [53.51156785530583, 6.390806171411768], [53.51082264212277, 6.389608734801434], [53.510796785021185, 6.389571128574035], [53.51076760666882, 6.389536036669059], [53.510735350158484, 6.389503751446714], [53.510700284227916, 6.389474541883978], [53.510662701020955, 6.389448651333665], [53.510622913653506, 6.389426295496997], [53.50930999240396, 6.388765530882528], [53.50785403764404, 6.382132529455669], [53.50684553317898, 6.372059818235013], [53.506840108089655, 6.372021030627502], [53.50683166372858, 6.371982786636383], [53.50574219523144, 6.367828747985116], [53.505726015709016, 6.3677781719312145], [53.505704563731776, 6.367729596970107], [53.5056780812535, 6.367683570971816], [53.50564686696627, 6.367640613056982], [53.50561127293156, 6.367601207741769], [53.50557170060938, 6.367565799473082], [53.502841320358385, 6.365372286463799], [53.50240659272257, 6.364417873156026], [53.50490618145486, 6.35926451801928], [53.504924253259794, 6.359222457718269], [53.50493840245331, 6.359178920844499], [53.50601742060145, 6.355256220113671], [53.50604479259424, 6.355156711003192], [53.50605652308993, 6.355102442386275], [53.5066787812642, 6.351180026579947], [53.506684482548415, 6.35112345598349], [53.506683724490166, 6.3510666038738295], [53.50626118956552, 6.3450592741120815], [53.50625709394488, 6.345021558247238], [53.506208396878186, 6.344690652781338], [53.50591918563231, 6.34272540952241], [53.505912108539164, 6.342687522451114], [53.50590213412617, 6.342650293074216], [53.504635211329614, 6.338559343017373], [53.504621509649816, 6.338520765110462], [53.504604697874164, 6.338483437438014], [53.50352110176084, 6.336318819977605], [53.503510640517234, 6.336299040780712], [53.501589295856256, 6.332855067796914], [53.500822590702995, 6.330472335026986], [53.50085659867049, 6.329443361381655], [53.50090556174612, 6.327961893415878], [53.50090908502549, 6.327855290114307], [53.50090889590105, 6.327817285124096], [53.500905820615685, 6.327779404288982], [53.50090300887829, 6.327755891893008], [53.50054509797823, 6.324762958476599], [53.50029365354688, 6.319857923685882], [53.50
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_291ab463305b46789e15308b261aa1d0 = L.popup({maxWidth: '300'
});
var html_685485aaf4504590a8ec96121ba7cb2d = $('<div id="html_685485aaf4504590a8ec96121ba7cb2d" style="width: 100.0%; height: 100.0%;">Schiermonnikoog (0, 0%)</div>')[0];
popup_291ab463305b46789e15308b261aa1d0.setContent(html_685485aaf4504590a8ec96121ba7cb2d);
polygon_01d83189e0a240d0a6ae7a8484b8bf49.bindPopup(popup_291ab463305b46789e15308b261aa1d0)
;
var polygon_f629a5ba3f3e4505b9421847d88e9abc = L.polygon(
[[[[53.25455860028397, 5.2555114077055745], [53.253784176804835, 5.259036185307247], [53.25254344032144, 5.263469889456295], [53.2525313995101, 5.263524535614219], [53.25252554018863, 5.2635801849813815], [53.25236569937922, 5.266845153416133], [53.25220184693421, 5.267338858938373], [53.25211087134121, 5.265263775950789], [53.25210760136635, 5.262080717157426], [53.252105025452224, 5.262030540167252], [53.2520974268196, 5.261980875023952], [53.252084882195405, 5.2619322232194605], [53.2520675182485, 5.2618850760135585], [53.252045510310694, 5.261839909473398], [53.25201908060632, 5.261797179666436], [53.25198849600832, 5.261757318055302], [53.251954065343554, 5.261720727141131], [53.25191613627435, 5.261687776399311], [53.251875091788094, 5.261658798548731], [53.25183134632994, 5.261634086192156], [53.25178534161803, 5.261613888861684], [53.251737542183214, 5.261598410499107], [53.25168843067851, 5.261587807396614], [53.25098950328609, 5.261473314175499], [53.250651822188125, 5.261193025645646], [53.25058093833399, 5.261134189271962], [53.25043835172284, 5.259927257733124], [53.24993466886504, 5.255663808859628], [53.249849843099696, 5.25267398135802], [53.2502414407274, 5.249908626836014], [53.25103105546529, 5.248697144105266], [53.25234347638244, 5.2486929253372985], [53.25239483238559, 5.2486901149025105], [53.252445627966125, 5.248682043558046], [53.25249532563821, 5.248668796709628], [53.25254339953335, 5.248650514526802], [53.25258934096483, 5.248627390459752], [53.25263266381025, 5.248599669192331], [53.25267290965542, 5.2485676440529865], [53.25270965264494, 5.248531653910939], [53.25274250398836, 5.248492079590491], [53.25336992489284, 5.247651814596112], [53.254287263955035, 5.247903703198259], [53.25508834187034, 5.250200826430741], [53.25493201921116, 5.253811796696817], [53.25468396141696, 5.254940828267383], [53.25455860028397, 5.2555114077055745]]], [[[53.2946547841704, 5.159351500691284], [53.295743174863404, 5.159644939741725], [53.29651170692961, 5.159852193558006], [53.296484648877716, 5.159869488531998], [53.295508806657075, 5.1600871514143325], [53.294803357305845, 5.160244502813853], [53.2942514699249, 5.160032633927113], [53.29276413722555, 5.159461648733198], [53.292762956360434, 5.158841551797027], [53.2946547841704, 5.159351500691284]]], [[[53.41005849770674, 5.47559186606592], [53.40969022865513, 5.476931088323671], [53.409459118992494, 5.47705228910617], [53.408764107134964, 5.476062844268292], [53.40791695970415, 5.472780299312327], [53.40791206409665, 5.472762669423449], [53.407359620096194, 5.470905713560811], [53.407330831123375, 5.470808943839693], [53.40667830156471, 5.468615565708126], [53.406282250893035, 5.466643756282099], [53.40627854463461, 5.4666268288381135], [53.405575893079096, 5.463664313477331], [53.40521413227165, 5.460770671782554], [53.40482657747149, 5.457465056662207], [53.40466648718227, 5.455854604867869], [53.40464326029576, 5.455620950589169], [53.404467505781156, 5.4538529222172745], [53.4044892371747, 5.452731124711095], [53.40467558024402, 5.451081152057839], [53.40467867580161, 5.451032974400662], [53.404706532795075, 5.449277686018612], [53.40470603496646, 5.449246077629033], [53.40467335453875, 5.448556640670813], [53.40465687029993, 5.448208883794033], [53.404627451274905, 5.447588250450118], [53.404696626939085, 5.444892713520334], [53.40469609514212, 5.444853506713541], [53.404419969819884, 5.439627087818351], [53.404595577238396, 5.437081811804614], [53.40459640237333, 5.437028409309296], [53.40424762915649, 5.427850784728228], [53.404252995740386, 5.4277474321707775], [53.40430486748512, 5.426748458228085], [53.404692413296985, 5.419284892666318], [53.4046930317799, 5.419251602601139], [53.40463076274579, 5.415023254624704], [53.40460972509305, 5.413594703216496], [53.404600274160245, 5.41295294229661], [53.40460003467896, 5.412573038683106], [53.40459986084708, 5.412297278683437], [53.404598152176895, 5.4095867120644], [53.4046197245106, 5.40874814092547], [53.40466946365183, 5.406814654781576], [53.404727396475586, 5.404562659487047],
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fee186",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_517b7b34433c4c139f9fb740faedd7b7 = L.popup({maxWidth: '300'
});
var html_285dd60a0762402ab50f9450ce9d6ff2 = $('<div id="html_285dd60a0762402ab50f9450ce9d6ff2" style="width: 100.0%; height: 100.0%;">Terschelling (1, 20%)</div>')[0];
popup_517b7b34433c4c139f9fb740faedd7b7.setContent(html_285dd60a0762402ab50f9450ce9d6ff2);
polygon_f629a5ba3f3e4505b9421847d88e9abc.bindPopup(popup_517b7b34433c4c139f9fb740faedd7b7)
;
var polygon_1eb14b91eed349cab6f004dc0d46b2bf = L.polygon(
[[[[53.295743174863404, 5.159644939741725], [53.2946547841704, 5.159351500691284], [53.292762956360434, 5.158841551797027], [53.292758702623274, 5.156607825556846], [53.292756630070436, 5.156563289694052], [53.29243634749576, 5.153057373527685], [53.29281592779627, 5.150371920187414], [53.29282028201786, 5.150325745107803], [53.292820338922766, 5.150279365220086], [53.292816098021355, 5.150233179594855], [53.29280759580399, 5.15018758563119], [53.29249407466455, 5.148853117223442], [53.2924914084605, 5.148842310515585], [53.292141166836394, 5.147487719969363], [53.29212370188967, 5.147433245580077], [53.29210012897376, 5.147381122638032], [53.29143799709352, 5.146115365781446], [53.2914154592796, 5.146076616782182], [53.291389541550664, 5.146040042073336], [53.28987704556708, 5.144096564852228], [53.28798527830324, 5.140443416452684], [53.28644811161107, 5.13716838388221], [53.286439442301926, 5.137150816584368], [53.28469051029984, 5.133775117039892], [53.28317353497084, 5.129481579169042], [53.282649529449806, 5.127953361110129], [53.28244844020839, 5.126451031544452], [53.28244712257906, 5.1264418377909315], [53.282127921031034, 5.124352950845987], [53.282163000986344, 5.122231379151409], [53.28232867070389, 5.120958727628396], [53.28243074244527, 5.120174626834062], [53.28337815368462, 5.118714621800031], [53.28340343294244, 5.118670994795331], [53.28560614723333, 5.11438489593397], [53.28612374782612, 5.113589000701716], [53.28749380537031, 5.111482314035326], [53.28810133857393, 5.111548409569888], [53.28893187059216, 5.113083655938952], [53.28921179822027, 5.113641478800509], [53.28963553138475, 5.114485868644885], [53.29101203404351, 5.118960954676816], [53.29103647870919, 5.119024610552684], [53.29245532792173, 5.122078837902841], [53.29247695675715, 5.122120221101264], [53.29250235179391, 5.122159406146133], [53.29253129154914, 5.122196051284976], [53.29256352362468, 5.122229836917123], [53.29259876690841, 5.122260468381098], [53.29263671402594, 5.12228767852451], [53.29267703402139, 5.122311230034025], [53.29413116208555, 5.123071865030063], [53.29537910421954, 5.124024366277826], [53.297194506054886, 5.125409985423349], [53.298894346873205, 5.127343148189414], [53.29992209615952, 5.129125976327714], [53.2998740397055, 5.132645912924335], [53.299875023438084, 5.132684820744028], [53.30004444425185, 5.135319802997208], [53.30021620913329, 5.1401433302034345], [53.29894420802638, 5.145358727444268], [53.29893477245873, 5.145408062528125], [53.29893033437788, 5.145458095356091], [53.298772025892816, 5.149597959277943], [53.298772258255944, 5.14964150259999], [53.29910914272855, 5.15652610536356], [53.29865119774167, 5.158484673158044], [53.29651170692961, 5.159852193558006], [53.295743174863404, 5.159644939741725]]], [[[53.30105231611505, 5.099383420536489], [53.30080299269759, 5.0986395097366115], [53.30078623911882, 5.098596284621974], [53.30076555417225, 5.098554796962093], [53.30025981159494, 5.0976482820209], [53.30023664959185, 5.0976107568184], [53.30021027133028, 5.097575418361636], [53.30018088199294, 5.097542541529973], [53.30014871018409, 5.097512382055085], [53.29938724410355, 5.096859186187986], [53.29938213765126, 5.096854864763887], [53.29881576138757, 5.0963820247955205], [53.29842429217624, 5.095918504319968], [53.29839675733769, 5.095888474276736], [53.29836686893257, 5.0958607857580045], [53.29727987931152, 5.09493316702005], [53.29683421771577, 5.094361937252231], [53.29626587900617, 5.0933111719071205], [53.29599593009603, 5.092507500957651], [53.29600657800135, 5.092451350652432], [53.29617244208979, 5.092278360539105], [53.29640834472491, 5.092192318276325], [53.296451694048464, 5.092174155813423], [53.29649314645155, 5.0921520032246566], [53.2965323356543, 5.092126056253749], [53.2965689153748, 5.092096544172174], [53.29660256238896, 5.092063727753277], [53.29663297938652, 5.092027896968042], [53.296659897598154, 5.091989368422866], [53.296683079170364, 5.091948482561972], [53.29710893726282, 5.091107563736949], [53.297132352072616, 5.091053690114549], [53.29714928693382,
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#888",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_74953d8bb80b42d192dfe95ce03b77d0 = L.popup({maxWidth: '300'
});
var html_2de3213710304e6994a605974e3d20c7 = $('<div id="html_2de3213710304e6994a605974e3d20c7" style="width: 100.0%; height: 100.0%;">Vlieland (0, 0%)</div>')[0];
popup_74953d8bb80b42d192dfe95ce03b77d0.setContent(html_2de3213710304e6994a605974e3d20c7);
polygon_1eb14b91eed349cab6f004dc0d46b2bf.bindPopup(popup_74953d8bb80b42d192dfe95ce03b77d0)
;
var polygon_b32b0eefd4f047efabe202b104f5bff2 = L.polygon(
[[[53.37332465989894, 5.852787503939816], [53.3726815166471, 5.853689945758588], [53.37258642958759, 5.8538095455246575], [53.372398731815274, 5.854058896923892], [53.372186333323754, 5.854377495462308], [53.372178688266864, 5.854388696230421], [53.37161495189858, 5.855215102577823], [53.371519654914984, 5.85535371404308], [53.37126057253685, 5.855730595125918], [53.37094964568407, 5.856180929106106], [53.37064478534462, 5.856598225466993], [53.37050301732875, 5.8568121636700745], [53.370345747585354, 5.857049517474567], [53.370253614008405, 5.85717588176254], [53.370121252869076, 5.857357437293496], [53.36999195431945, 5.857534789744228], [53.36972859538855, 5.857896002937669], [53.36948519479387, 5.858265633285171], [53.368940478868915, 5.859053221063307], [53.3686608508673, 5.8594651513041605], [53.36798027934038, 5.860476587598827], [53.367247726039686, 5.861550273689842], [53.36664230125065, 5.862435926764554], [53.36595612641499, 5.863446862194752], [53.36556503848659, 5.86402882587451], [53.3653382759931, 5.864371515728814], [53.36531753927239, 5.864393924033894], [53.36529901263954, 5.864402791848536], [53.365287982447434, 5.86439047158981], [53.36512592214824, 5.864642497573906], [53.364994916526506, 5.8648192322142965], [53.364907652753004, 5.864814538451411], [53.36482154478504, 5.864817503167783], [53.36480853469291, 5.8651204067710845], [53.36483376287823, 5.865091560395614], [53.3647024170133, 5.867358793386248], [53.36470198328744, 5.867476347954564], [53.36470075605525, 5.8678128053214476], [53.364732695067595, 5.867820522524164], [53.36472515823113, 5.868078585826399], [53.36471483326234, 5.868267547874881], [53.36464767725858, 5.86828108252315], [53.36465910442571, 5.868295106040772], [53.364665344481296, 5.868316445789094], [53.364659329741244, 5.8684049314865305], [53.3646346398017, 5.868949956543376], [53.36460977551125, 5.8695333289603475], [53.364597483858255, 5.869880550888275], [53.36458901152052, 5.870119870441313], [53.364573497120745, 5.870568678295353], [53.36456667571983, 5.870893113317734], [53.364538349461405, 5.871026066822598], [53.36459634775121, 5.871064348201029], [53.36459195363948, 5.8711292822099255], [53.36457166164369, 5.871429201401665], [53.364571225447655, 5.871660214517911], [53.36452961945948, 5.871694776057812], [53.36448872543429, 5.871728760600261], [53.364523696888945, 5.871826734331474], [53.36459477364484, 5.872033166368012], [53.36464305580219, 5.872181372547079], [53.36468135001484, 5.8723219712105195], [53.36469641376329, 5.872456720871266], [53.364706311692984, 5.8725466618117155], [53.36470261795174, 5.872676061979042], [53.36468106790949, 5.872721319355027], [53.36458302636596, 5.872862513413817], [53.364486969429045, 5.873001655331915], [53.36424336182599, 5.873337415485776], [53.36391362877761, 5.873804460611684], [53.363766206301804, 5.874009141832543], [53.36370317092989, 5.8740966496933], [53.363321006882416, 5.874623369438782], [53.36310764445297, 5.874922261702559], [53.36295866243234, 5.875125475458069], [53.36283154144671, 5.875304391845639], [53.36261363497072, 5.875619973079301], [53.36236446267096, 5.875972208203667], [53.3622898376148, 5.876061245443828], [53.36227383506458, 5.876072254103275], [53.362211275535536, 5.876115314082691], [53.36214271812824, 5.876157389910486], [53.36207699858155, 5.876164303943739], [53.36199191824945, 5.8761132281167985], [53.36197733473205, 5.876104470257073], [53.36175342305552, 5.875909782471931], [53.361651420131956, 5.875828608924292], [53.36159988044125, 5.875775587339589], [53.36147637871766, 5.875733494802566], [53.361152124476604, 5.875630348458489], [53.361046871332384, 5.875594982124947], [53.36103142396478, 5.875621888271103], [53.360977626502645, 5.875715606124969], [53.36105464002865, 5.875947494218196], [53.361069121537525, 5.876001190891142], [53.36106864955723, 5.876039998949734], [53.361062433128524, 5.8760772684979665], [53.361058935002774, 5.876084634451025], [53.36104090877673, 5.876122626081722], [53.3610101075596, 5.876171182263751], [53.36094045128508, 5.876297764153733], [53.36
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc9",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_32db9b0280df46b0a164abb75c443e5c = L.popup({maxWidth: '300'
});
var html_90180ea2e0674e349a60fa3596e70390 = $('<div id="html_90180ea2e0674e349a60fa3596e70390" style="width: 100.0%; height: 100.0%;">Ferwerderadiel (1, 1%)</div>')[0];
popup_32db9b0280df46b0a164abb75c443e5c.setContent(html_90180ea2e0674e349a60fa3596e70390);
polygon_b32b0eefd4f047efabe202b104f5bff2.bindPopup(popup_32db9b0280df46b0a164abb75c443e5c)
;
var polygon_9dfa93ace9d3447f8476aafec95ba479 = L.polygon(
[[[[52.95446367289039, 5.408531037716525], [52.95426090139331, 5.407874904035726], [52.954825511951356, 5.407523081551722], [52.95494576594951, 5.407578899118848], [52.954993013232674, 5.407597967674468], [52.955041955782946, 5.407612128972177], [52.9550920853974, 5.40762123596584], [52.95514288154707, 5.40762519409151], [52.95519381678187, 5.407623962249347], [52.95524436220754, 5.407617553230383], [52.95529399297743, 5.407606033583708], [52.955342193742396, 5.407589522925441], [52.95538846400197, 5.407568192696684], [52.95574827778572, 5.407379527900801], [52.9559454244806, 5.407571827798478], [52.95613133781713, 5.407927885326217], [52.955976449558484, 5.408908635357154], [52.955971128261126, 5.408958363789995], [52.9559708014285, 5.409008375052916], [52.95597547233054, 5.409058168786583], [52.95598509423521, 5.409107246808029], [52.956083428067075, 5.409502847323309], [52.95609223525207, 5.409538278942908], [52.95610609832982, 5.409584425958679], [52.956124338997654, 5.409629024277326], [52.95614037007444, 5.409659470904519], [52.9561467878558, 5.409671659717478], [52.95617323642333, 5.409711936326874], [52.956203439074315, 5.409749480059546], [52.9562371153189, 5.4097839422495495], [52.956273952408225, 5.409815002849012], [52.9563136082389, 5.409842373400383], [52.95635571453009, 5.409865799715323], [52.95639988024369, 5.409885064235335], [52.956445695215905, 5.409899988052207], [52.956492733966385, 5.409910432569529], [52.95654055964965, 5.40991630078982], [52.956588728112024, 5.40991753821534], [52.95663679201646, 5.409914133354209], [52.95668430499695, 5.409906117827126], [52.95673082580386, 5.409893566073714], [52.9567759224018, 5.4098765946612035], [52.956819175981934, 5.4098553612018785], [52.95686018485137, 5.4098300628893465], [52.95689856816369, 5.4098009346672145], [52.95749840527068, 5.4092983984511465], [52.9575293187294, 5.409270216739084], [52.9575577683133, 5.409239549623133], [52.95758355489227, 5.409206611754803], [52.95795646222654, 5.408686879988288], [52.95978322013656, 5.408434899283802], [52.960077232447425, 5.411172995041629], [52.96008479807174, 5.411221174597558], [52.960097021543426, 5.411268387890396], [52.96011378656798, 5.41131418573131], [52.9601349336424, 5.411358132398126], [52.96016026157272, 5.4113998097808], [52.96018952938817, 5.411438821359332], [52.96022245863379, 5.411474795976273], [52.96025873601963, 5.411507391367923], [52.96029801640146, 5.41153629742065], [52.960339926064414, 5.411561239121308], [52.960619223211296, 5.411709511073901], [52.96139008338477, 5.412118741688575], [52.96328538503444, 5.413124910492954], [52.96333134604737, 5.413146395793685], [52.963379247752684, 5.413163112835441], [52.96342859694813, 5.413174889497363], [52.9634788855279, 5.4131816045253895], [52.96352959571418, 5.413183188780711], [52.96358020538821, 5.413179625951626], [52.96363019346615, 5.413170952721492], [52.96367904526417, 5.413157258391025], [52.963726257797745, 5.413138683958851], [52.96467532758285, 5.4127084884247685], [52.9678337814051, 5.411761503481357], [52.96787816604808, 5.411745884515081], [52.96792088596195, 5.411726162507091], [52.96796156282793, 5.411702512111436], [52.96948469262392, 5.410718228019252], [52.97039520873853, 5.410491880897907], [52.97051066162993, 5.410463180220127], [52.970942876516716, 5.410355735009817], [52.97099110178201, 5.410341130341056], [52.9710376122252, 5.41032174603718], [52.971081935491334, 5.410297778963052], [52.971123621438174, 5.410269472525645], [52.97116224670782, 5.410237114202031], [52.97119741902628, 5.410201032619795], [52.97122878118734, 5.410161594219524], [52.97125601468035, 5.410119199533283], [52.971278842924924, 5.410074279116854], [52.971297034079925, 5.410027289177055], [52.97131040339798, 5.409978706938558], [52.97139447307927, 5.409599433133757], [52.97205109337038, 5.409598570897714], [52.9721037024817, 5.409598501814451], [52.97215443785903, 5.409595854100541], [52.97220464264762, 5.409588071549216], [52.972253107586404, 5.409575414946181], [52.972253798515375, 5.409575234510304], [52.972301397959626, 5.4
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffdc7",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_d24d7ddee7204e4cb710e2b10649c2c2 = L.popup({maxWidth: '300'
});
var html_75b73b109b264ce3b9603003f0217c6a = $('<div id="html_75b73b109b264ce3b9603003f0217c6a" style="width: 100.0%; height: 100.0%;">Súdwest-Fryslân (6, 1%)</div>')[0];
popup_d24d7ddee7204e4cb710e2b10649c2c2.setContent(html_75b73b109b264ce3b9603003f0217c6a);
polygon_9dfa93ace9d3447f8476aafec95ba479.bindPopup(popup_d24d7ddee7204e4cb710e2b10649c2c2)
;
var polygon_23a36b486e094dbb98911132b7d01475 = L.polygon(
[[[[53.04991737218333, 5.797867859250339], [53.04980870085548, 5.797947047380133], [53.0498584173969, 5.798073707964035], [53.049715767770955, 5.798231744438682], [53.04971023050528, 5.798237627412537], [53.04963724815387, 5.798315123188399], [53.04941906389348, 5.798571641473139], [53.049210956469246, 5.79886359505992], [53.04904224106722, 5.799085771015765], [53.04897931572874, 5.799160153911213], [53.04875032838869, 5.799403676262753], [53.04859363318501, 5.799569087218999], [53.04844622415095, 5.7997048354672], [53.04836318369567, 5.799782917276036], [53.0482712839267, 5.799850296671125], [53.04822696359179, 5.799902649595146], [53.048083741588194, 5.800069586462974], [53.047963301055525, 5.800212715254577], [53.04790839519645, 5.800272662151748], [53.047690071546675, 5.800633333163056], [53.047617492082864, 5.800812285872637], [53.047552058247916, 5.800967327293216], [53.04747822177974, 5.801104260920357], [53.04742881978197, 5.80120180560636], [53.04740816767129, 5.801238739065667], [53.047202721927974, 5.80164499001245], [53.04716617548572, 5.801712340292025], [53.046998679633575, 5.801928586909914], [53.04687326106914, 5.802091492184895], [53.04679938714532, 5.8022233510713805], [53.046707048082034, 5.802536028835384], [53.046646201546345, 5.802774449724454], [53.046320812146206, 5.8034416667159565], [53.04626047430259, 5.803579913916537], [53.04621918553454, 5.803682466430958], [53.04617004317458, 5.8038185532309114], [53.04600093794807, 5.804350936407914], [53.04595985828481, 5.804455145089562], [53.0459101852771, 5.8045754947080725], [53.04586220713665, 5.804653034078457], [53.04578648429387, 5.804783451663434], [53.04554889169144, 5.805230918780259], [53.04546043771119, 5.805404155158272], [53.04528404808269, 5.805761531074106], [53.0449985728236, 5.806275760062028], [53.04487216656318, 5.806554896437374], [53.04471664518638, 5.806943776986996], [53.04466877417109, 5.807056920758117], [53.04461560738823, 5.807176051515522], [53.044580779021366, 5.807242112900576], [53.04448838543825, 5.807392474701117], [53.04435881285641, 5.807633253136694], [53.04430192759401, 5.807754359448399], [53.04422789633609, 5.807916363996081], [53.0441384311256, 5.808066766988414], [53.04396922647796, 5.808376983639154], [53.04383539645654, 5.808660061474263], [53.043751275197465, 5.808859464216784], [53.043690997336064, 5.809019809176928], [53.043690313485946, 5.809022115929049], [53.04369026076047, 5.809022291970233], [53.04368944928055, 5.8090250188443555], [53.04368457705137, 5.809041396435654], [53.04356697299575, 5.809436844484435], [53.04338812206688, 5.810024441038522], [53.04333005699419, 5.810208929376264], [53.04323728633708, 5.810490220598954], [53.04303326302144, 5.811056778107913], [53.04284205542602, 5.811528224257556], [53.042650574737415, 5.812068623234812], [53.04237214069131, 5.812831548186679], [53.0421642180006, 5.813419829703613], [53.041875531374465, 5.81440167910748], [53.041789818303194, 5.814649071069828], [53.04164145084288, 5.815015124114029], [53.04143441371589, 5.8155564871054395], [53.0412968596076, 5.815993760474655], [53.041078867772804, 5.816816814625667], [53.04105555570383, 5.816897394168216], [53.04099865162736, 5.81707100581671], [53.040342535690264, 5.818887710988184], [53.04027249895803, 5.81905171908382], [53.03993180282013, 5.819868372703048], [53.03963370562619, 5.820528549251262], [53.03959089960485, 5.820611658747895], [53.03953207337661, 5.820719088572318], [53.03926232248376, 5.8211812756035695], [53.03906292997206, 5.821505104906763], [53.03904685571826, 5.821539294743002], [53.0390118193511, 5.821610880414288], [53.03882949680962, 5.822044262807864], [53.038647033243365, 5.822540675091895], [53.0386304799448, 5.822590215033196], [53.03843152271311, 5.823185779251598], [53.03843146111856, 5.823185975184565], [53.03830917920402, 5.823571790638473], [53.03821406261678, 5.823842173636641], [53.03818071274977, 5.823926460513632], [53.03811696999169, 5.824057999464271], [53.03797215134026, 5.824315491305799], [53.037791549649256, 5.824604972558494], [53.0376528460754, 5.82
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffcc6",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_2325d590985f49709f6635942c2d0b22 = L.popup({maxWidth: '300'
});
var html_f30660a9a69e4ab5a4c651cbaa200d74 = $('<div id="html_f30660a9a69e4ab5a4c651cbaa200d74" style="width: 100.0%; height: 100.0%;">De Fryske Marren (4, 2%)</div>')[0];
popup_2325d590985f49709f6635942c2d0b22.setContent(html_f30660a9a69e4ab5a4c651cbaa200d74);
polygon_23a36b486e094dbb98911132b7d01475.bindPopup(popup_2325d590985f49709f6635942c2d0b22)
;
var polygon_41dc3b4d522e448ebc28f3e3efd8425a = L.polygon(
[[[53.32455228385236, 5.721834508178419], [53.323963950076234, 5.7219554147236815], [53.32396416557883, 5.721984559996337], [53.32383550042409, 5.721986201740931], [53.32298426518724, 5.722210514276576], [53.32234600425163, 5.722381189971215], [53.322313754786606, 5.722391309338989], [53.32229296441225, 5.722393998899744], [53.320072597753395, 5.722053029165614], [53.31848414101858, 5.721794745460838], [53.31759789513867, 5.721657285410032], [53.316033227708274, 5.7214146123963], [53.31603505516773, 5.721438423820188], [53.316073404842015, 5.721444813253394], [53.316076239013526, 5.721466126859752], [53.31608941432579, 5.721565244434036], [53.31611024814956, 5.721717978929829], [53.3161240906622, 5.72181946646083], [53.31614915424059, 5.722121329704542], [53.31621111199848, 5.722474299601289], [53.31644125850091, 5.723655042143826], [53.316536144920896, 5.724084304345007], [53.31741525882212, 5.727683300868041], [53.317450887073534, 5.727815792713361], [53.31746017785865, 5.727885624602718], [53.31745826209004, 5.729580718829052], [53.317452177118625, 5.7296822249632555], [53.31743761928516, 5.7297711194784435], [53.31715309109211, 5.731051137454177], [53.31712944371872, 5.7311636362311305], [53.317109741440426, 5.731259901240429], [53.31700223967885, 5.732216206892468], [53.31692204011483, 5.732659139778424], [53.31687571691106, 5.7328917186760435], [53.31676818036722, 5.733466036883563], [53.31659524136057, 5.734297158277772], [53.316485800049655, 5.7347914627657826], [53.31644371843924, 5.735006846606875], [53.31640755418973, 5.735214175602039], [53.316375309874964, 5.735432983617689], [53.31636531958956, 5.735500814208836], [53.316332322409025, 5.735703141129549], [53.31632004240697, 5.7357733982915455], [53.31630278835959, 5.735854749627887], [53.31628592072127, 5.735917452576772], [53.31620738235472, 5.736204455951201], [53.31607432104055, 5.7366704415420395], [53.31593739579349, 5.737203884110312], [53.31590149227795, 5.737360524824703], [53.31587735574382, 5.737490732835008], [53.31584988034271, 5.737647247489638], [53.31582911020632, 5.7377660038932445], [53.315820143803705, 5.7378241787830975], [53.31581692951646, 5.737845038437017], [53.31579327259329, 5.737998448027423], [53.31575906911795, 5.738184795373912], [53.31573980230331, 5.738277996171121], [53.31570387794425, 5.738428904029746], [53.31567086382003, 5.738571011635007], [53.315649480748164, 5.738644014246872], [53.315569658258276, 5.738833499369258], [53.3155252495341, 5.73894193367127], [53.31550838071331, 5.738983133205876], [53.31548581901839, 5.739050454189476], [53.31546127977262, 5.739136468659302], [53.315440619011596, 5.739223566049463], [53.31542085872191, 5.73930990511014], [53.315310379057806, 5.739955104062532], [53.3152944115331, 5.740074542844514], [53.31528984562793, 5.740111806583595], [53.31528822510899, 5.740125042076042], [53.31528006465291, 5.740208293990224], [53.31515554687815, 5.740819119165249], [53.315114850968385, 5.741097354314708], [53.31508372188731, 5.741312230036696], [53.315032904218356, 5.741746830366579], [53.31498512996917, 5.742145174983847], [53.31492758797911, 5.7423732899871975], [53.31488648241455, 5.742488048705465], [53.31485557490993, 5.742554127700975], [53.31484370205121, 5.742579566393872], [53.314815884088816, 5.742643120289699], [53.314805500718364, 5.742675233535676], [53.31479788757894, 5.74271266558704], [53.314793059320394, 5.742765290527487], [53.31478417776948, 5.74288810138595], [53.31476860336459, 5.7430528839619015], [53.314759575381665, 5.743140238105705], [53.31475069308724, 5.743202462559465], [53.31473420035816, 5.743307054960008], [53.314713846393396, 5.743413956096441], [53.3144867741563, 5.7445530782226815], [53.31441398964005, 5.744916637560672], [53.31440813699798, 5.744947917592501], [53.314272394470635, 5.745671873234631], [53.31416095547107, 5.7462627166821925], [53.31396306750101, 5.747311910048312], [53.31395083550619, 5.74736991763583], [53.31392871382961, 5.747474745181547], [53.31387669456909, 5.747721363759591], [53.313555283063565, 5.749301163802779], [53.3129
{
"bubblingMouseEvents": true,
"color": "#000000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#fffcc5",
"fillOpacity": 0.8,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}
)
.addTo(feature_group_c4db0bec6def4c829583589d0bb8ddf7);
var popup_69614084e4bc45a49d69712358354702 = L.popup({maxWidth: '300'
});
var html_989dec2246b448afb9b3418eafd40e70 = $('<div id="html_989dec2246b448afb9b3418eafd40e70" style="width: 100.0%; height: 100.0%;">Waadhoeke (8, 2%)</div>')[0];
popup_69614084e4bc45a49d69712358354702.setContent(html_989dec2246b448afb9b3418eafd40e70);
polygon_41dc3b4d522e448ebc28f3e3efd8425a.bindPopup(popup_69614084e4bc45a49d69712358354702)
;
var layer_control_51b6348551314dd39aa3b094244d4a54 = {
base_layers : { "ɡɪəl (2083)" : feature_group_1502219ea0134be288779dc88c7a395d,"ɡeɪl (838)" : feature_group_40025619134b4788ade62e4f43ff7da9,"ɡe:l (254)" : feature_group_bf01d47eaa924e118378599e78f82aad,"ɣe:l (115)" : feature_group_17e2a7e207a545918b2e54bfb62fb3cc,"ɣiəl (61)" : feature_group_c4db0bec6def4c829583589d0bb8ddf7, },
overlays : { }
};
L.control.layers(
layer_control_51b6348551314dd39aa3b094244d4a54.base_layers,
layer_control_51b6348551314dd39aa3b094244d4a54.overlays,
{position: 'topright',
collapsed: false,
autoZIndex: true
}).addTo(map_08fa7b2de2344893b5e222cc7ef30d78);
feature_group_40025619134b4788ade62e4f43ff7da9.remove();
feature_group_bf01d47eaa924e118378599e78f82aad.remove();
feature_group_17e2a7e207a545918b2e54bfb62fb3cc.remove();
feature_group_c4db0bec6def4c829583589d0bb8ddf7.remove();
L.easyButton(
'<span><i class="fas fa-tags"></i></span>',
function(btn, map){
$('.percentage-label').toggle();
}
).addTo(map_08fa7b2de2344893b5e222cc7ef30d78);
</script>