-//= require templates/map/share
-
-L.Control.Share = L.Control.extend({
- options: {
- position: 'topright',
- title: 'Share'
- },
-
- onAdd: function (map) {
- var className = 'leaflet-control-locate',
- classNames = className + ' leaflet-control-zoom leaflet-bar leaflet-control',
- container = L.DomUtil.create('div', classNames);
-
- var self = this;
- this._layer = new L.LayerGroup();
- this._layer.addTo(map);
- this._event = undefined;
-
- var link = L.DomUtil.create('a', 'leaflet-bar-part leaflet-bar-part-single', container);
- link.href = '#';
- link.title = this.options.title;
-
- this._uiPane = L.DomUtil.create('div', 'leaflet-map-ui', map._container);
-
- 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);
-
- return container;
- },
-
- toggle: function() {
- var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
-
- if ($(this._uiPane).is(':visible')) {
- $(this._uiPane).hide();
- controlContainer.css({paddingRight: '0'});
- } else {
- $(this._uiPane)
- .show()
- .html(JST["templates/map/share"]());
- controlContainer.css({paddingRight: '200px'});
- }
+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');
+
+ $('<section>')
+ .appendTo($ui)
+ .append(
+ $('<a>')
+ .html('»')
+ .attr('class', 'close-button')
+ .attr('href', '#')
+ .bind('click', toggle))
+ .append(
+ $('<h2>')
+ .text(I18n.t('javascripts.share.title')));
+
+ var $share_link = $('<section></section>')
+ .appendTo($ui);
+
+ var $title = $('<h3></h3>')
+ .text(I18n.t('javascripts.share.link'))
+ .appendTo($share_link);
+
+ var $input = $('<input />')
+ .attr('type', 'text')
+ .appendTo($share_link);
+
+ var $list = $('<ul>')
+ .appendTo($share_link);
+
+ var $short_option = $('<li>')
+ .appendTo($list);
+
+ var $short_url_label = $('<label></label>')
+ .attr('for', 'short_url')
+ .appendTo($short_option);
+
+ var $short_url_input = $('<input />')
+ .attr('id', 'short_url')
+ .attr('type', 'checkbox')
+ .prop('checked', 'checked')
+ .appendTo($short_url_label)
+ .bind('change', function() {
+ options.short = $(this).prop('checked');
+ update();
+ });
+
+ $short_url_label.append(I18n.t('javascripts.share.short_url'));
+
+ map.on('moveend layeradd layerremove', update);
+
+ options.sidebar.addPane($ui);
+
+ function toggle(e) {
+ e.stopPropagation();
+ e.preventDefault();
+ options.sidebar.togglePane($ui);
+ $input.select();
+ }
+
+ function update() {
+ $input.val(
+ options.short ? options.getShortUrl(map) : options.getUrl(map)
+ );
}
-});
-L.control.share = function(options) {
- return new L.Control.Share(options);
+ return $container[0];
+ };
+
+ return control;
};