')
- .text(I18n.t('javascripts.share.short_link'))));
+ ['minlon', 'minlat', 'maxlon', 'maxlat'].forEach(function(name) {
+ $('')
+ .attr('id', 'mapnik_' + name)
+ .attr('name', name)
+ .attr('type', 'hidden')
+ .appendTo($form);
+ });
+
+ $('')
+ .attr('name', 'format')
+ .attr('value', 'mapnik')
+ .attr('type', 'hidden')
+ .appendTo($form);
+
+ $('')
+ .attr('class', 'deemphasize')
+ .html(I18n.t('javascripts.share.image_size') + ' x ')
+ .appendTo($form);
+
+ $('')
+ .attr('type', 'submit')
+ .attr('value', I18n.t('javascripts.share.download'))
+ .appendTo($form);
+
+ locationFilter
+ .on('change', update)
+ .addTo(map);
map.on('moveend layeradd layerremove', update);
+ marker.on('dragend', update);
options.sidebar.addPane($ui);
+ $ui
+ .on('hide', hidden);
+
+ function hidden() {
+ map.removeLayer(marker);
+ locationFilter.disable();
+ update();
+ }
+
function toggle(e) {
e.stopPropagation();
e.preventDefault();
+
+ $('#mapnik_scale').val(getScale());
+ marker.setLatLng(map.getCenter());
+
+ update();
options.sidebar.togglePane($ui);
+ }
+
+ function toggleMarker() {
+ if ($(this).is(':checked')) {
+ marker.setLatLng(map.getCenter());
+ map.addLayer(marker);
+ } else {
+ map.removeLayer(marker);
+ }
+ update();
+ }
+
+ function toggleFilter() {
+ if ($(this).is(':checked')) {
+ if (!locationFilter.getBounds().isValid()) {
+ locationFilter.setBounds(map.getBounds().pad(-0.2));
+ }
+
+ locationFilter.enable();
+ } else {
+ locationFilter.disable();
+ }
update();
}
function update() {
- $shortLink.attr('href', options.getShortUrl(map));
- $longLink.attr('href', options.getUrl(map));
+ if (map.hasLayer(marker)) {
+ map.panTo(marker.getLatLng());
+ }
+
+ var bounds = map.getBounds();
+
+ $('#link_marker')
+ .prop('checked', map.hasLayer(marker));
+
+ $('#image_filter')
+ .prop('checked', locationFilter.isEnabled());
+
+ // Link / Embed
+
+ $('#short_input').val(map.getShortUrl(marker));
+ $('#long_input').val(map.getUrl(marker));
+ $('#short_link').attr('href', map.getShortUrl(marker));
+ $('#long_link').attr('href', map.getUrl(marker));
+
+ var params = {
+ bbox: bounds.toBBoxString(),
+ layer: map.getMapBaseLayerId()
+ };
+
+ if (map.hasLayer(marker)) {
+ params.marker = marker.getLatLng().lat + ',' + marker.getLatLng().lng;
+ }
+
+ $('#embed_html').val(
+ '
' +
+ '