Make easy eslint fixes to maps.js

This commit is contained in:
Jonny Barnes 2016-06-14 16:28:22 +01:00
parent 10c667e42c
commit 010378fb76

View file

@ -8,8 +8,8 @@ for(var i = 0; i < mapDivs.length; i++) {
var map = L.mapbox.map(mapDiv, 'jonnybarnes.gnoihnim')
.setView([latitude, longitude], 15)
.addLayer(L.mapbox.tileLayer('jonnybarnes.gnoihnim', {
detectRetina: true,
detectRetina: true
}));
var marker = L.marker([latitude, longitude]).addTo(map);
L.marker([latitude, longitude]).addTo(map);
map.scrollWheelZoom.disable();
}