Widget:CarteFablabs

De fablabo
Aller à : navigation, rechercher

{{#widget:Leaflet |nom=(optionnel) |longitude=51 |latitude=3.56 |zoom=1 a 18 |largeur= |hauteur=

} 111

on peut utiliser un droplet présent sur cette page pour connaitre les coords d'un objet :http://www.mediawikiwidgets.org/Google_Maps

'

inspiration: http://www.mediawikiwidgets.org/w/index.php?title=Widget:Google_Maps&action=edit

 Long
AMI-multimédia4.6
Angers Factory-0.54
ArtLab2.3
Artilect1.4
Atelier des Beaux boulons47.8
Barakason-1.55
Beta PI-0.143
CCSTI Grenoble5.7
COAGUL5.11
Carrefour numérique : Cité des Sciences2.300777
Centre socioculturel Georges-Brassens2.4
Cerfa Verre5.7
Chemille-0.71
ClubInfoAndernos-1.08
CoAgul5.11
Cotedopale1.914575
Cyber-base Paese Novo9.4
EPN Armand jubien
ETNA (Espace Technologies Numériques et Autoformation)1.300777
EasyCeram1.2964477000000443
Ecodesign Fablab2.45
Ecolab7,202
Ecole Centrale5.43
Electrolab2.1844317
Epn st James-1.3
Espace num de Folelli9.4
Etablisandco-1.159052
Etoele2.3
Etolab2.300777
FOL4.8
Fab'Alpes6.0739544
FabLab du CESI Rouen1.0898957
FabMake-1.5873100
Fablab Blanc Mesnil
Fablab Château Thierry3.39
Fablab Robert-Houdin1.3050246
Fablab Tarbes0.04
Fablab Tourangeau0.668640
Fablab d'Arras2.7302921000000424
Fablab-lannion-3.46
FablabLille3.1
FablabUtc2.819034
Fablaborleans1.9
Fabmake-1.5873100
Fabpau-0.3
Faclab2
FormaLAB3.8
GSILab6.1
Goldorhack-1.564332
GraouLab6.1747395
… autres résultats


L.marker([51.5, -0.09]).addTo(map) .bindPopup("Hello world!
I am a popup.").openPopup();



<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4.4/leaflet.css" />

<script src="http://cdn.leafletjs.com/leaflet-0.4/leaflet.js"></script>

<script>

var map = L.map().setView([, ], );

L.tileLayer('http://{s}.tile.cloudmade.com/7ad1b23bf3f347f8b0ab2416f66737fc/997/256/{z}/{x}/{y}.png', { maxZoom: 18, attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://cloudmade.com">CloudMade</a>' }).addTo(map);


L.marker([51.5, -0.09]).addTo(map) .bindPopup("Hello world!
I am a popup.").openPopup();

L.circle([51.508, -0.11], 500, { color: 'red', fillColor: '#f03', fillOpacity: 0.5 }).addTo(map).bindPopup("I am a circle.");

L.polygon([ [51.509, -0.08], [51.503, -0.06], [51.51, -0.047] ]).addTo(map).bindPopup("I am a polygon.");


var popup = L.popup();

function onMapClick(e) { popup .setLatLng(e.latlng) .setContent("You clicked the map at " + e.latlng.toString()) .openOn(map); }

map.on('click', onMapClick);

</script>