54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
L.OSM.share = function (options) {
|
|
var control = L.control(options);
|
|
|
|
control.onAdd = function (map) {
|
|
var $container = $('<div>')
|
|
.attr('class', 'control-share');
|
|
|
|
$('<a>')
|
|
.attr('class', 'control-button')
|
|
.attr('href', '#')
|
|
.attr('title', 'Share')
|
|
.html('<span class="icon share"></span>')
|
|
.on('click', toggle)
|
|
.appendTo($container);
|
|
|
|
var $ui = $('<div>')
|
|
.attr('class', 'share-ui')
|
|
.appendTo(options.uiPane);
|
|
|
|
$('<h2>')
|
|
.text(I18n.t('javascripts.share.title'))
|
|
.appendTo($ui);
|
|
|
|
var $input = $('<input>')
|
|
.appendTo($ui);
|
|
|
|
map.on('moveend layeradd layerremove', update);
|
|
|
|
function toggle(e) {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
|
|
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() {
|
|
var center = map.getCenter().wrap();
|
|
var layers = getMapLayers(map);
|
|
$input.val(options.getUrl(map));
|
|
}
|
|
|
|
return $container[0];
|
|
};
|
|
|
|
return control;
|
|
};
|