parent
038a1a3c4d
commit
aed9e898e9
2 changed files with 30 additions and 4 deletions
|
@ -669,6 +669,11 @@ input[type=hidden].blur + .button {
|
|||
/*box-shadow: inset 0 0 0 1px #215d9c;*/
|
||||
color: #efefef;
|
||||
}
|
||||
input:invalid {
|
||||
border-color: red;
|
||||
background-color: darkred;
|
||||
}
|
||||
|
||||
|
||||
/* *********** */
|
||||
/* Alerts */
|
||||
|
|
|
@ -14,6 +14,7 @@ L.Map.mergeOptions({
|
|||
default_popupContentTemplate: '# {name}\n{description}',
|
||||
default_interactive: true,
|
||||
default_labelDirection: 'auto',
|
||||
maxZoomLimit: 20,
|
||||
attributionControl: false,
|
||||
allowEdit: true,
|
||||
embedControl: true,
|
||||
|
@ -1524,11 +1525,21 @@ L.U.Map.include({
|
|||
],
|
||||
[
|
||||
'options.tilelayer.maxZoom',
|
||||
{ handler: 'BlurIntInput', placeholder: L._('max zoom') },
|
||||
{
|
||||
handler: 'BlurIntInput',
|
||||
placeholder: L._('max zoom'),
|
||||
min: 0,
|
||||
max: this.options.maxZoomLimit,
|
||||
},
|
||||
],
|
||||
[
|
||||
'options.tilelayer.minZoom',
|
||||
{ handler: 'BlurIntInput', placeholder: L._('min zoom') },
|
||||
{
|
||||
handler: 'BlurIntInput',
|
||||
placeholder: L._('min zoom'),
|
||||
min: 0,
|
||||
max: this.options.maxZoomLimit,
|
||||
},
|
||||
],
|
||||
[
|
||||
'options.tilelayer.attribution',
|
||||
|
@ -1563,11 +1574,21 @@ L.U.Map.include({
|
|||
],
|
||||
[
|
||||
'options.overlay.maxZoom',
|
||||
{ handler: 'BlurIntInput', placeholder: L._('max zoom') },
|
||||
{
|
||||
handler: 'BlurIntInput',
|
||||
placeholder: L._('max zoom'),
|
||||
min: 0,
|
||||
max: this.options.maxZoomLimit,
|
||||
},
|
||||
],
|
||||
[
|
||||
'options.overlay.minZoom',
|
||||
{ handler: 'BlurIntInput', placeholder: L._('min zoom') },
|
||||
{
|
||||
handler: 'BlurIntInput',
|
||||
placeholder: L._('min zoom'),
|
||||
min: 0,
|
||||
max: this.options.maxZoomLimit,
|
||||
},
|
||||
],
|
||||
[
|
||||
'options.overlay.attribution',
|
||||
|
|
Loading…
Reference in a new issue