Widget:CarteFablabs

De fablabo
Aller à : navigation, rechercher

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

trouver les coordonnées : http://universimmedia.pagesperso-orange.fr/geo/nievre.htm

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


ne pas effacer ! ça sert ! CSV

cartographie tous les fablabs

 LongLattSite
AMI-multimédia4.643.6http://www.ami-multimedia.org
Angers Factory-0.5447.47
ArtLab2.348.82http://www.digitalarti.com/fr/blog/artlab blog
Artilect1.443.5http://artilect.fr
Atelier des Beaux boulons47.83.57http://www.beauxboulons.org
Barakason-1.5547.1861376http://barakason.com/contact
Beta PI-0.14346.221http://www.labetapi.fr/
CCSTI Grenoble5.745.1http://fablab.ccsti-grenoble.org/
COAGUL5.1147.31http://coagul.org/drupal/
Carrefour numérique : Cité des Sciences2.30077748.89741http://www.cite-sciences.fr/carrefour-numerique
Centre socioculturel Georges-Brassens2.448.9http://www.centresocial-gb.com/
Cerfa Verre5.748.5http://www.cerfav.fr/fablab/
Chemille-0.7147.21http://quinzainedelafabrique.csc49.fr/
ClubInfoAndernos-1.0844.74http://clubinfoandernos.canalblog.com/
CoAgul5.1147.31http://coagul.org/drupal/
Cotedopale1.91457550.956011http://www.fablab-cotedopale.fr/
Cyber-base Paese Novo9.442.6http://paesenovo.cyber-base.org/
EPN Armand jubienhttp://epn.cc-parthenay.fr/
ETNA (Espace Technologies Numériques et Autoformation)1.30077747.5http://biblio.ville-blois.fr/
EasyCeram1.296447700000044345.8597462
Ecodesign Fablab2.4548.87http://www.apedec.org/?tag=fab-lab
Ecolab7,20243,683http://www.ecolab-cotedazur.com/ECOLAB-OPENLOFT/
Ecole Centrale5.4343.34https://fablab.centrale-marseille.fr/
Electrolab2.184431748.8951104http://www.electrolab.fr/
Epn st James-1.348.5http://www.epnsaintjames.com
Espace num de Folelli9.442.4http://folelli.blogspot.fr/
Etablisandco-1.15905246.149499https://www.facebook.com/fablab17
Etoele2.349.89http://etoele.com/fr/
Etolab2.30077749.89741http://www.etolab.com/
FOL4.845.7http://fabriquedobjetslibres.fr/
Fab'Alpes6.073954444.5594697http://www.fabalpes.org/
FabLab du CESI Rouen1.089895749.4753057https://recherche.cesi.fr/rouen/
FabMake-1.587310047.1651340http://www.fabmake.fr/
Fablab Blanc Mesnilhttp://www.humanite.fr/politique/yann-le-pollotec-un-fab-lab-est-un-vecteur-de-re-i-513671
Fablab Château Thierry3.3949.03https://www.facebook.com/fablab.chateau.thierry
Fablab Robert-Houdin1.305024647.5833464http://fablab-robert-houdin.org/
Fablab Tarbes0.0443.22http://www.iut-tarbes.fr/LE-DO-IT-YOURSELF-ARRIVE-SUR.html
Fablab Tourangeau0.66864047.392739http://www.funlab.fr
Fablab d'Arras2.730292100000042450.2974792http://www.fablabarras.fr
Fablab-lannion-3.4648.73http://fablab-lannion.org
FablabLille3.150.6http://www.fablablille.fr/
FablabUtc2.81903449.415238http://assos.utc.fr/fablab/accueil
Fablaborleans1.947.9http://www.fablab.tech-orleans.fr/
Fabmake-1.587310047.1651340http://www.fabmake.fr/
Fabpau-0.343.2http://fablab-pau.org/
Faclab248.9http://www.faclab.org/
FormaLAB3.845http://formalab.fr/
GSILab6.148.658https://www.facebook.com/GSILab
Goldorhack-1.56433248.841858http://www.goldorhack.org/
GraouLab6.174739549.0993719http://www.graoulab.org//
… 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>

///fonction pour recuperer la liste des coords des labs function requete(url) { if (window.XMLHttpRequest) // Mozilla, Safari,...

  xhr = new XMLHttpRequest();

else if (window.ActiveXObject)

       xhr = new ActiveXObject("Microsoft.XMLHTTP");

if (!xhr) {

 alert("Abandon : Impossible de créer une instance Ajax");
 return false;

} xhr.onreadystatechange = reponse; xhr.open("GET", url, true); xhr.send(null); }

function reponse() { if (xhr.readyState == 4) {

if (xhr.status == 200) {

//alert(xhr.responseText);


//le fichier arrive en CSV (valeurs séparées par des virgules) var lignes=new RegExp("[\n]+", "g"); var tableau=xhr.responseText.split(lignes); var colones=new RegExp("[,]+", "g"); for(var i=1;i<tableau.length-1;i++)

{
  var coords=tableau[i].split(colones);
 // alert(coords[0]);
  L.marker([coords[2], coords[1]]).addTo(map).bindPopup("<a href="+coords[3]+" target=\"_blank\">"+coords[0]+"</a>");
}
document.getElementById("nombreLabos").innerHTML = "Il ya actuellement "+tableau.length+" laboratoires renseignés sur cette page";
} 
else {
   alert("La requête AJAX a rencontré un problème ..");
 }
}

}



///////////fin javaload


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);




//appel de la liste des labs requete("Sp%C3%A9cial:Ask/-5B-5BCategory:Fablabs-5D-5D/-3FLong-23-2D/-3FLatt-23-2D/-3FSite/limit%3D150/format%3Dcsv/sep%3D,/headers%3Dshow");

</script>