Bienvenue sur le wiki de Nuit debout, nous sommes le 3020 mars.




Utilisateur:Jmv/common.js : Différence entre versions

De NuitDebout
Aller à : navigation, rechercher
Ligne 21 : Ligne 21 :
 
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'
 
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'
 
}).addTo(mymap);
 
}).addTo(mymap);
 +
 +
L.circle([48.86714, 2.36465], 500, {
 +
color: 'red',
 +
fillColor: '#f03',
 +
fillOpacity: 0.5
 +
}).addTo(mymap).bindPopup("I am a circle.");
  
 
});
 
});

Version du 2 juillet 2016 à 11:07

/*
mw.loader.load("https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe.min.js");
mw.loader.load("https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe-ui-default.min.js");

document.addEventListener('DOMContentLoaded', function(){

  var myPhotoSwipe = Code.PhotoSwipe.attach( window.document.querySelectorAll('.PhotoSwipe a'), { enableMouseWheel: false , enableKeyboard: false } );

}, false);
*/

mw.loader.load("https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js");
mw.loader.load("https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css", 'text/css' );

$( document ).ready(function() {
    
var mymap = L.map('mapid').setView([46.98025, 2.59277], 5);

L.tileLayer('http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png', {
	maxZoom: 19,
	attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'
}).addTo(mymap);

L.circle([48.86714, 2.36465], 500, {
			color: 'red',
			fillColor: '#f03',
			fillOpacity: 0.5
		}).addTo(mymap).bindPopup("I am a circle.");

});