-//= require templates/map/share
+L.OSM.share = function (options) {
+ var control = L.control(options);
-L.Control.Share = L.Control.extend({
- options: {
- position: 'topright',
- title: 'Share',
- url: function(map) {
- return '';
- }
- },
+ control.onAdd = function (map) {
+ var $container = $('<div>')
+ .attr('class', 'control-share');
- onAdd: function (map) {
- var className = 'leaflet-control-locate',
- classNames = className + ' leaflet-control-zoom leaflet-bar leaflet-control',
- container = L.DomUtil.create('div', classNames);
+ $('<a>')
+ .attr('class', 'control-button')
+ .attr('href', '#')
+ .attr('title', 'Share')
+ .html('<span class="icon share"></span>')
+ .on('click', toggle)
+ .appendTo($container);
- var link = L.DomUtil.create('a', 'leaflet-bar-part leaflet-bar-part-single', container);
- link.href = '#';
- link.title = this.options.title;
+ var $ui = $('<div>')
+ .attr('class', 'share-ui');
- this._uiPane = L.DomUtil.create('div', 'leaflet-map-ui', map._container);
+ $('<header>')
+ .attr('class', 'sidebar_heading')
+ .appendTo($ui)
+ .append(
+ $('<a>')
+ .text(I18n.t('javascripts.close'))
+ .attr('class', 'sidebar_close')
+ .attr('href', '#')
+ .bind('click', toggle))
+ .append(
+ $('<h4>')
+ .text(I18n.t('javascripts.share.title')));
- L.DomEvent
- .on(this._uiPane, 'click', L.DomEvent.stopPropagation)
- .on(this._uiPane, 'click', L.DomEvent.preventDefault)
- .on(this._uiPane, 'dblclick', L.DomEvent.preventDefault);
+ var $linkSection = $('<section>')
+ .attr('class', 'share-link')
+ .appendTo($ui);
- var h2 = L.DomUtil.create('h2', '', this._uiPane);
- h2.innerHTML = I18n.t('javascripts.share.title');
+ $('<h4>')
+ .text(I18n.t('javascripts.share.link'))
+ .appendTo($linkSection);
- this._linkInput = L.DomUtil.create('input', '', this._uiPane);
+ var $shortLink, $longLink;
- L.DomEvent
- .on(link, 'click', L.DomEvent.stopPropagation)
- .on(link, 'click', L.DomEvent.preventDefault)
- .on(link, 'click', this._toggle, this)
- .on(link, 'dblclick', L.DomEvent.stopPropagation);
+ $('<ul>')
+ .appendTo($linkSection)
+ .append($('<li>')
+ .append($longLink = $('<a>')
+ .text(I18n.t('javascripts.share.long_link'))))
+ .append($('<li>')
+ .append($shortLink = $('<a>')
+ .text(I18n.t('javascripts.share.short_link'))));
- map.on('moveend layeradd layerremove', this._update, this);
+ map.on('moveend layeradd layerremove', update);
- return container;
- },
+ options.sidebar.addPane($ui);
- _update: function (e) {
- var center = map.getCenter().wrap();
- var layers = getMapLayers();
- this._linkInput.value = this.options.getUrl(map);
- },
+ function toggle(e) {
+ e.stopPropagation();
+ e.preventDefault();
+ options.sidebar.togglePane($ui);
+ update();
+ }
- _toggle: function() {
- var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
+ function update() {
+ $shortLink.attr('href', options.getShortUrl(map));
+ $longLink.attr('href', options.getUrl(map));
+ }
- if ($(this._uiPane).is(':visible')) {
- $(this._uiPane).hide();
- controlContainer.css({paddingRight: '0'});
- } else {
- $(this._uiPane).show();
- controlContainer.css({paddingRight: '200px'});
- }
+ function select() {
+ $(this).select();
}
-});
-L.control.share = function(options) {
- return new L.Control.Share(options);
+ return $container[0];
+ };
+
+ return control;
};