Refactor to map.updateLayers
This commit is contained in:
parent
14136b27c2
commit
aa45efc1b7
2 changed files with 65 additions and 61 deletions
|
@ -33,62 +33,10 @@ $(document).ready(function () {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var copyright = I18n.t('javascripts.map.copyright', {copyright_url: '/copyright'});
|
map.updateLayers(params);
|
||||||
var donate = I18n.t('javascripts.map.donate_link_text', {donate_url: 'http://donate.openstreetmap.org'});
|
|
||||||
|
|
||||||
var layers = [
|
|
||||||
new L.OSM.Mapnik({
|
|
||||||
attribution: copyright + " ♥ " + donate,
|
|
||||||
code: "M",
|
|
||||||
keyid: "mapnik",
|
|
||||||
name: I18n.t("javascripts.map.base.standard")
|
|
||||||
}),
|
|
||||||
new L.OSM.CycleMap({
|
|
||||||
attribution: copyright + ". Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
|
|
||||||
code: "C",
|
|
||||||
keyid: "cyclemap",
|
|
||||||
name: I18n.t("javascripts.map.base.cycle_map")
|
|
||||||
}),
|
|
||||||
new L.OSM.TransportMap({
|
|
||||||
attribution: copyright + ". Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
|
|
||||||
code: "T",
|
|
||||||
keyid: "transportmap",
|
|
||||||
name: I18n.t("javascripts.map.base.transport_map")
|
|
||||||
}),
|
|
||||||
new L.OSM.MapQuestOpen({
|
|
||||||
attribution: copyright + ". Tiles courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>",
|
|
||||||
code: "Q",
|
|
||||||
keyid: "mapquest",
|
|
||||||
name: I18n.t("javascripts.map.base.mapquest")
|
|
||||||
}),
|
|
||||||
new L.OSM.HOT({
|
|
||||||
attribution: copyright + ". Tiles courtesy of <a href='http://hot.openstreetmap.org/' target='_blank'>Humanitarian OpenStreetMap Team</a>",
|
|
||||||
code: "H",
|
|
||||||
keyid: "hot",
|
|
||||||
name: I18n.t("javascripts.map.base.hot")
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
function updateLayers(params) {
|
|
||||||
var layerParam = params.layers || "M";
|
|
||||||
var layersAdded = "";
|
|
||||||
|
|
||||||
for (var i = layers.length - 1; i >= 0; i--) {
|
|
||||||
if (layerParam.indexOf(layers[i].options.code) >= 0) {
|
|
||||||
map.addLayer(layers[i]);
|
|
||||||
layersAdded = layersAdded + layers[i].options.code;
|
|
||||||
} else if (i == 0 && layersAdded == "") {
|
|
||||||
map.addLayer(layers[i]);
|
|
||||||
} else {
|
|
||||||
map.removeLayer(layers[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
updateLayers(params);
|
|
||||||
|
|
||||||
$(window).on("hashchange", function () {
|
$(window).on("hashchange", function () {
|
||||||
updateLayers(OSM.mapParams());
|
map.updateLayers(OSM.mapParams());
|
||||||
});
|
});
|
||||||
|
|
||||||
map.on("baselayerchange", function (e) {
|
map.on("baselayerchange", function (e) {
|
||||||
|
@ -97,12 +45,6 @@ $(document).ready(function () {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
map.noteLayer = new L.LayerGroup();
|
|
||||||
map.noteLayer.options = {code: 'N'};
|
|
||||||
|
|
||||||
map.dataLayer = new L.OSM.DataLayer(null);
|
|
||||||
map.dataLayer.options.code = 'D';
|
|
||||||
|
|
||||||
var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
|
var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
|
||||||
|
|
||||||
L.OSM.zoom({position: position})
|
L.OSM.zoom({position: position})
|
||||||
|
@ -121,7 +63,7 @@ $(document).ready(function () {
|
||||||
|
|
||||||
L.OSM.layers({
|
L.OSM.layers({
|
||||||
position: position,
|
position: position,
|
||||||
layers: layers,
|
layers: map.baseLayers,
|
||||||
sidebar: sidebar
|
sidebar: sidebar
|
||||||
}).addTo(map);
|
}).addTo(map);
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,68 @@ L.extend(L.LatLngBounds.prototype, {
|
||||||
});
|
});
|
||||||
|
|
||||||
L.OSM.Map = L.Map.extend({
|
L.OSM.Map = L.Map.extend({
|
||||||
|
initialize: function(id, options) {
|
||||||
|
L.Map.prototype.initialize.call(this, id, options);
|
||||||
|
|
||||||
|
var copyright = I18n.t('javascripts.map.copyright', {copyright_url: '/copyright'});
|
||||||
|
var donate = I18n.t('javascripts.map.donate_link_text', {donate_url: 'http://donate.openstreetmap.org'});
|
||||||
|
|
||||||
|
this.baseLayers = [
|
||||||
|
new L.OSM.Mapnik({
|
||||||
|
attribution: copyright + " ♥ " + donate,
|
||||||
|
code: "M",
|
||||||
|
keyid: "mapnik",
|
||||||
|
name: I18n.t("javascripts.map.base.standard")
|
||||||
|
}),
|
||||||
|
new L.OSM.CycleMap({
|
||||||
|
attribution: copyright + ". Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
|
||||||
|
code: "C",
|
||||||
|
keyid: "cyclemap",
|
||||||
|
name: I18n.t("javascripts.map.base.cycle_map")
|
||||||
|
}),
|
||||||
|
new L.OSM.TransportMap({
|
||||||
|
attribution: copyright + ". Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
|
||||||
|
code: "T",
|
||||||
|
keyid: "transportmap",
|
||||||
|
name: I18n.t("javascripts.map.base.transport_map")
|
||||||
|
}),
|
||||||
|
new L.OSM.MapQuestOpen({
|
||||||
|
attribution: copyright + ". Tiles courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>",
|
||||||
|
code: "Q",
|
||||||
|
keyid: "mapquest",
|
||||||
|
name: I18n.t("javascripts.map.base.mapquest")
|
||||||
|
}),
|
||||||
|
new L.OSM.HOT({
|
||||||
|
attribution: copyright + ". Tiles courtesy of <a href='http://hot.openstreetmap.org/' target='_blank'>Humanitarian OpenStreetMap Team</a>",
|
||||||
|
code: "H",
|
||||||
|
keyid: "hot",
|
||||||
|
name: I18n.t("javascripts.map.base.hot")
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
this.noteLayer = new L.LayerGroup();
|
||||||
|
this.noteLayer.options = {code: 'N'};
|
||||||
|
|
||||||
|
this.dataLayer = new L.OSM.DataLayer(null);
|
||||||
|
this.dataLayer.options.code = 'D';
|
||||||
|
},
|
||||||
|
|
||||||
|
updateLayers: function(params) {
|
||||||
|
var layerParam = params.layers || "M";
|
||||||
|
var layersAdded = "";
|
||||||
|
|
||||||
|
for (var i = this.baseLayers.length - 1; i >= 0; i--) {
|
||||||
|
if (layerParam.indexOf(this.baseLayers[i].options.code) >= 0) {
|
||||||
|
this.addLayer(this.baseLayers[i]);
|
||||||
|
layersAdded = layersAdded + this.baseLayers[i].options.code;
|
||||||
|
} else if (i == 0 && layersAdded == "") {
|
||||||
|
this.addLayer(this.baseLayers[i]);
|
||||||
|
} else {
|
||||||
|
this.removeLayer(this.baseLayers[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
getLayersCode: function () {
|
getLayersCode: function () {
|
||||||
var layerConfig = '';
|
var layerConfig = '';
|
||||||
for (var i in this._layers) { // TODO: map.eachLayer
|
for (var i in this._layers) { // TODO: map.eachLayer
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue