Skip to content

Commit 4079a8e

Browse files
authored
sync attribute changes of map-extent pr to web-map-doc, including adding full element ending i.e. </map-extent> and also adding missing checked/hidden attributes where applicable (#135)
1 parent 05f6413 commit 4079a8e

27 files changed

+84
-84
lines changed

docs/api/map-link-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The map:
3636
<mapml-viewer projection="OSMTILE" zoom="0" lat="45" lon="-75" controls>
3737
<layer- label="Custom Tiles" checked>
3838
<map-meta name="zoom" content="min=0,max=23" ></map-meta>
39-
<map-extent units="OSMTILE">
39+
<map-extent units="OSMTILE" checked hidden>
4040
<map-input name="zoomLevel" type="zoom" min="0" max="23" value="1" ></map-input>
4141
<map-input name="row" type="location" axis="row" units="tilematrix" min="0" max="2" ></map-input>
4242
<map-input name="col" type="location" axis="column" units="tilematrix" min="0" max="2" ></map-input>

docs/api/mapml-viewer-api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ let output = map.geojson2mapml(json);
636636
<mapml-viewer projection="ATLAS_POLAR_MAP" zoom="2" lat="83.48919" lon="-87.7687" controls>
637637
<layer- label="Atlas of Canada Polar Wall Map" checked>
638638
<map-link rel="license" title="Canadian Federal Geospatial Platform" href="https://geoappext.nrcan.gc.ca/arcgis/rest/services/FGP/NCR_RCN/MapServer/"></map-link>
639-
<map-extent units="ATLAS_POLAR_MAP">
639+
<map-extent units="ATLAS_POLAR_MAP" checked hidden>
640640
<map-input type="zoom" name="z" min="0" max="6" value="6" ></map-input>
641641
<map-input type="location" name="x" axis="column" units="tilematrix" min="116" max="186"></map-input>
642642
<map-input type="location" name="y" axis="row" units="tilematrix" min="125" max="184"></map-input>

docs/elements/extent.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ URL template.
2121
```html
2222
<mapml-viewer projection="OSMTILE" lat="10" lon="0" zoom="1">
2323
<layer- label="OpenStreetMap" checked>
24-
<map-extent units="OSMTILE">
24+
<map-extent units="OSMTILE" checked hidden>
2525
<map-input name="z" type="zoom" value="18" min="0" max="18"></map-input>
2626
<map-input name="x" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
2727
<map-input name="y" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
@@ -87,19 +87,19 @@ The following example shows multiple `<map-extent>` elements in a layer. The dif
8787
<!-- Change Basemap using the three dots menu of the basemap layer -->
8888
<layer- label="Basemap" checked="">
8989
<!-- This extent will be hidden in the layer control since no label is provided -->
90-
<map-extent units="OSMTILE">
90+
<map-extent units="OSMTILE" checked>
9191
<map-input name="TileMatrix" type="zoom" value="18" min="0" max="18"></map-input>
9292
<map-input name="TileCol" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
9393
<map-input name="TileRow" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
9494
<map-link rel="tile" tref="https://server.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/WMTS/tile/1.0.0/World_Imagery/default/default028mm/{TileMatrix}/{TileRow}/{TileCol}.jpg"></map-link>
9595
</map-extent>
96-
<map-extent label="Nat Geo" units="OSMTILE">
96+
<map-extent label="Nat Geo" units="OSMTILE" checked>
9797
<map-input name="TileMatrix" type="zoom" value="18" min="0" max="18"></map-input>
9898
<map-input name="TileCol" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
9999
<map-input name="TileRow" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
100100
<map-link rel="tile" tref="https://server.arcgisonline.com/arcgis/rest/services/NatGeo_World_Map/MapServer/WMTS/tile/1.0.0/NatGeo_World_Map/default/default028mm/{TileMatrix}/{TileRow}/{TileCol}.jpg"></map-link>
101101
</map-extent>
102-
<map-extent label="Imagery" units="OSMTILE">
102+
<map-extent label="Imagery" units="OSMTILE" checked>
103103
<map-input name="TileMatrix" type="zoom" value="18" min="0" max="18"></map-input>
104104
<map-input name="TileCol" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
105105
<map-input name="TileRow" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
@@ -117,7 +117,7 @@ The following example shows a Web Map Service Request using `<map-link>` to requ
117117
```html
118118
<mapml-viewer projection="OSMTILE" zoom="4" lat="53.331" lon="-91.667" controls>
119119
<layer- label="Toporama" checked="">
120-
<map-extent xmlns="http://www.w3.org/1999/xhtml" units="OSMTILE">
120+
<map-extent xmlns="http://www.w3.org/1999/xhtml" units="OSMTILE" checked>
121121
<!-- URL parameters for WMS Request -->
122122
<map-input name="z" type="zoom" value="18" min="4" max="18"></map-input>
123123
<map-input name="w" type="width"></map-input>

docs/elements/input.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ on the nature of the content.
167167
```html
168168
<mapml-viewer projection="OSMTILE" zoom="0" lat="45.409071" lon="-75.703411" controls>
169169
<layer- label="OpenStreetMap" checked>
170-
<map-extent units="OSMTILE" >
170+
<map-extent units="OSMTILE" checked>
171171
<map-input name="z" type="zoom" value="18" min="0" max="18" step="3"></map-input>
172172
<map-input name="x" type="location" units="tilematrix" axis="column" min="0" max="262144" ></map-input>
173173
<map-input name="y" type="location" units="tilematrix" axis="row" min="0" max="262144" ></map-input>
174-
<map-link rel="tile" tref="https://tile.openstreetmap.org/{z}/{x}/{y}.png" />
174+
<map-link rel="tile" tref="https://tile.openstreetmap.org/{z}/{x}/{y}.png" ></map-link>
175175
</map-extent>
176176
</layer->
177177
</mapml-viewer>
@@ -187,7 +187,7 @@ labels, which may be duplicated on adjacent tiles many times over.
187187
```html
188188
<mapml-viewer projection="CBMTILE" lat="60" lon="-95" zoom="2" controls>
189189
<layer- label="Tiled WMS GetMap" checked>
190-
<map-extent units="CBMTILE">
190+
<map-extent units="CBMTILE" checked>
191191
<!-- the units and axis attributes here appear at odds -->
192192
<!-- however for rel="tile" and units="tilematrix" together tell the map that
193193
the event being serialized is relative to a tile in a tilematrix coordinate
@@ -200,7 +200,7 @@ labels, which may be duplicated on adjacent tiles many times over.
200200
<map-link rel="tile" tref="https://datacube.services.geo.ca/ows/msi?SERVICE=WMS&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=TRUE&STYLES=msi-color&VERSION=1.3.0&LAYERS=msi&WIDTH=256&HEIGHT=256&CRS=EPSG:3978&BBOX={txmin},{tymin},{txmax},{tymax}" ></map-link>
201201
<!-- a zoom input is necessary, but that's a bug:
202202
https://github.com/Maps4HTML/Web-Map-Custom-Element/issues/669 -->
203-
<map-input name="z" type="zoom" value="25" min="0" max="25"/>
203+
<map-input name="z" type="zoom" value="25" min="0" max="25"></map-input>
204204
</map-extent>
205205
</layer->
206206
</mapml-viewer>

docs/elements/link.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Projection values [defined by the polyfill](../mapml-viewer#projection) include:
129129
<mapml-viewer projection="OSMTILE" zoom="1" lat="0" lon="0" controls>
130130
<layer- label="OpenStreetMap" src="https://geogratis.gc.ca/mapml/en/osmtile/osm/" checked hidden ></layer->
131131
<layer- label="TMS COG Source" checked>
132-
<map-extent units="OSMTILE">
132+
<map-extent units="OSMTILE" checked>
133133
<map-input name="zoom" type="zoom" min="1" max="12"></map-input>
134134
<map-input name="row" type="location" axis="row" units="tilematrix" ></map-input>
135135
<map-input name="col" type="location" axis="column" units="tilematrix"></map-input>

docs/elements/mapml.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ must contain one `<map-head>` element, followed by one `<map-body>` element.
2424
<map-title>OpenStreetMap</map-title>
2525
<meta http-equiv="Content-Type" content="text/mapml;projection=OSMTILE"/>
2626
<meta charset="utf-8"/>
27-
<map-link rel="license" href="https://www.openstreetmap.org/copyright" title="© OpenStreetMap contributors CC BY-SA"/>
27+
<map-link rel="license" href="https://www.openstreetmap.org/copyright" title="© OpenStreetMap contributors CC BY-SA"></map-link>
2828
</map-head>
2929
<map-body>
30-
<map-extent units="OSMTILE" >
30+
<map-extent units="OSMTILE" checked="checked" hidden="hidden">
3131
<map-input name="z" type="zoom" value="18" min="0" max="18"></map-input>
3232
<map-input name="x" type="location" units="tilematrix" axis="column" min="0" max="262144" ></map-input>
3333
<map-input name="y" type="location" units="tilematrix" axis="row" min="0" max="262144" ></map-input>
34-
<map-link rel="tile" tref="https://tile.openstreetmap.org/{z}/{x}/{y}.png" />
34+
<map-link rel="tile" tref="https://tile.openstreetmap.org/{z}/{x}/{y}.png" ></map-link>
3535
</map-extent>
3636
</map-body>
3737
</mapml->

docs/elements/select.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ This element contains the options for the `<map-select>` element. A `<map-select
4343
### Change map source
4444
```html
4545
<mapml-viewer projection="OSMTILE" zoom="2" lat="65" lon="-90" controls="">
46-
<layer- label="Basemap" checked="">
47-
<map-extent units="OSMTILE" >
46+
<layer- label="Basemap" checked>
47+
<map-extent units="OSMTILE" checked>
4848
<map-input name="z" type="zoom" value="18" min="0" max="18"></map-input>
4949
<map-input name="x" type="location" units="tilematrix" axis="column" min="0" max="262144" ></map-input>
5050
<map-input name="y" type="location" units="tilematrix" axis="row" min="0" max="262144" ></map-input>
51-
<map-link rel="license" href="https://www.openstreetmap.org/copyright" title="OpenStreetMap"/>
52-
<map-link rel="license" href="https://www.openstreetmap.bzh/" title="Breton OpenStreetMap Team"/>
51+
<map-link rel="license" href="https://www.openstreetmap.org/copyright" title="OpenStreetMap"></map-link>
52+
<map-link rel="license" href="https://www.openstreetmap.bzh/" title="Breton OpenStreetMap Team"></map-link>
5353

5454
<map-select id="urlOptions" name="source">
5555
<map-option value="tile.openstreetmap.bzh/br">OpenStreetMap_BZH</map-option>
5656
<map-option value="tile.openstreetmap.org">OpenStreetMap_Mapnik</map-option>
5757
</map-select>
5858

59-
<map-link rel="tile" tref="https://{source}/{z}/{x}/{y}.png" />
59+
<map-link rel="tile" tref="https://{source}/{z}/{x}/{y}.png" ></map-link>
6060
</map-extent>
6161
</layer->
6262
</mapml-viewer>

docs/layers/templated-features.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In this section, we will learn how to create a templated feature layer. A templa
1111
```html
1212
<layer- label="Alabama" checked>
1313
<map-meta name="zoom" content="min=2,max=5"></map-meta>
14-
<map-extent units="CBMTILE">
14+
<map-extent units="CBMTILE" checked hidden>
1515
<map-input name="z" type="zoom" min="2" max="18" value="0"></map-input>
1616
<map-input name="xmin" type="location" units="gcrs" axis="longitude" position="top-left" min="-76" max="-74"></map-input>
1717
<map-input name="ymin" type="location" units="gcrs" axis="latitude" position="bottom-right" min="45" max="46"></map-input>
@@ -93,7 +93,7 @@ Sets the zoom range of the layer. The layer will make requests from zoom levels
9393
<mapml-viewer projection="CBMTILE" zoom="3" lat="45.5052040" lon="-75.2202344" controls>
9494
<layer- label="Alabama" checked>
9595
<map-meta name="zoom" content="min=2,max=5"></map-meta>
96-
<map-extent units="CBMTILE">
96+
<map-extent units="CBMTILE" checked hidden>
9797
<map-input name="z" type="zoom" min="2" max="18" value="0"></map-input>
9898
<map-input name="xmin" type="location" units="gcrs" axis="longitude" position="top-left" min="-76" max="-74"></map-input>
9999
<map-input name="ymin" type="location" units="gcrs" axis="latitude" position="bottom-right" min="45" max="46"></map-input>

docs/layers/templated-images.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In this section, we will learn how to create a templated image layer. A template
1111
```html
1212
<layer- label="Toporama" checked>
1313
<map-meta name="zoom" content="min=4,max=5"></map-meta>
14-
<map-extent units="CBMTILE">
14+
<map-extent units="CBMTILE" checked hidden>
1515
<map-input name="z" type="zoom" value="19" min="4" max="4"></map-input>
1616
<map-input name="w" type="width"></map-input>
1717
<map-input name="h" type="height"></map-input>
@@ -95,7 +95,7 @@ Sets the zoom range of the layer, in the following example the user can zoom fro
9595
<mapml-viewer projection="CBMTILE" zoom="4" lat="53.331" lon="-91.667" controls>
9696
<layer- label="Toporama" checked>
9797
<map-meta name="zoom" content="min=4,max=5"></map-meta>
98-
<map-extent units="CBMTILE">
98+
<map-extent units="CBMTILE" checked hidden>
9999
<map-input name="z" type="zoom" value="19" min="4" max="4"></map-input>
100100
<map-input name="w" type="width"></map-input>
101101
<map-input name="h" type="height"></map-input>

docs/layers/templated-tiles.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In this section, we will learn how to create a templated tile layer. A templated
1010

1111
```html
1212
<layer- label="Templated Tile Layer" checked>
13-
<map-extent units="my-projection">
13+
<map-extent units="my-projection" checked>
1414
<map-input name="zoomLevel" type="zoom" min="1" max="1" value="0"></map-input>
1515
<map-input name="row" type="location" axis="row" units="tilematrix" min="0" max="2"></map-input>
1616
<map-input name="col" type="location" axis="column" units="tilematrix" min="0" max="2"></map-input>
@@ -87,7 +87,7 @@ Sets the native minimum and maximum [native zoom](http://example.org/). It also
8787
<mapml-viewer projection="WGS84" zoom="1" lat="59.87304909" lon="-53.22587225" width="900" height="400" controls>
8888
<layer- label="Inline Templated Tile" checked>
8989
<map-meta name="zoom" content="min=1,max=2"></map-meta>
90-
<map-extent units="WGS84">
90+
<map-extent units="WGS84" checked hidden>
9191
<map-input name="zoomLevel" type="zoom" min="1" max="1" value="0"></map-input>
9292
<map-input name="row" type="location" axis="row" units="tilematrix" min="0" max="2"></map-input>
9393
<map-input name="col" type="location" axis="column" units="tilematrix" min="0" max="2"></map-input>

i18n/fr/docusaurus-plugin-content-docs/current/api/map-link-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ La carte :
3535
<mapml-viewer projection="OSMTILE" zoom="0" lat="45" lon="-75" controls>
3636
<layer- label="pavés personnalisés" checked>
3737
<map-meta name="zoom" content="min=0,max=23" ></map-meta>
38-
<map-extent units="OSMTILE">
38+
<map-extent units="OSMTILE" checked hidden>
3939
<map-input name="zoomLevel" type="zoom" min="0" max="23" value="1" ></map-input>
4040
<map-input name="row" type="location" axis="row" units="tilematrix" min="0" max="2" ></map-input>
4141
<map-input name="col" type="location" axis="column" units="tilematrix" min="0" max="2" ></map-input>

i18n/fr/docusaurus-plugin-content-docs/current/api/mapml-viewer-api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ let output = map.geojson2mapml(json);
638638
<mapml-viewer projection="ATLAS_POLAR_MAP" zoom="2" lat="83.48919" lon="-87.7687" controls>
639639
<layer- label="Carte polaire murale de l’Atlas du Canada" checked>
640640
<map-link rel="license" title="Plateforme géospatiale fédérale canadienne" href="https://geoappext.nrcan.gc.ca/arcgis/rest/services/FGP/NCR_RCN/MapServer/"></map-link>
641-
<map-extent units="ATLAS_POLAR_MAP">
641+
<map-extent units="ATLAS_POLAR_MAP" checked hidden>
642642
<map-input type="zoom" name="z" min="0" max="6" value="6" ></map-input>
643643
<map-input type="location" name="x" axis="column" units="tilematrix" min="116" max="186"></map-input>
644644
<map-input type="location" name="y" axis="row" units="tilematrix" min="125" max="184"></map-input>

i18n/fr/docusaurus-plugin-content-docs/current/elements/extent.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Exemple d’un élément `<map-extent>` servant à charger des pavés d’images
1313
```html
1414
<mapml-viewer projection="OSMTILE" lat="10" lon="0" zoom="1">
1515
<layer- label="OpenStreetMap" checked>
16-
<map-extent units="OSMTILE">
16+
<map-extent units="OSMTILE" checked hidden>
1717
<map-input name="z" type="zoom" value="18" min="0" max="18"></map-input>
1818
<map-input name="x" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
1919
<map-input name="y" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
@@ -76,19 +76,19 @@ L’exemple ci-dessous montre plusieurs éléments `<map-extent>` dans un couche
7676
<!—Modifier la carte de base en cliquant sur les points de suspension (…) de la couche de la carte de base -->
7777
<layer- label="Carte de base" checked="">
7878
<!—Cette étendue est masquée au niveau du contrôle de la couche, puisqu’aucune étiquette n’est fournie -->
79-
<map-extent units="OSMTILE">
79+
<map-extent units="OSMTILE" checked>
8080
<map-input name="TileMatrix" type="zoom" value="18" min="0" max="18"></map-input>
8181
<map-input name="TileCol" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
8282
<map-input name="TileRow" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
8383
<map-link rel="tile" tref="https://server.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/WMTS/tile/1.0.0/World_Imagery/default/default028mm/{TileMatrix}/{TileRow}/{TileCol}.jpg"></map-link>
8484
</map-extent>
85-
<map-extent label="Nat Geo" units="OSMTILE">
85+
<map-extent label="Nat Geo" units="OSMTILE" checked>
8686
<map-input name="TileMatrix" type="zoom" value="18" min="0" max="18"></map-input>
8787
<map-input name="TileCol" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
8888
<map-input name="TileRow" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
8989
<map-link rel="tile" tref="https://server.arcgisonline.com/arcgis/rest/services/NatGeo_World_Map/MapServer/WMTS/tile/1.0.0/NatGeo_World_Map/default/default028mm/{TileMatrix}/{TileRow}/{TileCol}.jpg"></map-link>
9090
</map-extent>
91-
<map-extent label="Imagery" units="OSMTILE">
91+
<map-extent label="Imagery" units="OSMTILE" checked>
9292
<map-input name="TileMatrix" type="zoom" value="18" min="0" max="18"></map-input>
9393
<map-input name="TileCol" type="location" units="tilematrix" axis="column" min="0" max="262144"></map-input>
9494
<map-input name="TileRow" type="location" units="tilematrix" axis="row" min="0" max="262144"></map-input>
@@ -106,7 +106,7 @@ L’exemple ci-dessous montre une demande de service de carte en ligne utilisant
106106
```html
107107
<mapml-viewer projection="OSMTILE" zoom="4" lat="53.331" lon="-91.667" controls>
108108
<layer- label="Toporama" checked="">
109-
<map-extent xmlns="http://www.w3.org/1999/xhtml" units="OSMTILE">
109+
<map-extent xmlns="http://www.w3.org/1999/xhtml" units="OSMTILE" checked>
110110
<!—Paramètres URL de la demande de service de carte en ligne -->
111111
<map-input name="z" type="zoom" value="18" min="4" max="18"></map-input>
112112
<map-input name="w" type="width"></map-input>

i18n/fr/docusaurus-plugin-content-docs/current/elements/input.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ Définit la plage de zoom en fonction des ressources qui sont demandées à l’
115115
```html
116116
<mapml-viewer projection="OSMTILE" zoom="0" lat="45.409071" lon="-75.703411" controls>
117117
<layer- label="OpenStreetMap" checked>
118-
<map-extent units="OSMTILE" >
118+
<map-extent units="OSMTILE" checked>
119119
<map-input name="z" type="zoom" value="18" min="0" max="18" step="3"></map-input>
120120
<map-input name="x" type="location" units="tilematrix" axis="column" min="0" max="262144" ></map-input>
121121
<map-input name="y" type="location" units="tilematrix" axis="row" min="0" max="262144" ></map-input>
122-
<map-link rel="tile" tref="https://tile.openstreetmap.org/{z}/{x}/{y}.png" />
122+
<map-link rel="tile" tref="https://tile.openstreetmap.org/{z}/{x}/{y}.png" ></map-link>
123123
</map-extent>
124124
</layer->
125125
</mapml-viewer>
@@ -132,7 +132,7 @@ Les WMS peuvent être lents à réagir, même s’ils le font rapidement en réa
132132
```html
133133
<mapml-viewer projection="CBMTILE" lat="60" lon="-95" zoom="2" controls>
134134
<layer- label="Demande de pavés WMS GetMap" checked>
135-
<map-extent units="CBMTILE">
135+
<map-extent units="CBMTILE" checked>
136136
<!—ici, les unités et les attributs d’axe semblent contradictoires -->
137137
<!—cependant, rel="tile" et units="tilematrix" informent tous les deux la carte que l’événement sérialisé a trait à un pavé dans le tcrs -->
138138
<map-input name="txmin" type="location" rel="tile" position="top-left" axis="easting" units="tilematrix" ></map-input>
@@ -143,7 +143,7 @@ Les WMS peuvent être lents à réagir, même s’ils le font rapidement en réa
143143
<map-link rel="tile" tref="https://datacube.services.geo.ca/ows/msi?SERVICE=WMS&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=TRUE&STYLES=msi-color&VERSION=1.3.0&LAYERS=msi&WIDTH=256&HEIGHT=256&CRS=EPSG:3978&BBOX={txmin},{tymin},{txmax},{tymax}" ></map-link>
144144
<!—il faut préciser un niveau de zoom, mais il s’agit d’un bogue :
145145
https://github.com/Maps4HTML/Web-Map-Custom-Element/issues/669 -->
146-
<map-input name="z" type="zoom" value="25" min="0" max="25"/>
146+
<map-input name="z" type="zoom" value="25" min="0" max="25"></map-input>
147147
</map-extent>
148148
</layer->
149149
</mapml-viewer>

0 commit comments

Comments
 (0)