parent
50091ec0fa
commit
c52e093db8
2 changed files with 20 additions and 13 deletions
|
@ -1231,7 +1231,7 @@ L.U.IframeExporter = L.Evented.extend({
|
|||
return this.map
|
||||
},
|
||||
|
||||
build: function () {
|
||||
buildUrl: function () {
|
||||
var datalayers = []
|
||||
if (this.options.viewCurrentFeature && this.map.currentFeature) {
|
||||
this.queryString.feature = this.map.currentFeature.getSlug()
|
||||
|
@ -1246,10 +1246,13 @@ L.U.IframeExporter = L.Evented.extend({
|
|||
} else {
|
||||
delete this.queryString.datalayers
|
||||
}
|
||||
var currentView = this.options.currentView ? window.location.hash : '',
|
||||
iframeUrl =
|
||||
this.baseUrl + '?' + L.Util.buildQueryString(this.queryString) + currentView,
|
||||
code =
|
||||
var currentView = this.options.currentView ? window.location.hash : ''
|
||||
return this.baseUrl + '?' + L.Util.buildQueryString(this.queryString) + currentView
|
||||
},
|
||||
|
||||
build: function () {
|
||||
var iframeUrl = this.buildUrl()
|
||||
var code =
|
||||
'<iframe width="' +
|
||||
this.dimensions.width +
|
||||
'" height="' +
|
||||
|
|
|
@ -732,7 +732,10 @@ L.U.Map.include({
|
|||
var container = L.DomUtil.create('div', 'umap-share'),
|
||||
embedTitle = L.DomUtil.add('h4', '', container, L._('Embed the map')),
|
||||
iframe = L.DomUtil.create('textarea', 'umap-share-iframe', container),
|
||||
urlTitle = L.DomUtil.add('h4', '', container, L._('Direct link')),
|
||||
exportUrl = L.DomUtil.create('input', 'umap-share-url', container),
|
||||
option
|
||||
exportUrl.type = 'text'
|
||||
var UIFields = [
|
||||
['dimensions.width', { handler: 'Input', label: L._('width') }],
|
||||
['dimensions.height', { handler: 'Input', label: L._('height') }],
|
||||
|
@ -766,6 +769,7 @@ L.U.Map.include({
|
|||
var iframeExporter = new L.U.IframeExporter(this)
|
||||
var buildIframeCode = () => {
|
||||
iframe.innerHTML = iframeExporter.build()
|
||||
exportUrl.value = window.location.protocol + iframeExporter.buildUrl()
|
||||
}
|
||||
buildIframeCode()
|
||||
var builder = new L.U.FormBuilder(iframeExporter, UIFields, {
|
||||
|
@ -773,7 +777,7 @@ L.U.Map.include({
|
|||
})
|
||||
var iframeOptions = L.DomUtil.createFieldset(
|
||||
container,
|
||||
L._('Iframe export options')
|
||||
L._('Export options')
|
||||
)
|
||||
iframeOptions.appendChild(builder.build())
|
||||
if (this.options.shortUrl) {
|
||||
|
|
Loading…
Reference in a new issue