Layers work
This commit is contained in:
parent
9d33721630
commit
5e9ab5bc5e
6 changed files with 127 additions and 82 deletions
|
@ -48,6 +48,9 @@ $(document).ready(function () {
|
||||||
|
|
||||||
layers[0].addTo(map);
|
layers[0].addTo(map);
|
||||||
|
|
||||||
|
map.noteLayer = new L.LayerGroup({code: 'N'});
|
||||||
|
map.dataLayer = new L.OSM.DataLayer(null);
|
||||||
|
|
||||||
$("#map").on("resized", function () {
|
$("#map").on("resized", function () {
|
||||||
map.invalidateSize();
|
map.invalidateSize();
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,8 +10,9 @@ function initializeBrowse(map) {
|
||||||
var areasHidden = false;
|
var areasHidden = false;
|
||||||
var locationFilter;
|
var locationFilter;
|
||||||
|
|
||||||
var dataLayer = new L.OSM.DataLayer(null, {
|
var dataLayer = map.dataLayer;
|
||||||
styles: {
|
|
||||||
|
dataLayer.setStyle({
|
||||||
way: {
|
way: {
|
||||||
weight: 3,
|
weight: 3,
|
||||||
color: "#000000",
|
color: "#000000",
|
||||||
|
@ -24,7 +25,6 @@ function initializeBrowse(map) {
|
||||||
node: {
|
node: {
|
||||||
color: "#00ff00"
|
color: "#00ff00"
|
||||||
}
|
}
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
dataLayer.isWayArea = function () {
|
dataLayer.isWayArea = function () {
|
||||||
|
@ -35,10 +35,6 @@ function initializeBrowse(map) {
|
||||||
onSelect(e.layer);
|
onSelect(e.layer);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
|
|
||||||
// map.layersControl.addOverlay(dataLayer, I18n.t("browse.start_rjs.data_layer_name"));
|
|
||||||
}
|
|
||||||
|
|
||||||
map.on('layeradd', function (e) {
|
map.on('layeradd', function (e) {
|
||||||
if (e.layer === dataLayer) {
|
if (e.layer === dataLayer) {
|
||||||
$.ajax({ url: "/browse/start", success: function (sidebarHtml) {
|
$.ajax({ url: "/browse/start", success: function (sidebarHtml) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
function initializeNotes(map) {
|
function initializeNotes(map) {
|
||||||
var params = OSM.mapParams(),
|
var params = OSM.mapParams(),
|
||||||
noteLayer = new L.LayerGroup({code: 'N'}),
|
noteLayer = map.noteLayer,
|
||||||
notes = {},
|
notes = {},
|
||||||
newNote;
|
newNote;
|
||||||
|
|
||||||
|
@ -25,8 +25,6 @@ function initializeNotes(map) {
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
map.noteLayer = noteLayer;
|
|
||||||
|
|
||||||
map.on("layeradd", function (e) {
|
map.on("layeradd", function (e) {
|
||||||
if (e.layer == noteLayer) {
|
if (e.layer == noteLayer) {
|
||||||
loadNotes();
|
loadNotes();
|
||||||
|
|
|
@ -1,72 +1,132 @@
|
||||||
//= require templates/map/layers
|
|
||||||
|
|
||||||
L.OSM.Layers = L.Control.extend({
|
L.OSM.Layers = L.Control.extend({
|
||||||
onAdd: function (map) {
|
onAdd: function (map) {
|
||||||
this._map = map;
|
this._map = map;
|
||||||
this._initLayout(map);
|
this._initLayout();
|
||||||
return this._container;
|
return this.$container[0];
|
||||||
},
|
},
|
||||||
|
|
||||||
_initLayout: function () {
|
_initLayout: function () {
|
||||||
var className = 'leaflet-control-map-ui',
|
var map = this._map,
|
||||||
container = this._container = L.DomUtil.create('div', className);
|
layers = this.options.layers;
|
||||||
|
|
||||||
var link = L.DomUtil.create('a', 'control-button', container);
|
this.$container = $('<div>')
|
||||||
link.innerHTML = "<span class='icon layers'></span>";
|
.attr('class', 'control-layers');
|
||||||
link.href = '#';
|
|
||||||
link.title = 'Layers';
|
|
||||||
|
|
||||||
this._ui = $(L.DomUtil.create('div', 'layers-ui', this.options.uiPane))
|
var link = $('<a>')
|
||||||
.html(JST["templates/map/layers"]());
|
.attr('class', 'control-button')
|
||||||
|
.attr('href', '#')
|
||||||
|
.attr('title', 'Layers')
|
||||||
|
.html('<span class="icon layers"></span>')
|
||||||
|
.appendTo(this.$container);
|
||||||
|
|
||||||
var list = this._ui.find('.base-layers ul');
|
if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
|
||||||
|
this.$ui = $('<div>')
|
||||||
|
.attr('class', 'layers-ui')
|
||||||
|
.appendTo(this.options.uiPane);
|
||||||
|
|
||||||
this.options.layers.forEach(function(layer) {
|
$('<h2>')
|
||||||
var item = $('<li></li>')
|
.text(I18n.t('javascripts.map.layers.header'))
|
||||||
|
.appendTo(this.$ui);
|
||||||
|
|
||||||
|
var overlaySection = $('<section>')
|
||||||
|
.addClass('overlay-layers')
|
||||||
|
.appendTo(this.$ui);
|
||||||
|
|
||||||
|
$('<p>')
|
||||||
|
.text(I18n.t('javascripts.map.layers.overlays'))
|
||||||
|
.appendTo(overlaySection);
|
||||||
|
|
||||||
|
var list = $('<ul>')
|
||||||
|
.appendTo(overlaySection);
|
||||||
|
|
||||||
|
function addOverlay(layer, name) {
|
||||||
|
var item = $('<li>')
|
||||||
.appendTo(list);
|
.appendTo(list);
|
||||||
|
|
||||||
if (this._map.hasLayer(layer)) {
|
var label = $('<label>')
|
||||||
|
.appendTo(item);
|
||||||
|
|
||||||
|
var input = $('<input>')
|
||||||
|
.attr('type', 'checkbox')
|
||||||
|
.prop('checked', map.hasLayer(layer))
|
||||||
|
.appendTo(label);
|
||||||
|
|
||||||
|
label.append(name);
|
||||||
|
|
||||||
|
input.on('change', function() {
|
||||||
|
if (input.is(':checked')) {
|
||||||
|
map.addLayer(layer);
|
||||||
|
} else {
|
||||||
|
map.removeLayer(layer);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
map.on('layeradd layerremove', function() {
|
||||||
|
input.prop('checked', map.hasLayer(layer));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
addOverlay(map.noteLayer, I18n.t('javascripts.map.layers.notes'));
|
||||||
|
addOverlay(map.dataLayer, I18n.t('javascripts.map.layers.data'));
|
||||||
|
}
|
||||||
|
|
||||||
|
var baseSection = $('<section>')
|
||||||
|
.addClass('base-layers')
|
||||||
|
.appendTo(this.$ui);
|
||||||
|
|
||||||
|
$('<p>')
|
||||||
|
.text(I18n.t('javascripts.map.layers.base'))
|
||||||
|
.appendTo(baseSection);
|
||||||
|
|
||||||
|
list = $('<ul>')
|
||||||
|
.appendTo(baseSection);
|
||||||
|
|
||||||
|
layers.forEach(function(layer) {
|
||||||
|
var item = $('<li>')
|
||||||
|
.appendTo(list);
|
||||||
|
|
||||||
|
if (map.hasLayer(layer)) {
|
||||||
item.addClass('active');
|
item.addClass('active');
|
||||||
}
|
}
|
||||||
|
|
||||||
var div = $('<div></div>')
|
var div = $('<div>')
|
||||||
.appendTo(item);
|
.appendTo(item);
|
||||||
|
|
||||||
this._map.whenReady(function() {
|
map.whenReady(function() {
|
||||||
var map = L.map(div[0], {attributionControl: false, zoomControl: false})
|
var miniMap = L.map(div[0], {attributionControl: false, zoomControl: false})
|
||||||
.setView(this._map.getCenter(), Math.max(this._map.getZoom() - 2, 0))
|
.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0))
|
||||||
.addLayer(new layer.constructor);
|
.addLayer(new layer.constructor);
|
||||||
|
|
||||||
map.dragging.disable();
|
miniMap.dragging.disable();
|
||||||
map.touchZoom.disable();
|
miniMap.touchZoom.disable();
|
||||||
map.doubleClickZoom.disable();
|
miniMap.doubleClickZoom.disable();
|
||||||
map.scrollWheelZoom.disable();
|
miniMap.scrollWheelZoom.disable();
|
||||||
}, this);
|
|
||||||
|
|
||||||
var label = $('<label></label>')
|
map.on('moveend', function() {
|
||||||
|
miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0));
|
||||||
|
});
|
||||||
|
|
||||||
|
div.data('map', miniMap);
|
||||||
|
});
|
||||||
|
|
||||||
|
var label = $('<label>')
|
||||||
.text(layer.options.name)
|
.text(layer.options.name)
|
||||||
.appendTo(item);
|
.appendTo(item);
|
||||||
|
|
||||||
item.on('click', function() {
|
item.on('click', function() {
|
||||||
this.options.layers.forEach(function(other) {
|
layers.forEach(function(other) {
|
||||||
if (other === layer) {
|
if (other === layer) {
|
||||||
this._map.addLayer(other);
|
map.addLayer(other);
|
||||||
} else {
|
} else {
|
||||||
this._map.removeLayer(other);
|
map.removeLayer(other);
|
||||||
}
|
|
||||||
}, this);
|
|
||||||
}.bind(this));
|
|
||||||
|
|
||||||
this._map.on('layeradd', function(e) {
|
|
||||||
if (e.layer === layer) {
|
|
||||||
item.addClass('active');
|
|
||||||
}
|
|
||||||
}).on('layerremove', function(e) {
|
|
||||||
if (e.layer === layer) {
|
|
||||||
item.removeClass('active');
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, this);
|
});
|
||||||
|
|
||||||
|
map.on('layeradd layerremove', function() {
|
||||||
|
item.toggleClass('active', map.hasLayer(layer));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
$(link).on('click', $.proxy(this.toggleLayers, this));
|
$(link).on('click', $.proxy(this.toggleLayers, this));
|
||||||
},
|
},
|
||||||
|
@ -77,13 +137,17 @@ L.OSM.Layers = L.Control.extend({
|
||||||
|
|
||||||
var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
|
var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
|
||||||
|
|
||||||
if ($(this._ui).is(':visible')) {
|
if (this.$ui.is(':visible')) {
|
||||||
$(this.options.uiPane).hide();
|
$(this.options.uiPane).hide();
|
||||||
controlContainer.css({paddingRight: '0'});
|
controlContainer.css({paddingRight: '0'});
|
||||||
} else {
|
} else {
|
||||||
$(this.options.uiPane).show();
|
$(this.options.uiPane).show();
|
||||||
controlContainer.css({paddingRight: '230px'});
|
controlContainer.css({paddingRight: '230px'});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.$ui.find('.base-layers .leaflet-container').each(function() {
|
||||||
|
$(this).data('map').invalidateSize();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
<h2><%= I18n.t('javascripts.map.layers.header') %></h2>
|
|
||||||
<section class='overlay-layers'>
|
|
||||||
<p><%= I18n.t('javascripts.map.layers.overlays') %></p>
|
|
||||||
<ul>
|
|
||||||
<li><label><input type='checkbox' id='notes-layer-checkbox'><%= I18n.t('javascripts.map.layers.notes') %></label></li>
|
|
||||||
<li><label><input type='checkbox' id='data-layer-checkbox'><%= I18n.t('javascripts.map.layers.data') %></label></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
<section class='base-layers'>
|
|
||||||
<p><%= I18n.t('javascripts.map.layers.base') %></p>
|
|
||||||
<ul>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
|
@ -578,14 +578,16 @@ a.donate {
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
|
border-radius: 4px;
|
||||||
|
overflow: hidden;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
border-radius: 4px;
|
|
||||||
display: block;
|
display: block;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background-color: #868e85;
|
background-color: #868e85;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
li.active label {
|
li.active label {
|
||||||
|
@ -593,12 +595,7 @@ a.donate {
|
||||||
}
|
}
|
||||||
|
|
||||||
.base-layers {
|
.base-layers {
|
||||||
label {
|
|
||||||
border-radius: 0px 0px 4px 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-container {
|
.leaflet-container {
|
||||||
border-radius: 4px 4px 0px 0px;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue