Widget:CarteFablabs
{{#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édia | 4.6 |
Angers Factory | -0.54 |
ArtLab | 2.3 |
Artilect | 1.4 |
Atelier des Beaux boulons | 47.8 |
Barakason | -1.55 |
Beta PI | -0.143 |
CCSTI Grenoble | 5.7 |
COAGUL | 5.11 |
Carrefour numérique : Cité des Sciences | 2.300777 |
Centre socioculturel Georges-Brassens | 2.4 |
Cerfa Verre | 5.7 |
Chemille | -0.71 |
ClubInfoAndernos | -1.08 |
CoAgul | 5.11 |
Cotedopale | 1.914575 |
Cyber-base Paese Novo | 9.4 |
EPN Armand jubien | |
ETNA (Espace Technologies Numériques et Autoformation) | 1.300777 |
EasyCeram | 1.2964477000000443 |
Ecodesign Fablab | 2.45 |
Ecolab | 7,202 |
Ecole Centrale | 5.43 |
Electrolab | 2.1844317 |
Epn st James | -1.3 |
Espace num de Folelli | 9.4 |
Etablisandco | -1.159052 |
Etoele | 2.3 |
Etolab | 2.300777 |
FOL | 4.8 |
Fab'Alpes | 6.0739544 |
FabLab du CESI Rouen | 1.0898957 |
FabMake | -1.5873100 |
Fablab Blanc Mesnil | |
Fablab Château Thierry | 3.39 |
Fablab Robert-Houdin | 1.3050246 |
Fablab Tarbes | 0.04 |
Fablab Tourangeau | 0.668640 |
Fablab d'Arras | 2.7302921000000424 |
Fablab-lannion | -3.46 |
FablabLille | 3.1 |
FablabUtc | 2.819034 |
Fablaborleans | 1.9 |
Fabmake | -1.5873100 |
Fabpau | -0.3 |
Faclab | 2 |
FormaLAB | 3.8 |
GSILab | 6.1 |
Goldorhack | -1.564332 |
GraouLab | 6.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>