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
(Annulation des modifications 43813 de Jmv (discussion))
Ligne 16 : Ligne 16 :
 
      
 
      
 
var mymap = L.map('mapid').setView([51.505, -0.09], 13);
 
var mymap = L.map('mapid').setView([51.505, -0.09], 13);
 +
 +
console.log(mymap);
  
 
L.tileLayer('http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png', {
 
L.tileLayer('http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png', {

Version du 2 juillet 2016 à 10:57

/*
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.addEventListener('DOMContentLoaded', function(){
    
var mymap = L.map('mapid').setView([51.505, -0.09], 13);

console.log(mymap);

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

}, false);