Only one pane visible at a time
This commit is contained in:
parent
1f4e41f672
commit
a6ac56c5e5
5 changed files with 78 additions and 52 deletions
|
@ -1,4 +1,5 @@
|
||||||
//= require_self
|
//= require_self
|
||||||
|
//= require leaflet.sidebar
|
||||||
//= require leaflet.customzoom
|
//= require leaflet.customzoom
|
||||||
//= require leaflet.locate
|
//= require leaflet.locate
|
||||||
//= require leaflet.layers
|
//= require leaflet.layers
|
||||||
|
@ -61,27 +62,27 @@ $(document).ready(function () {
|
||||||
L.control.locate({position: 'topright'})
|
L.control.locate({position: 'topright'})
|
||||||
.addTo(map);
|
.addTo(map);
|
||||||
|
|
||||||
var uiPane = $('#map-ui')[0];
|
var sidebar = L.OSM.sidebar('#map-ui');
|
||||||
|
|
||||||
L.OSM.layers({
|
L.OSM.layers({
|
||||||
position: 'topright',
|
position: 'topright',
|
||||||
layers: layers,
|
layers: layers,
|
||||||
uiPane: uiPane
|
sidebar: sidebar
|
||||||
}).addTo(map);
|
}).addTo(map);
|
||||||
|
|
||||||
L.OSM.key({
|
L.OSM.key({
|
||||||
position: 'topright',
|
position: 'topright',
|
||||||
uiPane: uiPane
|
sidebar: sidebar
|
||||||
}).addTo(map);
|
}).addTo(map);
|
||||||
|
|
||||||
L.OSM.note({
|
L.OSM.note({
|
||||||
position: 'topright',
|
position: 'topright',
|
||||||
uiPane: uiPane
|
sidebar: sidebar
|
||||||
}).addTo(map);
|
}).addTo(map);
|
||||||
|
|
||||||
L.OSM.share({
|
L.OSM.share({
|
||||||
getUrl: getShortUrl,
|
getUrl: getShortUrl,
|
||||||
uiPane: uiPane
|
sidebar: sidebar
|
||||||
}).addTo(map);
|
}).addTo(map);
|
||||||
|
|
||||||
L.control.scale()
|
L.control.scale()
|
||||||
|
|
|
@ -8,14 +8,13 @@ L.OSM.key = function (options) {
|
||||||
$('<a>')
|
$('<a>')
|
||||||
.attr('class', 'control-button')
|
.attr('class', 'control-button')
|
||||||
.attr('href', '#')
|
.attr('href', '#')
|
||||||
.attr('title', I18n.t("javascripts.key.tooltip"))
|
.attr('title', I18n.t('javascripts.key.tooltip'))
|
||||||
.html('<span class="icon key"></span>')
|
.html('<span class="icon key"></span>')
|
||||||
.on('click', toggle)
|
.on('click', toggle)
|
||||||
.appendTo($container);
|
.appendTo($container);
|
||||||
|
|
||||||
var $ui = $('<div>')
|
var $ui = $('<div>')
|
||||||
.attr('class', 'layers-ui')
|
.attr('class', 'layers-ui');
|
||||||
.appendTo(options.uiPane);
|
|
||||||
|
|
||||||
$('<h2>')
|
$('<h2>')
|
||||||
.text(I18n.t('javascripts.key.title'))
|
.text(I18n.t('javascripts.key.title'))
|
||||||
|
@ -24,32 +23,34 @@ L.OSM.key = function (options) {
|
||||||
var $section = $('<section>')
|
var $section = $('<section>')
|
||||||
.appendTo($ui);
|
.appendTo($ui);
|
||||||
|
|
||||||
|
options.sidebar.addPane($ui);
|
||||||
|
|
||||||
|
$ui
|
||||||
|
.on('show', shown)
|
||||||
|
.on('hide', hidden);
|
||||||
|
|
||||||
|
function shown() {
|
||||||
|
map.on('zoomend baselayerchange', update);
|
||||||
|
$section.load('/key', update);
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidden() {
|
||||||
|
map.off('zoomend baselayerchange', update);
|
||||||
|
}
|
||||||
|
|
||||||
function toggle(e) {
|
function toggle(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
options.sidebar.togglePane($ui);
|
||||||
var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
|
|
||||||
|
|
||||||
if ($ui.is(':visible')) {
|
|
||||||
$(options.uiPane).hide();
|
|
||||||
controlContainer.css({paddingRight: '0'});
|
|
||||||
map.off("zoomend baselayerchange", update);
|
|
||||||
} else {
|
|
||||||
$(options.uiPane).show();
|
|
||||||
controlContainer.css({paddingRight: '200px'});
|
|
||||||
map.on("zoomend baselayerchange", update);
|
|
||||||
$section.load('/key', update);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function update() {
|
function update() {
|
||||||
var mapLayer = getMapBaseLayerId(map),
|
var layer = getMapBaseLayerId(map),
|
||||||
mapZoom = map.getZoom();
|
zoom = map.getZoom();
|
||||||
|
|
||||||
$(".mapkey-table-entry").each(function () {
|
$('.mapkey-table-entry').each(function () {
|
||||||
var data = $(this).data();
|
var data = $(this).data();
|
||||||
|
if (layer == data.layer && zoom >= data.zoomMin && zoom <= data.zoomMax) {
|
||||||
if (mapLayer == data.layer && mapZoom >= data.zoomMin && mapZoom <= data.zoomMax) {
|
|
||||||
$(this).show();
|
$(this).show();
|
||||||
} else {
|
} else {
|
||||||
$(this).hide();
|
$(this).hide();
|
||||||
|
|
|
@ -16,8 +16,7 @@ L.OSM.layers = function(options) {
|
||||||
.appendTo($container);
|
.appendTo($container);
|
||||||
|
|
||||||
var $ui = $('<div>')
|
var $ui = $('<div>')
|
||||||
.attr('class', 'layers-ui')
|
.attr('class', 'layers-ui');
|
||||||
.appendTo(options.uiPane);
|
|
||||||
|
|
||||||
$('<h2>')
|
$('<h2>')
|
||||||
.text(I18n.t('javascripts.map.layers.header'))
|
.text(I18n.t('javascripts.map.layers.header'))
|
||||||
|
@ -124,25 +123,23 @@ L.OSM.layers = function(options) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
function toggle(e) {
|
options.sidebar.addPane($ui);
|
||||||
e.stopPropagation();
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
|
$ui
|
||||||
|
.on('show', shown);
|
||||||
if ($ui.is(':visible')) {
|
|
||||||
$(control.options.uiPane).hide();
|
|
||||||
controlContainer.css({paddingRight: '0'});
|
|
||||||
} else {
|
|
||||||
$(control.options.uiPane).show();
|
|
||||||
controlContainer.css({paddingRight: '230px'});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
function shown() {
|
||||||
$ui.find('.base-layers .leaflet-container').each(function() {
|
$ui.find('.base-layers .leaflet-container').each(function() {
|
||||||
$(this).data('map').invalidateSize();
|
$(this).data('map').invalidateSize();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function toggle(e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
e.preventDefault();
|
||||||
|
options.sidebar.togglePane($ui);
|
||||||
|
}
|
||||||
|
|
||||||
return $container[0];
|
return $container[0];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,8 +14,7 @@ L.OSM.share = function (options) {
|
||||||
.appendTo($container);
|
.appendTo($container);
|
||||||
|
|
||||||
var $ui = $('<div>')
|
var $ui = $('<div>')
|
||||||
.attr('class', 'share-ui')
|
.attr('class', 'share-ui');
|
||||||
.appendTo(options.uiPane);
|
|
||||||
|
|
||||||
$('<h2>')
|
$('<h2>')
|
||||||
.text(I18n.t('javascripts.share.title'))
|
.text(I18n.t('javascripts.share.title'))
|
||||||
|
@ -26,19 +25,12 @@ L.OSM.share = function (options) {
|
||||||
|
|
||||||
map.on('moveend layeradd layerremove', update);
|
map.on('moveend layeradd layerremove', update);
|
||||||
|
|
||||||
|
options.sidebar.addPane($ui);
|
||||||
|
|
||||||
function toggle(e) {
|
function toggle(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
options.sidebar.togglePane($ui);
|
||||||
var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
|
|
||||||
|
|
||||||
if ($ui.is(':visible')) {
|
|
||||||
$(control.options.uiPane).hide();
|
|
||||||
controlContainer.css({paddingRight: '0'});
|
|
||||||
} else {
|
|
||||||
$(control.options.uiPane).show();
|
|
||||||
controlContainer.css({paddingRight: '200px'});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function update() {
|
function update() {
|
||||||
|
|
35
app/assets/javascripts/leaflet.sidebar.js
Normal file
35
app/assets/javascripts/leaflet.sidebar.js
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
L.OSM.sidebar = function(selector) {
|
||||||
|
var control = {},
|
||||||
|
sidebar = $(selector),
|
||||||
|
current = $();
|
||||||
|
|
||||||
|
control.addPane = function(pane) {
|
||||||
|
pane
|
||||||
|
.hide()
|
||||||
|
.appendTo(sidebar);
|
||||||
|
};
|
||||||
|
|
||||||
|
control.togglePane = function(pane) {
|
||||||
|
var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
|
||||||
|
|
||||||
|
current
|
||||||
|
.hide()
|
||||||
|
.trigger('hide');
|
||||||
|
|
||||||
|
if (current === pane) {
|
||||||
|
$(sidebar).hide();
|
||||||
|
controlContainer.css({paddingRight: '0'});
|
||||||
|
current = $();
|
||||||
|
} else {
|
||||||
|
$(sidebar).show();
|
||||||
|
controlContainer.css({paddingRight: '200px'});
|
||||||
|
current = pane;
|
||||||
|
}
|
||||||
|
|
||||||
|
current
|
||||||
|
.show()
|
||||||
|
.trigger('show');
|
||||||
|
};
|
||||||
|
|
||||||
|
return control;
|
||||||
|
};
|
Loading…
Add table
Add a link
Reference in a new issue