Last active
October 13, 2017 00:49
-
-
Save ThomasG77/910965e896320945d2aa1d313bcb43c9 to your computer and use it in GitHub Desktop.
Proto OpenStreetMap BZH - v0 - Peillac - Opération Libre - Demo at http://bl.ocks.org/ThomasG77/910965e896320945d2aa1d313bcb43c9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
<meta name=description content=""> | |
<meta name=viewport content="width=device-width, initial-scale=1"> | |
<title>Simple Map</title> | |
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script> | |
<script src="https://openlayers.org/en/v4.4.1/build/ol.js" type="text/javascript"></script> | |
<script src="//cdn.jsdelivr.net/openlayers.geocoder/latest/ol3-geocoder.js"></script> | |
<script src="https://unpkg.com/[email protected]"></script> | |
<script src="http://rawgit.com/walkermatt/ol3-layerswitcher/master/src/ol3-layerswitcher.js"></script> | |
<link rel="stylesheet" href="https://openlayers.org/en/v4.4.1/css/ol.css"> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/src/ol-popup.css" /> | |
<link rel="stylesheet" href="//cdn.jsdelivr.net/openlayers.geocoder/latest/ol3-geocoder.min.css"> | |
<link rel="stylesheet" type="text/css" href="http://rawgit.com/walkermatt/ol3-layerswitcher/master/src/ol3-layerswitcher.css"> | |
<style type="text/css"> | |
html, body { | |
margin: 0; | |
height: 100%; | |
} | |
#map { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
width: 100%; | |
} | |
.ol-zoom { | |
top: .5em; | |
right: .5em; | |
left: initial; | |
} | |
.ol-control button{ | |
background-color: rgba(40, 40, 40, 0.8) !important; | |
} | |
.ol-geocoder .ol-control, .ol-geocoder .ol-control button:hover { | |
background-color: rgba(40, 40, 40, 0) !important; | |
} | |
.layer-switcher { | |
top: 4.5em; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="map" class="map"></div> | |
<script> | |
// default zoom, center and rotation | |
var zoom = 6; | |
var center = [-2.3, 48.1]; | |
if (window.location.hash !== '') { | |
// try to restore center, zoom-level and rotation from the URL | |
var hash = window.location.hash.replace('#map=', ''); | |
var parts = hash.split('/'); | |
if (parts.length === 3) { | |
zoom = parseInt(parts[0], 10); | |
center = [ | |
parseFloat(parts[1]), | |
parseFloat(parts[2]) | |
]; | |
} | |
} | |
var osm_source = new ol.source.XYZ({ | |
url: 'http://tile.openstreetmap.bzh/br/{z}/{x}/{y}.png' | |
}); | |
var layerOsm = new ol.layer.Tile({ | |
title: 'OpenStreetMap BZH', | |
type: 'base', | |
visible: true, | |
source: osm_source | |
}); | |
var vectorLayer = new ol.layer.Vector({ | |
title: 'Kenteliou', | |
visible: true, | |
source: new ol.source.Vector({ | |
url: 'kenteliou_sizhuniek.json', | |
format: new ol.format.GeoJSON() | |
}), | |
style: new ol.style.Style({ | |
image: new ol.style.Icon(/** @type {olx.style.IconOptions} */ ({ | |
anchor: [0.5, 40], | |
anchorXUnits: 'fraction', | |
anchorYUnits: 'pixels', | |
src: 'http://cdn.leafletjs.com/leaflet/v1.0.0-beta.2/images/marker-icon.png' | |
})) | |
}) | |
}); | |
var map = new ol.Map({ | |
target: 'map', | |
layers: [ | |
new ol.layer.Group({ | |
'title': 'Base maps', | |
layers: [layerOsm] | |
}), | |
new ol.layer.Group({ | |
title: 'Overlays', | |
layers: [vectorLayer] | |
}) | |
], | |
view: new ol.View({ | |
center: ol.proj.fromLonLat(center), | |
zoom: zoom | |
}), | |
controls: ol.control.defaults({ | |
// Set to display OSM attributions on the bottom right control | |
attributionOptions: { | |
collapsed: false | |
} | |
}).extend([ | |
new ol.control.ScaleLine() // Add scale line to the defaults controls | |
]) | |
}); | |
var popup = new ol.Overlay.Popup({ | |
panMapIfOutOfView: false | |
}); | |
map.addOverlay(popup); | |
// Popup for onclick event on GeoJSON source | |
var popup1 = new ol.Overlay.Popup({ | |
panMapIfOutOfView: false | |
}); | |
map.addOverlay(popup1); | |
// Overlay to manage popup on the top of the map | |
// var popup = document.getElementById('popup'); | |
// var overLay = new ol.Overlay({ | |
// element: popup, | |
// position: ol.proj.fromLonLat([0, 0]) | |
// }); | |
// map.addOverlay(overLay); | |
// Manage click on the map to display/hide popup | |
map.on('click', function(e) { | |
var info = []; | |
map.forEachFeatureAtPixel(e.pixel, function (feature) { | |
info.push(/*feature.get('title') + '<br>' + */feature.get('text')); | |
}); | |
if (info.length > 0) { | |
// debugger; | |
popup.show(e.coordinate, info.join(',')); | |
} else { | |
popup.hide(); | |
} | |
}); | |
//Instantiate with some options and add the Control | |
var geocoder = new Geocoder('nominatim', { | |
provider: 'photon', | |
targetType: 'text-input', | |
lang: 'fr', | |
placeholder: 'Klaskañ...', | |
limit: 10, | |
keepOpen: false, | |
preventDefault: true | |
}); | |
map.addControl(geocoder); | |
var layerSwitcher = new ol.control.LayerSwitcher({ | |
tipLabel: 'Légende' // Optional label for button | |
}); | |
map.addControl(layerSwitcher); | |
//Listen when an address is chosen | |
geocoder.on('addresschosen', function (evt) { | |
window.setTimeout(function () { | |
popup.show(evt.coordinate, evt.address.formatted); | |
}, 1000); | |
}); | |
var shouldUpdate = true; | |
var view = map.getView(); | |
var updatePermalink = function() { | |
if (!shouldUpdate) { | |
// do not update the URL when the view was changed in the 'popstate' handler | |
shouldUpdate = true; | |
return; | |
} | |
var center = ol.proj.toLonLat(view.getCenter()); | |
var hash = '#map=' + | |
view.getZoom() + '/' + | |
Math.round(center[0] * 100) / 100 + '/' + | |
Math.round(center[1] * 100) / 100; | |
var state = { | |
zoom: view.getZoom(), | |
center: view.getCenter() | |
}; | |
window.history.pushState(state, 'map', hash); | |
}; | |
map.on('moveend', updatePermalink); | |
// restore the view state when navigating through the history, see | |
// https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onpopstate | |
window.addEventListener('popstate', function(event) { | |
if (event.state === null) { | |
return; | |
} | |
map.getView().setCenter(event.state.center); | |
map.getView().setZoom(event.state.zoom); | |
shouldUpdate = false; | |
}); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.996717900000021, | |
47.6774793 | |
] | |
}, | |
"properties": { | |
"title": "An Alre ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Alre </h4><p class=\"adresse\">Straed / rue Rollo <br>56400 An Alre</p><p class=\"telephone\">02 97 29 16 58</p><p><a href=\"/annuaire/347/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.3881168000000343, | |
47.7085336 | |
] | |
}, | |
"properties": { | |
"title": "An Arvor", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Arvor</h4><p class=\"adresse\">15 straed Kerdrev / rue Kerdreff<br>56260 An Arvor</p><p class=\"telephone\">06 68 34 84 48</p><p><a href=\"/annuaire/812/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.017597446557602, | |
48.0166441232711 | |
] | |
}, | |
"properties": { | |
"title": "An Erge-Vras ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Erge-Vras </h4><p class=\"adresse\">Bali / Avenue de Lestonan<br>29500 An Erge-Vras</p><p class=\"telephone\">02 98 59 55 53</p><p><a href=\"/annuaire/369/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.3596039999999903, | |
47.751232 | |
] | |
}, | |
"properties": { | |
"title": "An Oriant", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Oriant</h4><p class=\"adresse\">12 straed / rue Colbert 16P<br>56100 An Oriant</p><p class=\"telephone\">02 97 21 37 05</p><p><a href=\"/annuaire/345/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.37861440000006, | |
47.7558467 | |
] | |
}, | |
"properties": { | |
"title": "An Oriant ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Oriant </h4><p class=\"adresse\">7 straed / rue F. Buisson<br>56100 An Oriant</p><p class=\"telephone\">02 97 87 83 85</p><p><a href=\"/annuaire/508/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.241708000000017, | |
48.328109 | |
] | |
}, | |
"properties": { | |
"title": "An Ospital ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Ospital </h4><p class=\"adresse\">Sal-kêr / Salle municipale Ti war vein<br>29460 An Ospital</p><p class=\"telephone\">02 98 25 88 28</p><p><a href=\"/annuaire/397/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.7492882230316127, | |
48.366023401809564 | |
] | |
}, | |
"properties": { | |
"title": "An Uhelgoad", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Uhelgoad</h4><p class=\"adresse\">Hent/route de Berrien<br>29690 An Uhelgoad</p><p class=\"telephone\">06 89 89 90 30</p><p><a href=\"/annuaire/1045/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.177049000000011, | |
47.3682095 | |
] | |
}, | |
"properties": { | |
"title": "Ankiniz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ankiniz</h4><p class=\"adresse\">215 bd Léon Sécher<br>44140 Ankiniz</p><p class=\"telephone\">06 23 03 37 44</p><p><a href=\"/annuaire/633/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.372601300000042, | |
47.2897448 | |
] | |
}, | |
"properties": { | |
"title": "Ar Baol-Skoubleg ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ar Baol-Skoubleg </h4><p class=\"adresse\">15 bali / avenue Guy de la Morandais<br>44500 Ar Baol-Skoubleg</p><p class=\"telephone\">02 40 24 16 86</p><p><a href=\"/annuaire/438/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.5006459999999606, | |
48.047704 | |
] | |
}, | |
"properties": { | |
"title": "Ar Faoued", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ar Faoued</h4><p class=\"adresse\">Skol ar sonerezh / Ecole de musique<br>56320 Ar Faoued</p><p class=\"telephone\">06 95 12 13 87</p><p><a href=\"/annuaire/530/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.979561999999987, | |
47.907888 | |
] | |
}, | |
"properties": { | |
"title": "Ar Forest-Fouenant", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ar Forest-Fouenant</h4><p class=\"adresse\">Espace Rencontre Paradis<br>29940 Ar Forest-Fouenant </p><p class=\"telephone\">02 98 56 91 72</p><p><a href=\"/annuaire/945/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.562451171688849, | |
48.0911183802389 | |
] | |
}, | |
"properties": { | |
"title": "Ar Sent", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ar Sent</h4><p class=\"adresse\">Straed ar Skol / Rue de l'école<br>56110 Ar Sent</p><p class=\"telephone\">06 11 04 76 91</p><p><a href=\"/annuaire/489/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.1426123999999618, | |
48.05444110000001 | |
] | |
}, | |
"properties": { | |
"title": "Argantred-ar-Genkiz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Argantred-ar-Genkiz</h4><p class=\"adresse\">Chemin de Franchet 35370 Argentré du Plessis<br>35370 Argantred-ar-Genkiz</p><p class=\"telephone\">06 84 47 04 20</p><p><a href=\"/annuaire/811/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.6957499999999754, | |
47.93248699999999 | |
] | |
}, | |
"properties": { | |
"title": "Banaleg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Banaleg</h4><p class=\"adresse\">29380 Banaleg</p><p class=\"telephone\">06 62 76 01 98</p><p><a href=\"/annuaire/944/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.300603000000024, | |
48.630456 | |
] | |
}, | |
"properties": { | |
"title": "Bear", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Bear</h4><p class=\"adresse\">17 rue de Guingamp 22140 bégard<br>22140 Bear</p><p class=\"telephone\">02 96 43 58 61</p><p><a href=\"/annuaire/613/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.168779299999983, | |
47.6757831 | |
] | |
}, | |
"properties": { | |
"title": "Belz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Belz</h4><p class=\"adresse\">Sal an dimeziñ / Salle des mariages<br>56550 Belz </p><p class=\"telephone\">02 97 29 16 58</p><p><a href=\"/annuaire/992/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.4374330000000555, | |
48.184239 | |
] | |
}, | |
"properties": { | |
"title": "Beuzid-ar-C'hoadoù", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Beuzid-ar-C'hoadoù</h4><p class=\"adresse\">35340 Beuzid-ar-C'hoadoù</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/1038/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.8303595198822222, | |
48.6021872900197 | |
] | |
}, | |
"properties": { | |
"title": "Binig", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Binig</h4><p class=\"adresse\">Sal / Salle Associat'Ic 1 <br>22520 Binig</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/839/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.956643892065472, | |
48.3003433314285 | |
] | |
}, | |
"properties": { | |
"title": "Brasparzh ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brasparzh </h4><p class=\"adresse\">Straed an iliz / Rue de l'église - Sal sz Tereza / Salle ste Thérèse<br>29190 Brasparzh</p><p class=\"telephone\"> 02 98 91 43 02</p><p><a href=\"/annuaire/380/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.490527799999995, | |
48.3842566 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">18 straed / rue Duguay-Trouin<br>29200 Brest</p><p class=\"telephone\">02 98 80 26 71</p><p><a href=\"/annuaire/339/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.4685165068847255, | |
48.4043648196777 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">17 straed / rue Professeur Chrétien <br>29200 Brest</p><p class=\"telephone\">02 98 80 26 71</p><p><a href=\"/annuaire/368/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.488969699999984, | |
48.4143743 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">30 straed Koedlogon / rue Coëtlogon<br>29200 Brest</p><p class=\"telephone\">02 98 80 26 71</p><p><a href=\"/annuaire/810/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.470723899999939, | |
48.3923826 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">47 straed / rue Jules Guesde <br>29200 Brest</p><p class=\"telephone\">06 52 80 29 23</p><p><a href=\"/annuaire/983/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.9977532999999994, | |
48.1024555 | |
] | |
}, | |
"properties": { | |
"title": "Brieg ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brieg </h4><p class=\"adresse\">Plasenn / Place Ruthin<br>29510 Brieg</p><p class=\"telephone\">06 87 39 41 87</p><p><a href=\"/annuaire/382/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.7364101000000574, | |
48.0257875 | |
] | |
}, | |
"properties": { | |
"title": "Bruz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Bruz</h4><p class=\"adresse\">59 bali/avenue Alphonse Legault<br>35170 Bruz</p><p><a href=\"/annuaire/1079/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.23466099999996, | |
48.122459 | |
] | |
}, | |
"properties": { | |
"title": "Bubri", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Bubri</h4><p class=\"adresse\">Bod Bihan<br>56160 Lanwelan</p><p class=\"telephone\">02 97 51 27 31 </p><p><a href=\"/annuaire/560/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.0414695682311503, | |
48.4639970722689 | |
] | |
}, | |
"properties": { | |
"title": "Dinan ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Dinan </h4><p class=\"adresse\">Boulouard / Boulevard André Aubert - Kreizenn ar Stivell / Centre la Source<br>22100 Dinan</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/348/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.334835300000009, | |
48.0955051 | |
] | |
}, | |
"properties": { | |
"title": "Douarnenez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Douarnenez</h4><p class=\"adresse\">11 bd Camille Réaud<br>29100 Douarnenez</p><p class=\"telephone\">02 98 92 10 07</p><p><a href=\"/annuaire/366/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.53685489999998, | |
48.1339807 | |
] | |
}, | |
"properties": { | |
"title": "Egineg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Egineg</h4><p class=\"adresse\">Mediaoueg / Médiathèque La Passerelle - Bali /Avenue Abbé-Barbedet <br>35690 Egineg</p><p class=\"telephone\">02 99 62 23 78</p><p><a href=\"/annuaire/431/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.50107756455691, | |
47.4371429294428 | |
] | |
}, | |
"properties": { | |
"title": "Enorzh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Enorzh</h4><p class=\"adresse\">2 bis Place du Champ de Foire<br>44390 Enorzh</p><p class=\"telephone\">02 40 72 12 71</p><p><a href=\"/annuaire/445/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.464324323278788, | |
48.6281368204228 | |
] | |
}, | |
"properties": { | |
"title": "Erge-ar-mor", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Erge-ar-mor</h4><p class=\"adresse\">Sal / Salle Jo Vely - Straed /Rue Saint-Pierre<br>22430 Erge-ar-Mor</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/786/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.013120232154847, | |
47.8938611001306 | |
] | |
}, | |
"properties": { | |
"title": "Fouenant", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Fouenant</h4><p class=\"adresse\">Pol kevredigezhel - Straed Kerourge / Pôle associatif - Rue de Kerourgué<br>29170 Fouenant</p><p class=\"telephone\">02 98 87 72 41</p><p><a href=\"/annuaire/614/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.606398000000013, | |
48.13998000000001 | |
] | |
}, | |
"properties": { | |
"title": "Gourin", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gourin</h4><p class=\"adresse\">Sal an MPT<br>56110 Gourin</p><p class=\"telephone\">06 95 12 13 87 </p><p><a href=\"/annuaire/965/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.536316699475037, | |
48.0250806633832 | |
] | |
}, | |
"properties": { | |
"title": "Gwaien ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwaien </h4><p class=\"adresse\">9 straed / rue Lamartine<br>29770 Gwaien</p><p class=\"telephone\">02 98 70 28 72</p><p><a href=\"/annuaire/376/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7780870000000277, | |
47.64805399999999 | |
] | |
}, | |
"properties": { | |
"title": "Gwened ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwened </h4><p class=\"adresse\">31 straed / rue Guillaume Le Bartz <br>56000 Gwened</p><p class=\"telephone\">06 79 91 86 77</p><p><a href=\"/annuaire/346/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.723977357672084, | |
47.6594633637601 | |
] | |
}, | |
"properties": { | |
"title": "Gwened", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwened</h4><p class=\"adresse\">3 hent-dall Bohalgoù / impasse du Bohalgo<br>56000 Gwened</p><p class=\"telephone\">02 97 47 85 92</p><p><a href=\"/annuaire/492/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.762695200000053, | |
47.6578992 | |
] | |
}, | |
"properties": { | |
"title": "Gwened", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwened</h4><p class=\"adresse\">3 straed al Lezenn / 3 rue de la Loi <br>56000 Gwened</p><p class=\"telephone\">09 72 61 16 89</p><p><a href=\"/annuaire/897/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.148956699999985, | |
48.5619753 | |
] | |
}, | |
"properties": { | |
"title": "Gwengamp", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwengamp</h4><p class=\"adresse\">Plasenn Maez ar Roue / Place du Champ au Roy<br>22200 Gwengamp</p><p class=\"telephone\">02 96 44 27 88</p><p><a href=\"/annuaire/333/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.4221181000000342, | |
47.3277523 | |
] | |
}, | |
"properties": { | |
"title": "Gwenrann", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwenrann</h4><p class=\"adresse\">Sal AVF - straed/rue Victor Hugo <br>44350 Gwenrann</p><p class=\"telephone\">06 74 76 02 52 </p><p><a href=\"/annuaire/343/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.4240340999999717, | |
47.33244699999999 | |
] | |
}, | |
"properties": { | |
"title": "Gwenrann", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwenrann</h4><p class=\"adresse\">Skol Diwan - rue du Sénéchal <br>44350 Gwenrann</p><p class=\"telephone\">06 74 76 02 52 </p><p><a href=\"/annuaire/926/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.3690873000000465, | |
47.3565495 | |
] | |
}, | |
"properties": { | |
"title": "Gwenrann", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwenrann</h4><p class=\"adresse\">19 place de l'Abbé Loiseau <br>44350 Gwenrann</p><p class=\"telephone\">06 74 76 02 52</p><p><a href=\"/annuaire/927/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.7559079999999767, | |
48.118465 | |
] | |
}, | |
"properties": { | |
"title": "Gwezin", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwezin</h4><p class=\"adresse\">35132 Gwezin </p><p class=\"telephone\">02 99 64 20 15</p><p><a href=\"/annuaire/921/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.483740200000057, | |
47.7889602 | |
] | |
}, | |
"properties": { | |
"title": "Gwidel ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwidel </h4><p class=\"adresse\">Kreizenn Brizeug / Centre Brizeux / Straed / rue Capitaine Quillien<br>56520 Gwidel</p><p class=\"telephone\">06 73 12 15 97</p><p><a href=\"/annuaire/493/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.405097899999987, | |
48.4322624 | |
] | |
}, | |
"properties": { | |
"title": "Gwipavaz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwipavaz</h4><p class=\"adresse\">Kreizenn Dudi / Centre de Loisirs - 56 straed / rue de Brest<br>29490 Gwipavaz</p><p class=\"telephone\">02 98 84 71 58</p><p><a href=\"/annuaire/383/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.7205068000000665, | |
48.2949022 | |
] | |
}, | |
"properties": { | |
"title": "Gwipedel", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwipedel</h4><p class=\"adresse\">Skol Diwan - straed Roazhon/ rue de Rennes<br>35440 Gwipedel</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/1037/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.2783958, | |
47.8057751 | |
] | |
}, | |
"properties": { | |
"title": "Henbont ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Henbont </h4><p class=\"adresse\">2 rue du Champ de Foire<br>56700 Henbont</p><p class=\"telephone\">02 97 36 55 32 </p><p><a href=\"/annuaire/499/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.677106999999978, | |
48.484569 | |
] | |
}, | |
"properties": { | |
"title": "Ilfinieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ilfinieg</h4><p class=\"adresse\">Salle l'Apparté<br>22120 Ilfinieg</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/906/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.42589527116388, | |
48.404448612675196 | |
] | |
}, | |
"properties": { | |
"title": "Kallag ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kallag </h4><p class=\"adresse\">Sal ar Gouelioù / Salle des Fêtes - Plasenn an nav a viz Ebrel 1944 / Place du neuf avril 1944<br>22160 Kallag</p><p class=\"telephone\">02 96 45 94 38</p><p><a href=\"/annuaire/337/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.342013715344251, | |
47.8085063157437 | |
] | |
}, | |
"properties": { | |
"title": "Kaodan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kaodan</h4><p class=\"adresse\">19 straed ar Gwez derv / 19 rue des Chênes <br>56850 Kaodan</p><p class=\"telephone\">06 83 45 34 66</p><p><a href=\"/annuaire/510/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.5740442999999686, | |
48.2774812 | |
] | |
}, | |
"properties": { | |
"title": "Karaez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Karaez</h4><p class=\"adresse\">Ti ar Vro - Plasenn Gwirioù Mab-den / place des Droits de l'Homme<br>29270 Karaez</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/922/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.3776757000000543, | |
47.7197894 | |
] | |
}, | |
"properties": { | |
"title": "Kastell-Briant", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kastell-Briant</h4><p class=\"adresse\">Tavarn an Arar - Café la Charrue - 28 rue de Couëre <br>44110 Kastell-Briant</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/1078/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.9855317999999897, | |
48.6818107 | |
] | |
}, | |
"properties": { | |
"title": "Kastell-Paol ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kastell-Paol </h4><p class=\"adresse\">Sal /Sal Michel Colombe - Straed / Rue Penn al Liorzhoù<br>29250 Kastell-Paol</p><p class=\"telephone\">02 98 29 02 90</p><p><a href=\"/annuaire/384/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.7888789999999517, | |
48.052286 | |
] | |
}, | |
"properties": { | |
"title": "Kavan ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kavan </h4><p class=\"adresse\">Egorenn / Espace Chateaubriand<br>35310 Kavan</p><p class=\"telephone\">02 99 64 20 15 </p><p><a href=\"/annuaire/426/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.345267572738635, | |
48.6737201766826 | |
] | |
}, | |
"properties": { | |
"title": "Kawan ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kawan </h4><p class=\"adresse\">Hent Jean Monnet<br>22140 Kawan</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/332/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.115258499999982, | |
48.0083833 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">47 hent ar Pradeier / 47 rue des Prés<br>29000 Kemper</p><p class=\"telephone\">02 98 55 79 79</p><p><a href=\"/annuaire/385/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.094037003704898, | |
48.0029637430337 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">4 straed / rue Teilhard de Chardin<br>29000 Kemper</p><p class=\"telephone\">02 98 95 46 25</p><p><a href=\"/annuaire/393/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.12462579999999, | |
47.9878861 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">Skol Diwan Penhars - 1 straed Vañde / 1 rue de la Vendée<br>29000 Kemper</p><p class=\"telephone\">02 98 87 72 41</p><p><a href=\"/annuaire/947/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.097511599999962, | |
47.9936196 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">3 reper Familh Gabai - 3 esplanade Famille Gabai<br>29000 Kemper</p><p class=\"telephone\">02 98 87 72 41</p><p><a href=\"/annuaire/948/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.56679789999998, | |
47.870736 | |
] | |
}, | |
"properties": { | |
"title": "Kemperle", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemperle</h4><p class=\"adresse\">Straed / rue de Pont-Aven<br>29300 Kemperle</p><p class=\"telephone\">02 98 71 74 94</p><p><a href=\"/annuaire/389/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.6615319, | |
48.42128700000001 | |
] | |
}, | |
"properties": { | |
"title": "Kesoue", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kesoue</h4><p class=\"adresse\">Le Bohu Robien <br>22120 Kesoue</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/905/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.414881899999955, | |
47.7867592 | |
] | |
}, | |
"properties": { | |
"title": "Kewenn", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kewenn</h4><p class=\"adresse\">Egorenn / Espace Saint Eloi - Straed / Rue Professeur Lote<br>56530 Kewenn</p><p class=\"telephone\">02 97 83 71 15</p><p><a href=\"/annuaire/509/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.9043144491431576, | |
48.40075109801122 | |
] | |
}, | |
"properties": { | |
"title": "Kintin", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kintin</h4><p class=\"adresse\"> MJC - 2 straed /rue de la Fosse Malard<br>22800 Kintin</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/1031/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.4538105000000314, | |
47.6612832 | |
] | |
}, | |
"properties": { | |
"title": "Kistreberzh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kistreberzh</h4><p class=\"adresse\">Sal/salle Belmont -straed ar C'hoc'hu/rue des Halles <br>56230 Kistreberzh</p><p class=\"telephone\">09 72 61 16 89</p><p><a href=\"/annuaire/1039/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.0699617148193283, | |
48.1245817069178 | |
] | |
}, | |
"properties": { | |
"title": "Klegereg ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Klegereg </h4><p class=\"adresse\">Salle de la Mairie - Plasenn / Place Pobéguin<br>56480 Klegereg</p><p><a href=\"/annuaire/504/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.5880359884994277, | |
47.78808623227404 | |
] | |
}, | |
"properties": { | |
"title": "Kloar-Karnoed", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kloar-Karnoed</h4><p class=\"adresse\">47 straed Sant Jakez / 47 rue Saint Jacques<br>29360 Kloar-Karnoed </p><p class=\"telephone\">02 98 39 98 54</p><p><a href=\"/annuaire/1048/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.956496666320845, | |
48.4129850906704 | |
] | |
}, | |
"properties": { | |
"title": "Kommanna ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kommanna </h4><p class=\"adresse\">Salle municipale Le Saint<br>29540 Kommanna</p><p class=\"telephone\">02 98 63 98 79</p><p><a href=\"/annuaire/448/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.920734000000039, | |
47.872834 | |
] | |
}, | |
"properties": { | |
"title": "Konk-Kerne", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Konk-Kerne</h4><p class=\"adresse\">Ti-feurm ar Moroz / Ferme du Moros<br>29900 Konk-Kerne</p><p class=\"telephone\">06 61 44 67 72</p><p><a href=\"/annuaire/387/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.0002829999999676, | |
47.616486 | |
] | |
}, | |
"properties": { | |
"title": "Krac'h", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Krac'h</h4><p class=\"adresse\">Sal Sant Turiav / Salle Saint Thuriau<br>56950 Krac'h</p><p class=\"telephone\">02 97 29 16 58</p><p><a href=\"/annuaire/878/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.516926699999999, | |
48.4697554 | |
] | |
}, | |
"properties": { | |
"title": "Lambal", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lambal</h4><p class=\"adresse\">MJC - 10 straed an Aogustined / rue des Augustins<br>22400 Lambal</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/604/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.72693890000005, | |
48.2260156 | |
] | |
}, | |
"properties": { | |
"title": "Landelo", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landelo</h4><p class=\"adresse\">3 straed ar stêr Aon / 3 rue de l'Aulne<br>29530 Landelo</p><p class=\"telephone\">02 98 93 93 08</p><p><a href=\"/annuaire/1046/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.24535790000004, | |
48.4534756 | |
] | |
}, | |
"properties": { | |
"title": "Landerne", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landerne</h4><p class=\"adresse\">44 straed / rue de la Tour d’Auvergne<br>29800 Landerne</p><p class=\"telephone\">02 98 83 30 41</p><p><a href=\"/annuaire/390/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.07405436622321, | |
48.51589448613 | |
] | |
}, | |
"properties": { | |
"title": "Landivizio", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landivizio</h4><p class=\"adresse\">Tiez Nevez - Sal Quéguiner<br>29400 Landivizio</p><p class=\"telephone\">02 98 68 27 57</p><p><a href=\"/annuaire/392/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.235401300000035, | |
48.7864354 | |
] | |
}, | |
"properties": { | |
"title": "Landreger ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landreger </h4><p class=\"adresse\">Rue des Perderies - An Eskopti kozh<br>22220 Landreger</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/353/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.337313600000016, | |
47.9996217 | |
] | |
}, | |
"properties": { | |
"title": "Landudeg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landudeg</h4><p class=\"adresse\">Sal liezimplij / Salle polyvalente - Plasenn an Ti-kêr / Place de la Mairie<br>29710 Landudeg</p><p class=\"telephone\">02 98 87 68 41</p><p><a href=\"/annuaire/1040/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7144758220902077, | |
48.4942025523797 | |
] | |
}, | |
"properties": { | |
"title": "Langaeg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Langaeg</h4><p class=\"adresse\">Kreizenn sevenadurel - Straed / rue Mermoz <br>22360 Langaeg</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/871/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.4921339999999645, | |
48.103755 | |
] | |
}, | |
"properties": { | |
"title": "Langoned ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Langoned </h4><p class=\"adresse\">Burev Bod Kelenn - 7 straed Kerne<br>56630 Langoned</p><p class=\"telephone\">06 95 12 13 87</p><p><a href=\"/annuaire/487/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.469038618385298, | |
48.7438414892089 | |
] | |
}, | |
"properties": { | |
"title": "Lannuon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lannuon</h4><p class=\"adresse\">Ker-Uhel - Straed Louzaouenn-an-Hañv/ Rue du Muguet <br>22300 Lannuon</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/349/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.0312639999999647, | |
48.517218 | |
] | |
}, | |
"properties": { | |
"title": "Lanrodeg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lanrodeg</h4><p class=\"adresse\">Sal liezimplij / Salle polyvalente<br>22170 Lanrodeg</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/958/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.3454964, | |
47.2356387 | |
] | |
}, | |
"properties": { | |
"title": "Lavreer-Botorel ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lavreer-Botorel </h4><p class=\"adresse\">Salle de la Tannerie - Rue des Moulins <br>44430 Lavreer-Botorel</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/454/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.837643831282776, | |
48.13718392979502 | |
] | |
}, | |
"properties": { | |
"title": "Laz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Laz</h4><p class=\"adresse\">22 Ru Vras<br>29520 Laz </p><p><a href=\"/annuaire/1047/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.328880076721134, | |
48.5712848043172 | |
] | |
}, | |
"properties": { | |
"title": "Lesneven", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lesneven</h4><p class=\"adresse\">48 straed Jeneral de Gaulle / rue du Général De Gaulle <br>29260 Lesneven</p><p class=\"telephone\">09 83 22 42 96</p><p><a href=\"/annuaire/338/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5058159999999816, | |
48.214048 | |
] | |
}, | |
"properties": { | |
"title": "Liverieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Liverieg</h4><p class=\"adresse\">35340 Liffré<br>35340 Liverieg</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/883/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.1870754306885374, | |
48.072491133600685 | |
] | |
}, | |
"properties": { | |
"title": "Lokmac'hloù", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lokmac'hloù</h4><p class=\"adresse\">4 rue de Porharch<br>56160 Lokmac'hloù</p><p class=\"telephone\">02 97 51 27 31</p><p><a href=\"/annuaire/925/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.1465223999999807, | |
47.7043752 | |
] | |
}, | |
"properties": { | |
"title": "Lokoal-Mendon ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lokoal-Mendon </h4><p class=\"adresse\">Salle Emeraude / route de Locoal<br>56550 Lokoal-Mendon</p><p class=\"telephone\">02 97 24 58 28 </p><p><a href=\"/annuaire/500/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.205050000000028, | |
48.0988377 | |
] | |
}, | |
"properties": { | |
"title": "Lokorn", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lokorn</h4><p class=\"adresse\">Ti ar soñj - 1 rue du Four<br>29180 Lokorn</p><p class=\"telephone\">06 07 48 38 62</p><p><a href=\"/annuaire/814/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.620266899999933, | |
48.4337603 | |
] | |
}, | |
"properties": { | |
"title": "Lokournan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lokournan</h4><p class=\"adresse\">Straed ar Vein Zu / Rue des Pierres Noires <br>29290 Lokournan</p><p class=\"telephone\">06 89 49 12 51</p><p><a href=\"/annuaire/398/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.30647066812287, | |
48.3739282693663 | |
] | |
}, | |
"properties": { | |
"title": "Loperc'hed", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Loperc'hed</h4><p class=\"adresse\">Oaled Erwan - 4 hent Rostivieg / Foyer Saint Yves - 4 route de Rostiviec <br>29470 Loperc'hed</p><p class=\"telephone\">02 98 07 33 63 </p><p><a href=\"/annuaire/399/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.411647300000027, | |
48.7933816 | |
] | |
}, | |
"properties": { | |
"title": "Louaneg ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Louaneg </h4><p class=\"adresse\">Straed ar Skolioù - Oaled 4 / Rue des Ecoles - Foyer 4<br>22700 Louaneg</p><p class=\"telephone\">02 96 91 19 64</p><p><a href=\"/annuaire/350/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.5724030000000084, | |
47.908784 | |
] | |
}, | |
"properties": { | |
"title": "Mellag", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Mellag</h4><p class=\"adresse\">Bourk<br>29300 Mellag </p><p class=\"telephone\">06 80 59 76 28</p><p><a href=\"/annuaire/946/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.156389900000022, | |
47.4821868 | |
] | |
}, | |
"properties": { | |
"title": "Merzhelieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Merzhelieg</h4><p class=\"adresse\">17 rue des Ruais <br>44780 Merzhelieg </p><p class=\"telephone\">06 72 56 19 03</p><p><a href=\"/annuaire/985/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.628093116393984, | |
47.8073491593388 | |
] | |
}, | |
"properties": { | |
"title": "Molan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Molan</h4><p class=\"adresse\">Straed / rue Pont al Laer<br>29350 Molan</p><p class=\"telephone\">06 83 80 63 74</p><p><a href=\"/annuaire/400/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.9533241000000316, | |
48.1426661 | |
] | |
}, | |
"properties": { | |
"title": "Moñforzh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Moñforzh</h4><p class=\"adresse\">35160 Moñforzh</p><p class=\"telephone\">07 89 54 29 22 pe 02 99 38 75 83 (SAE)</p><p><a href=\"/annuaire/1035/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.83323740000003, | |
48.5821748 | |
] | |
}, | |
"properties": { | |
"title": "Montroulez ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Montroulez </h4><p class=\"adresse\">41 Kae Leon / Quai du Léon<br>29600 Montroulez</p><p class=\"telephone\">02 98 63 98 79</p><p><a href=\"/annuaire/340/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.82525825648349, | |
48.576128124709804 | |
] | |
}, | |
"properties": { | |
"title": "Montroulez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Montroulez</h4><p class=\"adresse\">7 place du Dossen (MJC Centre)<br>29600 Montroulez</p><p class=\"telephone\">02 98 88 02 49</p><p><a href=\"/annuaire/472/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.8398274999999558, | |
48.07611379999999 | |
] | |
}, | |
"properties": { | |
"title": "Morzhell", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Morzhell</h4><p class=\"adresse\">85 straed Marichal Leclerc/rue Maréchal Leclerc<br>35310 Morzhell </p><p class=\"telephone\">02 99 85 17 35 pe 02 99 38 75 83 (SAE)</p><p><a href=\"/annuaire/1034/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.987593999999945, | |
48.201707 | |
] | |
}, | |
"properties": { | |
"title": "Mur", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Mur</h4><p class=\"adresse\">Plasenn / Place sainte Suzanne<br>22530 Mur</p><p class=\"telephone\">06 82 12 22 78 </p><p><a href=\"/annuaire/650/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.48325076322931, | |
47.553843622584 | |
] | |
}, | |
"properties": { | |
"title": "Muzilheg ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Muzilheg </h4><p class=\"adresse\">Egorenn / Espace Mauduit - Straed ar Gouent / rue du Couvent<br>56190 Muzilheg</p><p class=\"telephone\">02 97 45 62 92</p><p><a href=\"/annuaire/506/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5399923338684403, | |
47.242048844616 | |
] | |
}, | |
"properties": { | |
"title": "Naoned ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned </h4><p class=\"adresse\">Ti ar C'hevredigezhioù / Maison des Associations - 80 rue Port Boyer<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/439/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5311024000000089, | |
47.2433895 | |
] | |
}, | |
"properties": { | |
"title": "Naoned ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned </h4><p class=\"adresse\">1 straed / rue de la Bertinière<br>44300 Naoned</p><p class=\"telephone\">02 40 50 08 10</p><p><a href=\"/annuaire/440/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5661154693115122, | |
47.2051975254174 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">2 bis boulevard Léon Bureau<br>44000 Naoned</p><p class=\"telephone\">02 40 99 83 97</p><p><a href=\"/annuaire/441/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5657351325409081, | |
47.217724043782596 | |
] | |
}, | |
"properties": { | |
"title": "Naoned ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned </h4><p class=\"adresse\">3 straed / rue Harouys<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/452/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5115081000000146, | |
47.2472148 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">85 rue du Perray<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/461/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5268666526702646, | |
47.254354069350505 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">Ti ar Vicherourien / Maison Ouvrière - 30 bd des Batignolles<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/462/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5995229000000108, | |
47.2160046 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">1 rue de la Petite Reine<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/464/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5846033000000261, | |
47.2120318 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">20 straed / rue Ampère<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/465/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5351353558196479, | |
47.219437295579205 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">La Manufacture - 10 bd Stalingrad<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/466/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.541426174096614, | |
47.2179968318961 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">Ti-gar Naoned / Gare de Nantes - Bd Stalingrad<br>44000 Naoned</p><p class=\"telephone\">06 23 03 37 44</p><p><a href=\"/annuaire/468/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5091989999999669, | |
47.1801677 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">gare <br>Naoned</p><p class=\"telephone\">06 23 03 37 44</p><p><a href=\"/annuaire/627/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
1.8929577000000108, | |
47.9025145 | |
] | |
}, | |
"properties": { | |
"title": "Orleans", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Orleans</h4><p class=\"adresse\">25 boulevard Jean Jaurès <br>45000 Orleans </p><p class=\"telephone\">02 38 53 83 00 </p><p><a href=\"/annuaire/966/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5877190999999584, | |
47.2482614 | |
] | |
}, | |
"properties": { | |
"title": "Orvez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Orvez</h4><p class=\"adresse\">La Gobinière - 37 avenue de la Ferrière<br>44700 Orvez</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/443/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.0893740000000207, | |
48.619558 | |
] | |
}, | |
"properties": { | |
"title": "Pañvrid-ar-Beskont", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pañvrid-ar-Beskont</h4><p class=\"adresse\">Kreizenn / Centre Startijin<br>22290 Pañvrid-ar-Beskont</p><p class=\"telephone\">02 96 74 25 11</p><p><a href=\"/annuaire/352/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.7746640999999954, | |
48.1486256 | |
] | |
}, | |
"properties": { | |
"title": "Pazieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pazieg</h4><p class=\"adresse\">Ti ar Yaouankiz - 6 bali ar Govig / Maison des Jeunes - 6 avenue Le Goffic<br>35740 Pazieg</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/433/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.074381119049121, | |
48.7705819635301 | |
] | |
}, | |
"properties": { | |
"title": "Pempoull ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pempoull </h4><p class=\"adresse\">Chemin de Landouzec - Plounez<br>22500 Pempoull</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/354/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.0724284693114896, | |
48.7716379615009 | |
] | |
}, | |
"properties": { | |
"title": "Pempoull", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pempoull</h4><p class=\"adresse\">2 hent Kerjikel / 2 chemin de Kergicquel<br>22500 Pempoull</p><p class=\"telephone\">02 96 20 89 28 </p><p><a href=\"/annuaire/355/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.4457254999999805, | |
48.8013402 | |
] | |
}, | |
"properties": { | |
"title": "Perroz-Gireg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Perroz-Gireg</h4><p class=\"adresse\">Ecole de la Rade - Rue du Docteur Le Mat <br>22700 Perroz-Gireg</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/473/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.2974530000000186, | |
48.81215 | |
] | |
}, | |
"properties": { | |
"title": "Perwenan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Perwenan</h4><p class=\"adresse\">Sal Anatole ar Braz / Salle Anatole Le Braz - Plasenn an Ti-kêr / Place de la Mairie<br>22710 Perwenan</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/474/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.997869600000058, | |
48.5382753 | |
] | |
}, | |
"properties": { | |
"title": "Plagad", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plagad</h4><p class=\"adresse\">Rue de la Grande Villeneuve <br>22170 Plagad</p><p class=\"telephone\">09 54 66 92 01</p><p><a href=\"/annuaire/874/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.410211701605249, | |
47.7401655376115 | |
] | |
}, | |
"properties": { | |
"title": "Plañvour", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plañvour</h4><p class=\"adresse\">2 hent-dall ar Skol Sonerezh - Soe / 2 impasse du Conservatoire - Soye<br>56270 Plañvour</p><p class=\"telephone\">02 97 86 32 08</p><p><a href=\"/annuaire/532/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7450258682616777, | |
48.446124494332885 | |
] | |
}, | |
"properties": { | |
"title": "Pledran", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pledran</h4><p class=\"adresse\">22960 Pledran</p><p class=\"telephone\">02 96 77 31 91 </p><p><a href=\"/annuaire/1075/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.00960699999996, | |
48.694753 | |
] | |
}, | |
"properties": { | |
"title": "Plehedel ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plehedel </h4><p class=\"adresse\">Hent-dall Ti an diskuizhadenn - Plasenn an Nevez-Amzer / Place du Printemps<br>22290 Plehedel</p><p class=\"telephone\">02 96 22 33 76 / 06 03 73 44 96 </p><p><a href=\"/annuaire/477/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.540870000000041, | |
48.585676 | |
] | |
}, | |
"properties": { | |
"title": "Pleneg-Nantraezh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pleneg-Nantraezh</h4><p class=\"adresse\">22370 Pleneg-Nantraezh</p><p class=\"telephone\">02 96 77 31 91 </p><p><a href=\"/annuaire/1076/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.8177070000000413, | |
48.40794 | |
] | |
}, | |
"properties": { | |
"title": "Pleneventer", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pleneventer</h4><p class=\"adresse\">Mediaoueg / Médiathèque<br>22940 Pleneventer</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/872/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.8058939999999697, | |
47.697648 | |
] | |
}, | |
"properties": { | |
"title": "Pleskob", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pleskob</h4><p class=\"adresse\">Sal / Salle Legrand<br>56890 Pleskob</p><p class=\"telephone\">02 97 61 80 21</p><p><a href=\"/annuaire/513/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.007096000000047, | |
47.773607 | |
] | |
}, | |
"properties": { | |
"title": "Pleuwigner ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pleuwigner </h4><p class=\"adresse\">Sal / Salle du Tanin - Straed / rue du Tanin<br>56330 Pleuwigner</p><p class=\"telephone\">02 97 29 16 58</p><p><a href=\"/annuaire/517/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.503490100000022, | |
48.2267673 | |
] | |
}, | |
"properties": { | |
"title": "Plevin", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plevin</h4><p class=\"adresse\">1 plasenn an Ti-kêr / 1 place de la Mairie<br>22340 Plevin</p><p class=\"telephone\">02 96 29 68 00 / 06 73 55 95 19</p><p><a href=\"/annuaire/636/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.12688430000003, | |
48.4458801 | |
] | |
}, | |
"properties": { | |
"title": "Plijidi", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plijidi</h4><p class=\"adresse\">6 hent Sant Pêr / 6 chemin de Saint-Pierre<br>22720 Plijidi</p><p><a href=\"/annuaire/334/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.631276399999933, | |
48.6534352 | |
] | |
}, | |
"properties": { | |
"title": "Plistin", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plistin</h4><p class=\"adresse\">Ti an Holl - 7 plasenn / place d'Auvelais<br>22310 Plistin</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/358/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.3968459999999823, | |
47.92925400000001 | |
] | |
}, | |
"properties": { | |
"title": "Ploermael", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ploermael</h4><p class=\"adresse\">Pol sevenadurel / Pôle culturel - Bali / avenue de Guibourg <br>56800 Ploermael</p><p class=\"telephone\">06 67 28 65 52 </p><p><a href=\"/annuaire/986/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.19158600000003, | |
48.078141 | |
] | |
}, | |
"properties": { | |
"title": "Plogoneg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plogoneg</h4><p class=\"adresse\">29180 Plogoneg</p><p><a href=\"/annuaire/495/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.285348395523101, | |
47.9022976978923 | |
] | |
}, | |
"properties": { | |
"title": "Ploneour-Lanwern ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ploneour-Lanwern </h4><p class=\"adresse\">Plasenn / Place Amiral Ronarc'h<br>29720 Ploneour-Lanwern</p><p class=\"telephone\">02 98 87 68 41 </p><p><a href=\"/annuaire/401/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.4731119312133387, | |
48.6120785329905 | |
] | |
}, | |
"properties": { | |
"title": "Plouared", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouared</h4><p class=\"adresse\">Sal ar Glad / Salle du Patrimoine<br>22420 Plouared</p><p class=\"telephone\">02 96 49 80 55</p><p><a href=\"/annuaire/470/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.72971140000004, | |
48.4336754 | |
] | |
}, | |
"properties": { | |
"title": "Plouarzhel", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouarzhel</h4><p class=\"adresse\">Mediaoueg / Médiathèque - hent Lokournan / route de saint Renan<br>29810 Plouarzhel</p><p class=\"telephone\">02 98 89 31 05</p><p><a href=\"/annuaire/402/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.2313388767212246, | |
48.1818886781452 | |
] | |
}, | |
"properties": { | |
"title": "Ploudiern", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ploudiern</h4><p class=\"adresse\">Plasenn Sant Erwan / Place Saint Yves<br>29550 Ploudiern</p><p class=\"telephone\">06 68 82 95 31</p><p><a href=\"/annuaire/403/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.3345195865081223, | |
47.9160248626902 | |
] | |
}, | |
"properties": { | |
"title": "Ploue", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ploue</h4><p class=\"adresse\"> Levraoueg-kêr / Bibliothèque - Le Vieux Château<br>56240 Ploue</p><p class=\"telephone\">06 16 86 55 03 </p><p><a href=\"/annuaire/511/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7958213928679925, | |
48.4898618171824 | |
] | |
}, | |
"properties": { | |
"title": "Ploufragan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ploufragan</h4><p class=\"adresse\">Egorenn Glenmor - Plasenn an Hirwazh / Espace Glenmor - Place de l'Iroise<br>22440 Ploufragan</p><p class=\"telephone\">06 12 86 66 59</p><p><a href=\"/annuaire/531/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.369107999999983, | |
48.374051 | |
] | |
}, | |
"properties": { | |
"title": "Plougastell-Daoulaz ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plougastell-Daoulaz </h4><p class=\"adresse\">Lauberlac'h - Sal Ti an Aod<br>29470 Plougastell-Daoulaz</p><p class=\"telephone\">02 98 40 26 86</p><p><a href=\"/annuaire/405/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.489565931213406, | |
48.604820133226 | |
] | |
}, | |
"properties": { | |
"title": "Plougerne ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plougerne </h4><p class=\"adresse\">Tachenn labour an Hellez<br>29880 Plougerne</p><p class=\"telephone\">02 98 04 50 06</p><p><a href=\"/annuaire/406/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.718710999999985, | |
48.341425 | |
] | |
}, | |
"properties": { | |
"title": "Plougonvelen", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plougonvelen</h4><p class=\"adresse\">9 straed / Rue Penn-ar-Bed<br>29217 Plougonvelen</p><p class=\"telephone\">06 71 96 01 87 </p><p><a href=\"/annuaire/407/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.931991141104504, | |
48.6757028343503 | |
] | |
}, | |
"properties": { | |
"title": "Plouha ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouha </h4><p class=\"adresse\">24 bali Laenneg / Avenue Laennec - El levraoueg-kêr / A la bibliothèque municipale<br>22580 Plouha</p><p class=\"telephone\">02 96 22 49 79 </p><p><a href=\"/annuaire/335/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.8912095423279434, | |
48.438804350299 | |
] | |
}, | |
"properties": { | |
"title": "Plouneour-Menez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouneour-Menez</h4><p class=\"adresse\">Salle Foyer<br>29410 Plouneour-Menez</p><p class=\"telephone\">02 98 63 98 79</p><p><a href=\"/annuaire/408/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.68418455554206, | |
48.5152308249311 | |
] | |
}, | |
"properties": { | |
"title": "Plourin-Gwitalmeze", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plourin-Gwitalmeze</h4><p class=\"adresse\">Sal liezimplij / Salle polyvalente<br>29830 Plourin</p><p class=\"telephone\">02 98 04 35 62</p><p><a href=\"/annuaire/409/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.1318670000000566, | |
48.544512 | |
] | |
}, | |
"properties": { | |
"title": "Plouvagor", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouvagor</h4><p class=\"adresse\">22970 Plouvagor</p><p class=\"telephone\">02 96 44 27 88</p><p><a href=\"/annuaire/1033/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.452325999999971, | |
48.529832 | |
] | |
}, | |
"properties": { | |
"title": "Plouvien", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouvien</h4><p class=\"adresse\">Salle liesimplij / Salle polyvalente<br>29860 Plouvien</p><p class=\"telephone\">02 98 40 99 12</p><p><a href=\"/annuaire/654/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.617455100000029, | |
48.3803284 | |
] | |
}, | |
"properties": { | |
"title": "Plouzane", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouzane</h4><p class=\"adresse\">Kreizenn sokial / Centre Social - Alez - Allée des Ajoncs d'or<br>29280 Plouzane</p><p class=\"telephone\">02 98 80 26 71</p><p><a href=\"/annuaire/410/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.152637899999945, | |
47.941573 | |
] | |
}, | |
"properties": { | |
"title": "Ploveilh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ploveilh</h4><p class=\"adresse\">Ti Michel - Bourk<br>29700 Ploveilh</p><p class=\"telephone\">06 52 77 04 01</p><p><a href=\"/annuaire/949/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.281117399999971, | |
47.8418199 | |
] | |
}, | |
"properties": { | |
"title": "Ploveur", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ploveur</h4><p class=\"adresse\">Skol Louis Courot - Straed / rue Courot <br>29120 Ploveur</p><p class=\"telephone\">06 32 14 24 54</p><p><a href=\"/annuaire/1041/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.176967534948744, | |
47.9792709227981 | |
] | |
}, | |
"properties": { | |
"title": "Pluguen", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pluguen</h4><p class=\"adresse\">Ti an Holl - Maison pour tous<br>29700 Pluguen</p><p class=\"telephone\">06 47 44 14 23</p><p><a href=\"/annuaire/848/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.978755299999989, | |
48.0608724 | |
] | |
}, | |
"properties": { | |
"title": "Pondi", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pondi</h4><p class=\"adresse\">Straed / Rue Roland Dorgelès<br>56304 Pondi</p><p class=\"telephone\">06 42 82 75 17 </p><p><a href=\"/annuaire/607/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.222755099999972, | |
47.8643362 | |
] | |
}, | |
"properties": { | |
"title": "Pont-'n-Abad", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pont-'n-Abad</h4><p class=\"adresse\">11 plasenn / place Gambetta <br>29120 Pont-'n-Abad</p><p class=\"telephone\">06 12 17 49 39</p><p><a href=\"/annuaire/413/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.089647000000014, | |
48.254392 | |
] | |
}, | |
"properties": { | |
"title": "Pont-ar-Veuzenn-Kimerc'h", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pont-ar-Veuzenn-Kimerc'h</h4><p class=\"adresse\">Ti an Holl / Maison pour Tous<br>29590 Pont-ar-Veuzenn-Kimerc'h</p><p class=\"telephone\">06 16 66 18 08</p><p><a href=\"/annuaire/943/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.489443299999948, | |
48.042433 | |
] | |
}, | |
"properties": { | |
"title": "Pontekroaz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pontekroaz</h4><p class=\"adresse\">Straed/Rue Jean-Louis Le Goff <br>29790 Pontekroaz</p><p class=\"telephone\">06 78 70 37 73</p><p><a href=\"/annuaire/942/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.159581300000013, | |
48.6974549 | |
] | |
}, | |
"properties": { | |
"title": "Pontrev", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pontrev</h4><p class=\"adresse\">Plasenn / Place Yves Le Troquer<br>22260 Pontrev</p><p class=\"telephone\">02 96 95 37 16</p><p><a href=\"/annuaire/471/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.10156489999997, | |
47.117618 | |
] | |
}, | |
"properties": { | |
"title": "Pornizh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pornizh</h4><p class=\"adresse\">4 straed Loren / 4 rue de Lorraine<br>44210 Pornizh</p><p class=\"telephone\">07 77 06 72 21</p><p><a href=\"/annuaire/444/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.15845860000002, | |
47.3522722 | |
] | |
}, | |
"properties": { | |
"title": "Porzh-Lae", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Porzh-Lae</h4><p class=\"adresse\">Ti ar C'hevredigezhioù / Maison des Associations - Haute-Boulogne<br>56360 Ar Palez</p><p class=\"telephone\">02 97 31 76 41</p><p><a href=\"/annuaire/521/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.35475954285278, | |
47.70945451901029 | |
] | |
}, | |
"properties": { | |
"title": "Porzh-Loeiz ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Porzh-Loeiz </h4><p class=\"adresse\">Bd Kompagnunezh an Indez / Compagnie des Indes<br>56290 Porzh-Loeiz</p><p class=\"telephone\">06 62 15 94 95 </p><p><a href=\"/annuaire/498/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.818262900000036, | |
48.5715834 | |
] | |
}, | |
"properties": { | |
"title": "Porzhig", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Porzhig</h4><p class=\"adresse\">Centre Ville Robert - Straed / Rue Massignon <br>22590 Porzhig</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/603/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5561187441803699, | |
47.18587068187411 | |
] | |
}, | |
"properties": { | |
"title": "Reudied", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Reudied</h4><p class=\"adresse\">Kreizenn sokiosevenadurel ar C'hastell / Centre socioculturel du Château - Alez Touren / allée Touraine <br>44400 Reudied</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/457/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.70746799688106, | |
48.124891906312506 | |
] | |
}, | |
"properties": { | |
"title": "Roazhon ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Roazhon </h4><p class=\"adresse\">Ti-feurm an Delenn / Ferme de la Harpe - Bali/Avenue Charles Tillon<br>35000 Roazhon</p><p class=\"telephone\">02 99 54 36 45</p><p><a href=\"/annuaire/435/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.6663280000000211, | |
48.102243 | |
] | |
}, | |
"properties": { | |
"title": "Roazhon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Roazhon</h4><p class=\"adresse\">25 straed / rue Pierre Martin<br>35000 Roazhon</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/436/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.317518899999982, | |
48.2339627 | |
] | |
}, | |
"properties": { | |
"title": "Rostrenenn ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Rostrenenn </h4><p class=\"adresse\">Impasse du Colombier 22110 Rostrenen<br>22110 Rostrenenn</p><p class=\"telephone\">06 51 00 22 95</p><p><a href=\"/annuaire/362/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.769497300000012, | |
48.5054934 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Brieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Brieg</h4><p class=\"adresse\">15 straed / rue François Ménez<br>22000 Sant-Brieg</p><p class=\"telephone\">07 83 40 98 08 </p><p><a href=\"/annuaire/363/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.747244300000034, | |
48.5015493 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Brieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Brieg</h4><p class=\"adresse\">138 straed al Lege / rue du Léger 22000 saint-brieuc<br>22000 Sant-Brieg</p><p class=\"telephone\">02 96 77 31 91 </p><p><a href=\"/annuaire/846/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.6515939999999318, | |
47.220519 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Ervlan ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Ervlan </h4><p class=\"adresse\">12 bali an Añjevinier / avenue de l'Angevinière<br>44800 Sant-Ervlan</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/341/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.6096096999999645, | |
47.2188038 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Ervlan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Ervlan</h4><p class=\"adresse\">Centre du Soleil Levant - 44 rue de la Blanche<br>44800 Sant-Ervlan</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/458/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.8363110000000236, | |
48.26718200000001 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Gondran", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Gondran</h4><p class=\"adresse\">35630 Sant-Gondran </p><p class=\"telephone\">06 08 94 74 67</p><p><a href=\"/annuaire/901/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.8383320000000367, | |
48.6562528 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Ke-Porzh-Olued", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Ke-Porzh-Olued</h4><p class=\"adresse\">Palez ar C'hendalc'hioù / Palais des Congrès - 10 bd de Gaulle <br>22410 Sant-Ke-Porzh-Olued</p><p class=\"telephone\">02 96 77 31 91</p><p><a href=\"/annuaire/847/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.062634, | |
48.417878 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Konan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Konan</h4><p class=\"adresse\">Ti-kêr / Mairie - 19 straed an Ti-kêr / 19 rue de la Mairie<br>22480 Sant-Konan</p><p class=\"telephone\">02 96 21 43 89</p><p><a href=\"/annuaire/478/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.0169225153442802, | |
48.6401728588636 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Maloù", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Maloù</h4><p class=\"adresse\">17 straed ar Porzh / rue du Port <br>35400 Sant-Maloù</p><p class=\"telephone\">06 45 29 53 59</p><p><a href=\"/annuaire/437/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.841062700000066, | |
48.5756689 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Martin-war-ar-Maez ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Martin-war-ar-Maez </h4><p class=\"adresse\">Ti ar gumun, 45 straed J. Jaurès / Maison communale, 45 rue Jean Jaurès<br>29670 Sant-Martin-war-ar-Maez</p><p class=\"telephone\">02 98 63 98 79</p><p><a href=\"/annuaire/449/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.28650949999997, | |
47.2433229 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Nazer", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Nazer</h4><p class=\"adresse\">9 chemin du Vallioux<br>44600 Sant-Nazer</p><p class=\"telephone\">06 14 36 30 47</p><p><a href=\"/annuaire/342/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.20436480000001, | |
47.2896277 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Nazer", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Nazer</h4><p class=\"adresse\">Skol /Ecole Waldeck-Rousseau - Bali Herbins / Avenue d'Herbins<br>44600 Sant-Nazer</p><p class=\"telephone\">02 40 91 75 84 </p><p><a href=\"/annuaire/442/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.6519345681229, | |
47.7029247113123 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Nolf", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Nolf</h4><p class=\"adresse\">Milin Gourvineg / Moulin de Gourvinec<br>56250 Sant-Nolf</p><p class=\"telephone\">02 97 45 45 17</p><p><a href=\"/annuaire/516/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.59718099999998, | |
48.563464 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Pabu ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Pabu </h4><p class=\"adresse\">Egorenn Roz / Avel - Espace Roz Avel<br>29830 Sant-Pabu</p><p class=\"telephone\">02 98 48 04 65</p><p><a href=\"/annuaire/494/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.9963401878906097, | |
48.348793960020394 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Riwal", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Riwal</h4><p class=\"adresse\">El levraoueg-kêr / A la bibliothèque municipale<br>29190 Sant-Riwal</p><p class=\"telephone\">02 98 81 47 30</p><p><a href=\"/annuaire/416/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.8759231851806804, | |
48.5581094341912 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Seo", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Seo</h4><p class=\"adresse\">Ti ar c'hevredigezhioù / Maison des associations<br>29600 Sant-Seo</p><p class=\"telephone\">02 98 88 48 92</p><p><a href=\"/annuaire/417/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.9461619999999584, | |
48.521183 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Tegoneg-Logeginer", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Tegoneg-Logeginer</h4><p class=\"adresse\">29410 Sant-Tegoneg</p><p class=\"telephone\">02 98 63 98 79 pe/ou 06 82 77 10 10</p><p><a href=\"/annuaire/1043/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.950358000000051, | |
47.703625 | |
] | |
}, | |
"properties": { | |
"title": "Santez-Anna-Wened", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Santez-Anna-Wened</h4><p class=\"adresse\">Salle Le Borgne<br>56400 Santez-Anna-Wened</p><p class=\"telephone\">02 97 29 16 58</p><p><a href=\"/annuaire/879/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.4857548999999608, | |
47.2502928 | |
] | |
}, | |
"properties": { | |
"title": "Santez-Lusenn", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Santez-Lusenn</h4><p class=\"adresse\">17 rue Jean Moulin 44980 Sainte-Luce-sur-Loire<br>44980 Santez-Lusenn </p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/881/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.763150682209016, | |
47.5254606223905 | |
] | |
}, | |
"properties": { | |
"title": "Sarzhav", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sarzhav</h4><p class=\"adresse\">15 allée du Bois<br>56370 Sarzhav</p><p class=\"telephone\">07 81 34 52 51</p><p><a href=\"/annuaire/612/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.6505505000000085, | |
47.6263094 | |
] | |
}, | |
"properties": { | |
"title": "Teiz-Noaloù", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Teiz-Noaloù</h4><p class=\"adresse\">Salle Orange - rue Jean Moulin <br>56450 Teiz</p><p class=\"telephone\">02 97 43 61 78</p><p><a href=\"/annuaire/522/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7370840745605847, | |
48.48977689695957 | |
] | |
}, | |
"properties": { | |
"title": "Tregaeg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Tregaeg</h4><p class=\"adresse\">22950 Tregaeg</p><p class=\"telephone\">02 96 77 31 91 </p><p><a href=\"/annuaire/1077/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.5123428355819897, | |
48.8268359315949 | |
] | |
}, | |
"properties": { | |
"title": "Tregastell", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Tregastell</h4><p class=\"adresse\">Plasenn Santez Anna / Place Sainte Anne<br>22730 Tregastell</p><p class=\"telephone\">02 96 23 00 76</p><p><a href=\"/annuaire/364/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.1706514, | |
48.416743 | |
] | |
}, | |
"properties": { | |
"title": "Trelevenez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Trelevenez</h4><p class=\"adresse\">4 straed / rue du Minihi<br>29800 Trelevenez</p><p class=\"telephone\">02 98 25 17 66</p><p><a href=\"/annuaire/421/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.2686492999999928, | |
48.332621 | |
] | |
}, | |
"properties": { | |
"title": "Tremargad", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Tremargad</h4><p class=\"adresse\">Tavarn/ Bar La Pépie - 1 Route du Lavoir<br>22110 Tremargad</p><p class=\"telephone\">02 96 36 51 81</p><p><a href=\"/annuaire/1032/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.8059547908935656, | |
47.6477548049405 | |
] | |
}, | |
"properties": { | |
"title": "Aradon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Aradon</h4><p class=\"adresse\">Ar Visenn / Le Vincin <br>56610 Aradon</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/546/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.477164493115197, | |
48.3916400163229 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">15 place Sanquer<br>29200 Brest</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/545/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.163071963073662, | |
48.561366 | |
] | |
}, | |
"properties": { | |
"title": "Gwengamp", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwengamp</h4><p class=\"adresse\">Campus de la Tour d'Auvergne<br>22200 Gwengamp</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/547/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.574460400000021, | |
48.2774613 | |
] | |
}, | |
"properties": { | |
"title": "Karaez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Karaez</h4><p class=\"adresse\">Ti ar vro - 6 plasenn Gwirioù Mab-den / 6 place des Droits de l'Homme<br>29270 Karaez</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/329/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.125691700000061, | |
47.9906778 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">3 straed Vañde / rue de la Vendée<br>29000 Kemper</p><p class=\"telephone\">02 98 95 55 99 </p><p><a href=\"/annuaire/326/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.096125571163952, | |
48.0021124103324 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">Chrysalide - 51 straed Janed Ark / 51 rue Jeanne d'Arc<br>29000 Kemper</p><p class=\"telephone\">09 73 67 33 71</p><p><a href=\"/annuaire/813/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.0935970232787895, | |
47.9724231676846 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">Kreizenn skol-veur / Pôle universitaire Pêr-Jakez Helias - 18 bali / avenue de la Plage des Gueux <br>29018 Kemper</p><p class=\"telephone\">02 90 94 47 23 </p><p><a href=\"/annuaire/856/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.547546000000011, | |
47.87258600000001 | |
] | |
}, | |
"properties": { | |
"title": "Kemperle", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemperle</h4><p class=\"adresse\">29300 Kemperle</p><p class=\"telephone\">02 90 94 47 23 </p><p><a href=\"/annuaire/1009/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.245806879762313, | |
48.44977974779975 | |
] | |
}, | |
"properties": { | |
"title": "Landerne", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landerne</h4><p class=\"adresse\">Kreizenn/Centre Théo Le Borgen, 1 straed / rue Pouliquen<br>29800 Landerne</p><p class=\"telephone\">02 98 21 39 94 </p><p><a href=\"/annuaire/330/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.469558799999959, | |
48.7441213 | |
] | |
}, | |
"properties": { | |
"title": "Lannuon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lannuon</h4><p class=\"adresse\">14 straed Louzaouenn an hañv / 14 rue du Muguet <br>Lannuon</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/987/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.834741099999974, | |
48.5837629 | |
] | |
}, | |
"properties": { | |
"title": "Montroulez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Montroulez</h4><p class=\"adresse\">41 quai du Léon<br>29260 Montroulez</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/885/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.41040328570557, | |
47.740065673211 | |
] | |
}, | |
"properties": { | |
"title": "Plañvour", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plañvour</h4><p class=\"adresse\">Skol ar Sonerezh - Soe / Conservatoire - Soye <br>56270 Plañvour</p><p class=\"telephone\">02 98 21 39 94 </p><p><a href=\"/annuaire/544/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.967055999999957, | |
48.066152 | |
] | |
}, | |
"properties": { | |
"title": "Pondi", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pondi</h4><p class=\"adresse\">56300 Pondi</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/1008/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.668712199999959, | |
48.1020816 | |
] | |
}, | |
"properties": { | |
"title": "Roazhon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Roazhon</h4><p class=\"adresse\">25 straed / rue Pierre Martin<br>35000 Roazhon</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/328/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.759921800000029, | |
48.5225322 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Brieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Brieg</h4><p class=\"adresse\">Straed al Leger / rue du Légué <br>22000 Sant-Brieg</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/886/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.6515939999999318, | |
47.220519 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Ervlan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Ervlan</h4><p class=\"adresse\">12 bali an Añjevinier / avenue de l'Angevinière<br>44800 Sant-Ervlan</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/542/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.996347839811733, | |
47.67756457444255 | |
] | |
}, | |
"properties": { | |
"title": "An Alre", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Alre</h4><p class=\"adresse\">6 ru/rue Joseph Rollo<br>56400 An Alre</p><p class=\"telephone\">02 97 29 16 58</p><p><a href=\"/annuaire/1068/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.3702448999999888, | |
47.7482524 | |
] | |
}, | |
"properties": { | |
"title": "An Oriant", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>An Oriant</h4><p class=\"adresse\">56100 An Oriant</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/1072/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.492126999999982, | |
48.4012202 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">29200 Brest </p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/1052/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.492126999999982, | |
48.4012202 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">29200 Brest</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/1053/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.328619000000003, | |
48.093228 | |
] | |
}, | |
"properties": { | |
"title": "Douarnenez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Douarnenez</h4><p class=\"adresse\">29100 Douarnenez</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/1054/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-5.091394799999989, | |
48.46136240000001 | |
] | |
}, | |
"properties": { | |
"title": "Eusa", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Eusa</h4><p class=\"adresse\">29242 Eusa </p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/1055/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.4629995000000235, | |
47.6376934 | |
] | |
}, | |
"properties": { | |
"title": "Groe", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Groe</h4><p class=\"adresse\">56590 Groe </p><p class=\"telephone\">02 96 61 48 63</p><p><a href=\"/annuaire/1069/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7627557000000706, | |
47.657729 | |
] | |
}, | |
"properties": { | |
"title": "Gwened", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwened</h4><p class=\"adresse\">3 straed al Lezenn / 3 rue de la Loi<br>56000 Gwened</p><p class=\"telephone\">09 72 61 16 89</p><p><a href=\"/annuaire/1073/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7791158999999652, | |
47.6462191 | |
] | |
}, | |
"properties": { | |
"title": "Gwened", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwened</h4><p class=\"adresse\">31 rue Guillaume Le Bartz<br>56000 Gwened</p><p class=\"telephone\">06 79 91 86 77</p><p><a href=\"/annuaire/1074/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.574460400000021, | |
48.2774613 | |
] | |
}, | |
"properties": { | |
"title": "Karaez-Plougêr", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Karaez-Plougêr</h4><p class=\"adresse\">Ti ar vro - 6 plasenn Gwirioù Mab-den / 6 place des Droits de l'Homme<br>29270 Karaez</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/524/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.070048499999984, | |
48.0070968 | |
] | |
}, | |
"properties": { | |
"title": "Kastellin", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kastellin</h4><p class=\"adresse\">22 chemin de Mouliouen<br>29000 Kemper</p><p class=\"telephone\">02 98 95 59 31</p><p><a href=\"/annuaire/1056/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.097499771163939, | |
47.9937435742659 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">Ti ar vro Kemper - Plasenn Familh Gabai / Place famille gabaï<br>29000 Kemper</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/527/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.3207669999999325, | |
48.006196 | |
] | |
}, | |
"properties": { | |
"title": "Kernaskledenn", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kernaskledenn</h4><p class=\"adresse\">56540 Kernaskledenn </p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/1070/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.919900050292995, | |
47.87292450190189 | |
] | |
}, | |
"properties": { | |
"title": "Konk-Kerne", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Konk-Kerne</h4><p class=\"adresse\">29900 Konk-Kerne</p><p class=\"telephone\">02 98 99 75 81</p><p><a href=\"/annuaire/1057/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.20493399999998, | |
48.063567 | |
] | |
}, | |
"properties": { | |
"title": "Konkored", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Konkored</h4><p class=\"adresse\">56430 Konkored </p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/1071/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.726888000000031, | |
48.2261574 | |
] | |
}, | |
"properties": { | |
"title": "Landelo", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landelo</h4><p class=\"adresse\">3 straed ar Ster Aon / 3 rue de l'Aulne<br>29530 Landelo</p><p class=\"telephone\">02 98 93 93 08 </p><p><a href=\"/annuaire/1058/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.245967141750953, | |
48.44976373638715 | |
] | |
}, | |
"properties": { | |
"title": "Landerne", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Landerne</h4><p class=\"adresse\">Kreizenn / Centre Théo Le Borgne - 1 straed / rue Pouliquen <br>29800 Landerne</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/525/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.83323740000003, | |
48.5821748 | |
] | |
}, | |
"properties": { | |
"title": "Montroulez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Montroulez</h4><p class=\"adresse\">41 kae / quai du Léon<br>29600 Montroulez</p><p class=\"telephone\">09 75 49 33 71 pe/ou 02 97 57 06 96</p><p><a href=\"/annuaire/526/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.834741099999974, | |
48.5837629 | |
] | |
}, | |
"properties": { | |
"title": "Montroulez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Montroulez</h4><p class=\"adresse\">41 kae / quai Leon<br>29600 Montroulez</p><p class=\"telephone\">02 98 63 98 79 pe/ou 06 82 77 10 10 </p><p><a href=\"/annuaire/1059/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.6515939999999318, | |
47.220519 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">13 straed ar Breolimer / 13 rue du Rémouleur<br>44800 Sant-Ervlan</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/529/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.2700320000000147, | |
48.59708699999999 | |
] | |
}, | |
"properties": { | |
"title": "Pederneg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pederneg</h4><p class=\"adresse\">22540 Pederneg </p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/1049/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.410306726181034, | |
47.74010174864911 | |
] | |
}, | |
"properties": { | |
"title": "Plañvour", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plañvour</h4><p class=\"adresse\">Amzer Nevez Soe /Soye<br>56270 Plañvour</p><p class=\"telephone\">02 98 21 39 94</p><p><a href=\"/annuaire/1067/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.801103000000012, | |
47.705233 | |
] | |
}, | |
"properties": { | |
"title": "Pleskob", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pleskob</h4><p class=\"adresse\">Kerfuñs Vihan<br>56890 Pleskob</p><p class=\"telephone\">02 97 60 78 36</p><p><a href=\"/annuaire/1066/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.126884300000029, | |
48.4458801 | |
] | |
}, | |
"properties": { | |
"title": "Plijidi", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plijidi</h4><p class=\"adresse\">6 hent Sant Pêr / chemin de Saint Pierre<br>22720 Plijidi</p><p class=\"telephone\">02 96 13 10 69</p><p><a href=\"/annuaire/528/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.9321499999999787, | |
48.67586000000001 | |
] | |
}, | |
"properties": { | |
"title": "Plouha", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouha</h4><p class=\"adresse\">22580 Plouha </p><p class=\"telephone\">02 96 22 49 79</p><p><a href=\"/annuaire/1050/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.1044440000000577, | |
47.115491 | |
] | |
}, | |
"properties": { | |
"title": "Pornizh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pornizh</h4><p class=\"adresse\">44210 Pornizh </p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/1062/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.668712199999959, | |
48.1020816 | |
] | |
}, | |
"properties": { | |
"title": "Roazhon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Roazhon</h4><p class=\"adresse\">25 straed / rue Pierre Martin<br>35000 Roazhon</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/523/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.7677264999999807, | |
48.50583959999999 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Brieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Brieg</h4><p class=\"adresse\">15 straed/rue François Menez<br>22000 Sant-Brieg </p><p class=\"telephone\">07 83 40 98 08</p><p><a href=\"/annuaire/1051/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.613668299999972, | |
47.2449527 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Ervlan", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Ervlan</h4><p class=\"adresse\">22 bali an Añjevinier / avenue de l'Angevinière<br>44800 Sant-Ervlan</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/1064/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.9815768999999364, | |
48.6319149 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Maloù", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Maloù</h4><p class=\"adresse\">35400 Sant-Maloù</p><p class=\"telephone\">02 99 38 75 83</p><p><a href=\"/annuaire/1061/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.2138479999999845, | |
47.2734979 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Nazer", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Nazer</h4><p class=\"adresse\">44600 Sant-Nazer</p><p class=\"telephone\">02 40 91 75 84</p><p><a href=\"/annuaire/1065/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.9848438000000215, | |
47.9081853 | |
] | |
}, | |
"properties": { | |
"title": "Ar Forest-Fouenant ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ar Forest-Fouenant </h4><p class=\"adresse\">Le Nautile - 2 rue des Cerisiers <br>29940 Ar Forest-Fouenant</p><p class=\"telephone\">02 98 56 92 60</p><p><a href=\"/annuaire/372/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.9796049153442254, | |
47.9063417396283 | |
] | |
}, | |
"properties": { | |
"title": "Ar Forest-Fouenant ", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ar Forest-Fouenant </h4><p class=\"adresse\">Egorenn ar Baradoz / Espace Paradis <br>29940 Ar Forest-Fouenant</p><p class=\"telephone\">02 98 56 91 72</p><p><a href=\"/annuaire/373/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.9952032999999574, | |
47.7211843 | |
] | |
}, | |
"properties": { | |
"title": "Brec'h", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brec'h</h4><p class=\"adresse\">1 bis straed ar Vilin / rue du Moulin<br>Brec'h</p><p class=\"telephone\">02 97 78 41 40</p><p><a href=\"/annuaire/648/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.490542199999936, | |
48.3842593 | |
] | |
}, | |
"properties": { | |
"title": "Brest", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brest</h4><p class=\"adresse\">18 straed / rue Duguay Trouin<br>29200 Brest</p><p class=\"telephone\">02 98 80 26 71</p><p><a href=\"/annuaire/644/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5509170000000267, | |
47.2960332 | |
] | |
}, | |
"properties": { | |
"title": "Chapel-Erzh", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Chapel-Erzh</h4><p class=\"adresse\">Plasenn / Place Savelli<br>44240 Chapel-Erzh</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/640/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.762407499999995, | |
47.658663 | |
] | |
}, | |
"properties": { | |
"title": "Gwened", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Gwened</h4><p class=\"adresse\">Straed / Rue Hoche <br>56000 Gwened</p><p class=\"telephone\">06 24 93 61 34</p><p><a href=\"/annuaire/903/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.4321350000000166, | |
48.407116 | |
] | |
}, | |
"properties": { | |
"title": "Kallag", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kallag</h4><p class=\"adresse\">Straed Kerbuaneg / rue Kerbuannec<br>22160 Kallag</p><p class=\"telephone\">02 96 45 94 38</p><p><a href=\"/annuaire/645/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.574283700000024, | |
48.2757269 | |
] | |
}, | |
"properties": { | |
"title": "Karaez", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Karaez</h4><p class=\"adresse\">Ti-kêr / Mairie <br>29270 Karaez</p><p class=\"telephone\">02 96 45 94 38</p><p><a href=\"/annuaire/646/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.097511599999962, | |
47.9936194 | |
] | |
}, | |
"properties": { | |
"title": "Kemper", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kemper</h4><p class=\"adresse\">3 reper Familh gabaï / esplanade Famille Gabaï<br>29000 Kemper</p><p class=\"telephone\">02 98 90 70 43</p><p><a href=\"/annuaire/649/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.3454964000000018, | |
47.2356387 | |
] | |
}, | |
"properties": { | |
"title": "Lavreer-Botorel", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lavreer-Botorel</h4><p class=\"adresse\">Straed / Rue des Moulins<br>44430 Lavreer-Botorel</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/641/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.35786591806027, | |
47.23626201195249 | |
] | |
}, | |
"properties": { | |
"title": "Lavreer-Botorel", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lavreer-Botorel</h4><p class=\"adresse\">Salle de la Tannerie<br>44430 Lavreer-Botorel </p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/655/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.56335909416498, | |
47.2183697529107 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">straed / rue Harouys<br>44000 Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/638/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.5541964000000237, | |
47.2143601 | |
] | |
}, | |
"properties": { | |
"title": "Naoned", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Naoned</h4><p class=\"adresse\">Naoned</p><p class=\"telephone\">02 40 20 39 74</p><p><a href=\"/annuaire/643/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.3270678999999745, | |
48.8419075 | |
] | |
}, | |
"properties": { | |
"title": "Pariz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pariz</h4><p class=\"adresse\">22 rue Delambre <br>75014 Pariz</p><p class=\"telephone\">01 43 35 26 41</p><p><a href=\"/annuaire/656/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.07220319999999, | |
48.771659 | |
] | |
}, | |
"properties": { | |
"title": "Pempoull", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pempoull</h4><p class=\"adresse\">2 hent Kerjikel - 2 chemin de Kergiquel <br>22500 Pempoull </p><p class=\"telephone\">02 96 16 43 20</p><p><a href=\"/annuaire/920/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.007096000000047, | |
47.773607 | |
] | |
}, | |
"properties": { | |
"title": "Pleuwigner", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pleuwigner</h4><p class=\"adresse\">Straed / Rue du Tanin<br>56330 Pleuwigner</p><p class=\"telephone\">02 97 29 16 58</p><p><a href=\"/annuaire/651/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.7961887999999817, | |
48.6949042 | |
] | |
}, | |
"properties": { | |
"title": "Plouganoù", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouganoù</h4><p class=\"adresse\">impasse Pierre de Coubertin<br>29630 Plouganoù</p><p class=\"telephone\">02 98 67 34 68</p><p><a href=\"/annuaire/637/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.605372999999986, | |
48.3829327 | |
] | |
}, | |
"properties": { | |
"title": "Plouzane", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Plouzane</h4><p class=\"adresse\">Kreizenn sokial Tabarly / Centre social Tabarly - 4 straed Anatol ar Braz<br>29280 Plouzane</p><p class=\"telephone\">06 81 91 49 82</p><p><a href=\"/annuaire/815/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-1.6810203999999658, | |
48.1162476 | |
] | |
}, | |
"properties": { | |
"title": "Roazhon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Roazhon</h4><p class=\"adresse\">9 straed Sant-Maloù / 9 rue de Saint-Malo <br>35000 Roazhon</p><p><a href=\"/annuaire/967/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-2.769497300000012, | |
48.5054934 | |
] | |
}, | |
"properties": { | |
"title": "Sant-Brieg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sant-Brieg</h4><p class=\"adresse\">15 straed / rue François Menez<br>22000 Sant-Brieg</p><p class=\"telephone\">02 96 78 37 13</p><p><a href=\"/annuaire/657/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.702320888854956, | |
48.192000346666 | |
] | |
}, | |
"properties": { | |
"title": "Speied", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Speied</h4><p class=\"adresse\">Hent Gourin / Route de Gourin<br>29540 Speied</p><p class=\"telephone\">02 96 45 94 38</p><p><a href=\"/annuaire/647/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-0.5353734999999915, | |
47.4743618 | |
] | |
}, | |
"properties": { | |
"title": "Angers", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Angers</h4><p class=\"adresse\">25 bis rue des Banchais<br>49100 Angers</p><p class=\"telephone\">06 30 30 32 69</p><p><a href=\"/annuaire/610/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.389230999999995, | |
48.707512 | |
] | |
}, | |
"properties": { | |
"title": "Athis-Mons", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Athis-Mons</h4><p class=\"adresse\">Mairie d'Athis-Mons<br>91200 Athis-Mons</p><p class=\"telephone\">06 84 89 68 59</p><p><a href=\"/annuaire/567/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
3.0663342000000284, | |
45.7770666 | |
] | |
}, | |
"properties": { | |
"title": "Chamalières", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Chamalières</h4><p class=\"adresse\">11 rue des Saulées<br>63400 Chamalières</p><p class=\"telephone\">04 73 37 15 27</p><p><a href=\"/annuaire/577/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.997078800000054, | |
48.8012813 | |
] | |
}, | |
"properties": { | |
"title": "Faremoutiers", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Faremoutiers</h4><p class=\"adresse\">77176 Faremoutiers </p><p><a href=\"/annuaire/783/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
1.1794052566223172, | |
49.39978066812663 | |
] | |
}, | |
"properties": { | |
"title": "Franqueville-Saint-Pierre", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Franqueville-Saint-Pierre</h4><p class=\"adresse\">Rue Constant Lebret<br>76520 Franqueville-Saint-Pierre </p><p class=\"telephone\">06 29 52 61 51</p><p><a href=\"/annuaire/578/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
5.731328737017861, | |
45.165588748771 | |
] | |
}, | |
"properties": { | |
"title": "Grenoble", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Grenoble</h4><p class=\"adresse\">80 Galerie Arlequin - Locaux du CLEPT<br>38100 Grenoble</p><p><a href=\"/annuaire/557/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.6560313126586834, | |
47.3459003096819 | |
] | |
}, | |
"properties": { | |
"title": "Joué-lès-Tours", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Joué-lès-Tours</h4><p class=\"adresse\">Maison pour tous Place des droits de l'Homme<br>37300 Joué-lès-Tours</p><p class=\"telephone\">06 11 90 77 30</p><p><a href=\"/annuaire/574/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-0.765883400000007, | |
48.060538 | |
] | |
}, | |
"properties": { | |
"title": "Laval", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Laval</h4><p class=\"adresse\">2 rue du Ponceau<br>53000 Laval</p><p class=\"telephone\">02 43 53 56 91</p><p><a href=\"/annuaire/576/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
4.849587299999939, | |
45.7677758 | |
] | |
}, | |
"properties": { | |
"title": "Lyon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Lyon</h4><p class=\"adresse\">13 rue Antoine Fonlupt<br>69007 Lyon</p><p><a href=\"/annuaire/558/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
6.1785122, | |
48.6795325 | |
] | |
}, | |
"properties": { | |
"title": "Nancy", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Nancy</h4><p class=\"adresse\">11 rue du Docteur Bernheim<br>54000 Nancy</p><p><a href=\"/annuaire/855/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.3270678999999745, | |
48.8419075 | |
] | |
}, | |
"properties": { | |
"title": "Pariz", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pariz</h4><p class=\"adresse\">22 rue Delambre<br>75014 Pariz</p><p class=\"telephone\">01 43 35 26 41</p><p><a href=\"/annuaire/565/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
5.329958600000055, | |
45.9517273 | |
] | |
}, | |
"properties": { | |
"title": "Pariz VIII", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Pariz VIII</h4><p class=\"adresse\">2 rue de la Liberté<br>93526 Saint-Denis</p><p class=\"telephone\">01 49 40 68 41</p><p><a href=\"/annuaire/563/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
6.5569732999999815, | |
46.3866919 | |
] | |
}, | |
"properties": { | |
"title": "Publier", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Publier</h4><p class=\"adresse\">304 rue de Martelin <br>74500 Publier</p><p class=\"telephone\">06 48 34 67 99</p><p><a href=\"/annuaire/923/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.1677985000000035, | |
48.8652404 | |
] | |
}, | |
"properties": { | |
"title": "Rueil-Malmaison", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Rueil-Malmaison</h4><p class=\"adresse\">10-12 rue des Chèvremonts<br>92500 Rueil-Malmaison</p><p class=\"telephone\">06 08 54 16 20</p><p><a href=\"/annuaire/566/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.7340655000000424, | |
47.359306 | |
] | |
}, | |
"properties": { | |
"title": "Saint-Avertin", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Saint-Avertin</h4><p class=\"adresse\">18 rue de l'Oiselet<br>37550 Saint-Avertin</p><p class=\"telephone\">02 47 25 10 98 </p><p><a href=\"/annuaire/984/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.3612298000000465, | |
48.9403209 | |
] | |
}, | |
"properties": { | |
"title": "Saint-Denis", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Saint-Denis</h4><p class=\"adresse\">2 place Paul Langevin<br>93200 Saint-Denis </p><p class=\"telephone\">06 70 21 42 99 </p><p><a href=\"/annuaire/642/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.35523749999993, | |
48.6766947 | |
] | |
}, | |
"properties": { | |
"title": "Savigny-sur-Orge", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Savigny-sur-Orge</h4><p class=\"adresse\">MJC / MPT 12 Grande Rue<br>91600 Savigny-sur-Orge</p><p class=\"telephone\">01 69 24 72 65</p><p><a href=\"/annuaire/568/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
7.7298117000000275, | |
48.6263209 | |
] | |
}, | |
"properties": { | |
"title": "Strasbourg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Strasbourg</h4><p class=\"adresse\">35 route de Brumath <br>67460 Souffelweyersheim</p><p class=\"telephone\">03 88 61 51 22</p><p><a href=\"/annuaire/559/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.57886910000002, | |
48.9451134 | |
] | |
}, | |
"properties": { | |
"title": "Tremblay-en-France", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Tremblay-en-France</h4><p class=\"adresse\">Espace J.-R Caussimon - 6, rue des Alpes<br>93290 Tremblay-en-France</p><p class=\"telephone\">01 48 60 22 53</p><p><a href=\"/annuaire/570/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.1619160000000197, | |
48.8039812 | |
] | |
}, | |
"properties": { | |
"title": "Versailles", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Versailles</h4><p class=\"adresse\">7 rue du Béarn<br>78000 Versailles</p><p class=\"telephone\">01 46 02 98 24 </p><p><a href=\"/annuaire/573/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
2.3667527000000064, | |
48.5509931 | |
] | |
}, | |
"properties": { | |
"title": "Vert-Le-Petit", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Vert-Le-Petit</h4><p class=\"adresse\">Place de la Mairie<br>91710 Vert-Le-Petit</p><p class=\"telephone\">01 64 93 40 06</p><p><a href=\"/annuaire/579/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-0.571714336770583, | |
44.78120209960875 | |
] | |
}, | |
"properties": { | |
"title": "Villenave d'Ornon", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Villenave d'Ornon</h4><p class=\"adresse\">Maison pour tous Canteloup - 12 rue du Commandant Charcot<br>33140 Villenave d'Ornon</p><p class=\"telephone\">06 51 19 72 53</p><p><a href=\"/annuaire/888/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-4.087492699999984, | |
52.4150914 | |
] | |
}, | |
"properties": { | |
"title": "Aberystwyth", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Aberystwyth</h4><p class=\"adresse\">Yr Hen Goleg Stryd y brenin - Ceredigion<br>SY23 2AX Aberystwyth (Kembre)</p><p><a href=\"/annuaire/597/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-3.574460400000021, | |
48.2774613 | |
] | |
}, | |
"properties": { | |
"title": "Brusel", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Brusel</h4><p class=\"adresse\">6 place des Droits de l'Homme<br>29270 Karaez</p><p><a href=\"/annuaire/602/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.1078995999999961, | |
52.2020967 | |
] | |
}, | |
"properties": { | |
"title": "Cambridge (Bro-Saoz)", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Cambridge (Bro-Saoz)</h4><p class=\"adresse\">9 West Road<br>CB3 9DP Cambridge (Bro-Saoz)</p><p><a href=\"/annuaire/590/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-71.1165876, | |
42.3741886 | |
] | |
}, | |
"properties": { | |
"title": "Cambridge (Massachussetts)", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Cambridge (Massachussetts)</h4><p class=\"adresse\">Harvard University - Massachusetts Hall<br>MA 02138 Cambridge (Massachusetts)</p><p class=\"telephone\">(001) 617.495.1000</p><p><a href=\"/annuaire/608/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-9.057440176196224, | |
53.2757941325175 | |
] | |
}, | |
"properties": { | |
"title": "Galliv", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Galliv</h4><p class=\"adresse\">University Road<br>Galliv (Iwerzhon)</p><p><a href=\"/annuaire/588/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-9.057001799999966, | |
53.2710266 | |
] | |
}, | |
"properties": { | |
"title": "Galliv", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Galliv</h4><p class=\"adresse\">Arus na nGael 45 Dominic Street<br>Galliv (Iwerzhon)</p><p><a href=\"/annuaire/595/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
7.192070899999976, | |
50.6765532 | |
] | |
}, | |
"properties": { | |
"title": "Königswinter / Cognac", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Königswinter / Cognac</h4><p class=\"adresse\">Grabenstrasse 62<br>D-53639 Königswinter</p><p><a href=\"/annuaire/582/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
12.57139810000001, | |
55.6803641 | |
] | |
}, | |
"properties": { | |
"title": "Kopenhagen", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Kopenhagen</h4><p class=\"adresse\">Norregade 10 - P.O.B. 2177<br>DK-1017 Kopenhagen (Danmark)</p><p><a href=\"/annuaire/593/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-6.588352699999973, | |
53.382066 | |
] | |
}, | |
"properties": { | |
"title": "Maigh Nuad", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Maigh Nuad</h4><p class=\"adresse\">Maynooth<br>Maigh Nuad (Iwerzhon)</p><p><a href=\"/annuaire/594/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
8.77412240000001, | |
50.810107 | |
] | |
}, | |
"properties": { | |
"title": "Marburg", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Marburg</h4><p class=\"adresse\">Biegenstrasse 10<br>35031 Marburg (Alamagn)</p><p><a href=\"/annuaire/581/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
37.6184217, | |
55.7512419 | |
] | |
}, | |
"properties": { | |
"title": "Moskov", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Moskov</h4><p class=\"adresse\">31/1 avenue Lomonossovskiy<br>117192 Moscou</p><p><a href=\"/annuaire/587/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-74.0059731, | |
40.7143528 | |
] | |
}, | |
"properties": { | |
"title": "New York", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>New York</h4><p class=\"adresse\">New York </p><p><a href=\"/annuaire/585/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-75.68579950000003, | |
45.4238072 | |
] | |
}, | |
"properties": { | |
"title": "Ottawa", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Ottawa</h4><p class=\"adresse\">70, avenue Laurier Est - K1N 6N5<br>Ottawa</p><p><a href=\"/annuaire/586/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
16.93404822009893, | |
52.40883747634939 | |
] | |
}, | |
"properties": { | |
"title": "Poznań", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Poznań</h4><p class=\"adresse\">Stary Rynek 37 <br>61-772 Poznań (Polonia)</p><p><a href=\"/annuaire/599/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
151.1570527, | |
-33.8837787 | |
] | |
}, | |
"properties": { | |
"title": "Sydney", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Sydney</h4><p class=\"adresse\">Leichhardt - P.O. Box 947<br>Sydney</p><p><a href=\"/annuaire/601/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-79.38962909999998, | |
43.6672666 | |
] | |
}, | |
"properties": { | |
"title": "Toronto", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Toronto</h4><p class=\"adresse\">St. Michael'College 81 St. Mary Street<br>ON M5S 1Ja Toronto (Kanada)</p><p><a href=\"/annuaire/596/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
16.360860499999944, | |
48.2130162 | |
] | |
}, | |
"properties": { | |
"title": "Vienna", | |
"text": "<div class=\"textInfo\" style=\"width:300px; min-height: 110px;\"><div style=\"float:left;\"><h4>Vienna</h4><p class=\"adresse\">Tiefparterre, Hof IV, Stiege 6 Dr. Karl-Lueger Ring 1<br>1010 Vienna (Aostria)</p><p><a href=\"/annuaire/583/179-lec-hiou-deskin.htm\">Gouzout hiroc'h</a></p></div></div>" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment