diff --git a/docs/api/geojson-api.mdx b/docs/api/geojson-api.mdx index b0479004..5873a23a 100644 --- a/docs/api/geojson-api.mdx +++ b/docs/api/geojson-api.mdx @@ -29,7 +29,7 @@ The **GeoJSON API** is provided as a library to convert GeoJSON to and from MapM | Function | Returns | Description | |----------|---------|-------------| -|geojson2mapml(\ json, \options) | A MapML `` element. | Convert a GeoJSON feature or feature collection string or object to MapML `` containing one or more `` elements.| +|geojson2mapml(\ json, \options) | A MapML `` element. | Convert a GeoJSON feature or feature collection string or object to MapML `` containing one or more `` elements.| :::tip @@ -143,7 +143,7 @@ let output = geojson2mapml(json, {label: "Example 1", projection: "CBMTILE", cap Click to view the output HTMLElement ``` html - + @@ -157,7 +157,7 @@ let output = geojson2mapml(json, {label: "Example 1", projection: "CBMTILE", cap

This is a property heading

-
+
``` @@ -195,7 +195,7 @@ let output = geojson2mapml(json, {label: "Example 2", caption: cap, properties: Click to view the output HTMLElement ``` html - + @@ -209,7 +209,7 @@ let output = geojson2mapml(json, {label: "Example 2", caption: cap, properties:

This is a Point's property

-
+
``` @@ -241,7 +241,7 @@ let output = geojson2mapml(json); Click to view the output HTMLElement ``` html - + @@ -269,7 +269,7 @@ let output = geojson2mapml(json); - + ``` @@ -280,7 +280,7 @@ let output = geojson2mapml(json); | Function | Returns | Description | |----------|---------|-------------| -| mapml2geojson(\ element, \ options) | A JavaScript (GeoJSON) feature collection object | This function transforms the `` element children of a `` element to a GeoJSON FeatureCollection object. You supply [options](#options-1) to control the transformation. This function must be used inside a windows.onload event. +| mapml2geojson(\ element, \ options) | A JavaScript (GeoJSON) feature collection object | This function transforms the `` element children of a `` element to a GeoJSON FeatureCollection object. You supply [options](#options-1) to control the transformation. This function must be used inside a windows.onload event. :::caution @@ -298,7 +298,7 @@ window.onload = (event) => { | Parameter | Description | |------|--------------| -| \ element | A `` element. | +| \ element | A `` element. | | \ options | You supply parameters via an options object with [predefined option names](#options-1). | ### Options @@ -327,7 +327,7 @@ the layer. #### Default options An example showcasing default GeoJSON output when no options are provided. ``` html - + @@ -355,10 +355,10 @@ An example showcasing default GeoJSON output when no options are provided. - + ``` diff --git a/docs/api/layer-api.md b/docs/api/layer-api.md index c9e2527d..2a776dd8 100644 --- a/docs/api/layer-api.md +++ b/docs/api/layer-api.md @@ -19,14 +19,14 @@ The checked property can't be changed if the disabled property is set. To set the checked state of a layer to on: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.checked = true; // valid values are true | false ``` To read the checked state of the layer: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let isChecked = layer.checked; ``` --- @@ -43,14 +43,14 @@ user interface. To set/update whether the layer is "hidden": ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.hidden = true; // valid values are true | false ``` -To get the ``'s hidden value: +To get the ``'s hidden value: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let isHidden = layer.hidden; ``` --- @@ -71,20 +71,20 @@ map viewport. ### label `HTMLLayerElement.label` reflects the `label` content attribute, and specifies a fallback accessible name for the layer, if the accessible name is not provided -via a local `` element child of the `` element, or in the +via a local `` element child of the `` element, or in the `` of a remote MapML document, loaded via the `src` URL value, respectively. -To set/update the ``'s label: +To set/update the ``'s label: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.label = "New Title"; ``` -To get the ``'s label value: +To get the ``'s label value: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let label = layer.label; ``` --- @@ -94,34 +94,34 @@ let label = layer.label; MapML document for the layer. The src property may be undefined if the layer contains inline content. If the src property returns a value, any inline content will be ignored. -To set/update the ``'s src: +To set/update the ``'s src: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.src = "https://example.org"; ``` -To get the ``'s src value (URL): +To get the ``'s src value (URL): ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let url = layer.src; ``` --- ### opacity `HTMLLayerElement.opacity` provides read/write access to the `opacity` value, and is reflected in the layer control for each layer, under "Opacity". -To set/update the ``'s opacity: +To set/update the ``'s opacity: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.opacity = 0.5; // valid values from 0 to 1 ``` -To get the ``'s opacity value: +To get the ``'s opacity value: ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let opacity = layer.opacity; ``` @@ -133,7 +133,7 @@ let opacity = layer.opacity; zoom level in which the extent fits completely. ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.zoomTo(); ``` @@ -145,7 +145,7 @@ layer.zoomTo(); | Function | Returns | Description | |----------|---------|-------------| -| mapml2geojson(\ options) | A JavaScript (GeoJSON) feature collection object | This function transforms the `` element children of a `` element to a GeoJSON FeatureCollection object. You supply [options](#options) to control the transformation. This function must be used inside a windows.onload event. +| mapml2geojson(\ options) | A JavaScript (GeoJSON) feature collection object | This function transforms the `` element children of a `` element to a GeoJSON FeatureCollection object. You supply [options](#options) to control the transformation. This function must be used inside a windows.onload event. :::caution @@ -153,7 +153,7 @@ layer.zoomTo(); ``` js window.onload = (event) => { - let layer = document.querySelector('layer-'); + let layer = document.querySelector('map-layer'); layer.mapml2geojson(); }; ``` @@ -202,7 +202,7 @@ so the resulting JSON SHOULD (somehow, tbd) be tagged with the datum in use by t #### Default options An example showcasing default GeoJSON output when no options are provided. ``` html - + @@ -230,10 +230,10 @@ An example showcasing default GeoJSON output when no options are provided. - + diff --git a/docs/api/map-feature-api.md b/docs/api/map-feature-api.md index f75acc48..dc5e8e8e 100644 --- a/docs/api/map-feature-api.md +++ b/docs/api/map-feature-api.md @@ -313,7 +313,7 @@ None ([undefined](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refere ``` js window.onload = (event) => { - let layer = document.querySelector('layer-'); + let layer = document.querySelector('map-layer'); layer.mapml2geojson(); }; ``` @@ -366,7 +366,7 @@ A GeoJSON object representing the feature #### Default options An example showcasing default GeoJSON output when no options are provided. ``` html - + @@ -394,10 +394,10 @@ An example showcasing default GeoJSON output when no options are provided. - + diff --git a/docs/api/map-link-api.md b/docs/api/map-link-api.md index 1c4c608e..7fda9c5a 100644 --- a/docs/api/map-link-api.md +++ b/docs/api/map-link-api.md @@ -34,7 +34,7 @@ This event is fired when a tile is first being created, the event contains the f The map: ```html - + - + ``` The JavaScript for creating custom tiles: ```js -let layer = document.querySelector("body > mapml-viewer > layer- > map-extent > map-link"); +let layer = document.querySelector("body > mapml-viewer > map-layer > map-extent > map-link"); layer.addEventListener("tileloadstart", (e) => { let customTile = document.createElement("p"); customTile.innerHTML = `x: ${e.detail.x} y: ${e.detail.y} zoom: ${e.detail.zoom}`; diff --git a/docs/api/mapml-viewer-api.mdx b/docs/api/mapml-viewer-api.mdx index 45ed2439..2faa756a 100644 --- a/docs/api/mapml-viewer-api.mdx +++ b/docs/api/mapml-viewer-api.mdx @@ -280,7 +280,7 @@ MapML defines a few built-in tiled CRS projections, including Web Mercator (OSMT The `` custom element provides the custom projections API, which gives you the ability to create custom projections and use them in the `` element, defined using extended JSON-based "proj4" syntax, supported by the proj4js library. -We won't discuss the actual `` element here, except to say that the map `projection` attribute should have the exact same value of the `projection` member of the JSON object you pass to the custom projections API's `defineCustomProjection` method, and every `` element in the map must declare and be encoded in that coordinate system, in order to display correctly. +We won't discuss the actual `` element here, except to say that the map `projection` attribute should have the exact same value of the `projection` member of the JSON object you pass to the custom projections API's `defineCustomProjection` method, and every `` element in the map must declare and be encoded in that coordinate system, in order to display correctly. The custom projections API is provided by the `` element. In a browser implementation, the API might be defined on the window object, but because of the ES6 modules used by custom elements, it is convenient to locate it on the mapping element which uses it. @@ -329,7 +329,7 @@ navigator.geolocation.getCurrentPosition(success, error, options); ### geojson2mapml(json, options) -Convert a GeoJSON feature or feature collection string or object to MapML [``](/web-map-doc/docs/elements/layer/) containing one or more [``](/web-map-doc/docs/elements/feature/) elements. Returns and adds the converted layer element to the map. +Convert a GeoJSON feature or feature collection string or object to MapML [``](/web-map-doc/docs/elements/layer/) containing one or more [``](/web-map-doc/docs/elements/feature/) elements. Returns and adds the converted layer element to the map. :::tip @@ -471,7 +471,7 @@ let output = map.geojson2mapml(json, {label: "Example 1", projection: "CBMTILE", Click to view the output HTMLElement ``` html - + @@ -485,7 +485,7 @@ let output = map.geojson2mapml(json, {label: "Example 1", projection: "CBMTILE",

This is a property heading

-
+
``` @@ -524,7 +524,7 @@ let output = map.geojson2mapml(json, {label: "Example 2", caption: cap, properti Click to view the output HTMLElement ``` html - + @@ -538,7 +538,7 @@ let output = map.geojson2mapml(json, {label: "Example 2", caption: cap, properti

This is a Point's property

-
+
``` @@ -571,7 +571,7 @@ let output = map.geojson2mapml(json); Click to view the output HTMLElement ``` html - + @@ -599,7 +599,7 @@ let output = map.geojson2mapml(json); - +
``` @@ -634,7 +634,7 @@ let output = map.geojson2mapml(json); - + - +
diff --git a/docs/building.md b/docs/building.md index 66e3bd1b..c088ca3f 100644 --- a/docs/building.md +++ b/docs/building.md @@ -91,7 +91,7 @@ $ cat > index.html << EOF - + diff --git a/docs/elements/extent.md b/docs/elements/extent.md index 5ce51089..4dd0c3d1 100644 --- a/docs/elements/extent.md +++ b/docs/elements/extent.md @@ -20,14 +20,14 @@ URL template. ```html - + - +
``` @@ -91,7 +91,7 @@ The following example shows multiple `` elements in a layer. The dif ```html - + @@ -112,7 +112,7 @@ The following example shows multiple `` elements in a layer. The dif - +
``` @@ -122,7 +122,7 @@ The following example shows a Web Map Service Request using `` to requ ```html - + @@ -135,7 +135,7 @@ The following example shows a Web Map Service Request using `` to requ - +
``` diff --git a/docs/elements/feature.md b/docs/elements/feature.md index 01ecbd34..03d8a5b3 100644 --- a/docs/elements/feature.md +++ b/docs/elements/feature.md @@ -7,7 +7,7 @@ Map [features](https://en.wikipedia.org/wiki/Geographical_feature) are real or i Map features are represented in HTML MapML using a `` element, which is rendered on the map through translation to SVG. This allows the feature to scale without distortion, as you zoom in and out. -A `` element is a container for a feature's accessible name (``), scalar properties (``) and its geometry (``). The `` element can be modeled as inline HTML content as a child of the `` element, or in an XHTML MapML document, as a child of the `` element. +A `` element is a container for a feature's accessible name (``), scalar properties (``) and its geometry (``). The `` element can be modeled as inline HTML content as a child of the `` element, or in an XHTML MapML document, as a child of the `` element. @@ -120,7 +120,7 @@ Sets the [extent](../meta/#attributes) of the layer. - + @@ -177,13 +177,13 @@ Sets the [extent](../meta/#attributes) of the layer. - +
``` ### An inline HTML map-feature ```html - + @@ -210,13 +210,13 @@ Sets the [extent](../meta/#attributes) of the layer. - + ``` ### A map-feature in a fetched XHTML MapML document ```html - + ``` ### 35059.mapml: diff --git a/docs/elements/geometry.md b/docs/elements/geometry.md index dc49467c..df642272 100644 --- a/docs/elements/geometry.md +++ b/docs/elements/geometry.md @@ -86,8 +86,8 @@ For each member geometry, the same non-schema constraints apply as to the unique ### Point ```html - - + + Point @@ -99,7 +99,7 @@ For each member geometry, the same non-schema constraints apply as to the unique

This is a Point

-
+
``` @@ -107,8 +107,8 @@ For each member geometry, the same non-schema constraints apply as to the unique ```html - - + + Line @@ -120,7 +120,7 @@ For each member geometry, the same non-schema constraints apply as to the unique

This is a Line

-
+
``` @@ -128,8 +128,8 @@ For each member geometry, the same non-schema constraints apply as to the unique ```html - - + + Polygon @@ -142,7 +142,7 @@ For each member geometry, the same non-schema constraints apply as to the unique

This is a Polygon

-
+
``` @@ -150,8 +150,8 @@ For each member geometry, the same non-schema constraints apply as to the unique ```html - - + + MultiPoint @@ -163,7 +163,7 @@ For each member geometry, the same non-schema constraints apply as to the unique

This is a multipoint

-
+
``` @@ -171,8 +171,8 @@ For each member geometry, the same non-schema constraints apply as to the unique ```html - - + + MultiLineString @@ -185,7 +185,7 @@ For each member geometry, the same non-schema constraints apply as to the unique

This is a MultiLineString

-
+
``` @@ -193,8 +193,8 @@ For each member geometry, the same non-schema constraints apply as to the unique ```html - - + + MultiPolygon @@ -211,7 +211,7 @@ For each member geometry, the same non-schema constraints apply as to the unique

This is a MultiPolygon

-
+
``` @@ -219,8 +219,8 @@ For each member geometry, the same non-schema constraints apply as to the unique ```html - - + + Geometry Collection @@ -240,7 +240,7 @@ For each member geometry, the same non-schema constraints apply as to the unique

This is a Geometry Collection

-
+
``` diff --git a/docs/elements/input.md b/docs/elements/input.md index 391e6071..d775e9de 100644 --- a/docs/elements/input.md +++ b/docs/elements/input.md @@ -166,14 +166,14 @@ on the nature of the content. ```html - + - + ``` @@ -186,7 +186,7 @@ labels, which may be duplicated on adjacent tiles many times over. ```html - + - + ``` diff --git a/docs/elements/layer.md b/docs/elements/layer.md index 1597f84a..982a8459 100644 --- a/docs/elements/layer.md +++ b/docs/elements/layer.md @@ -1,25 +1,25 @@ --- id: layer -title: "" +title: "" slug: /elements/layer/ --- -Maps have one or more layers. Map layers are implemented by the `` custom element. -All `` content is contained by one or more `` elements, either inline or by remote fetch representing the layer's content. +Maps have one or more layers. Map layers are implemented by the `` custom element. +All `` content is contained by one or more `` elements, either inline or by remote fetch representing the layer's content. ```html - + ...layer content goes here... - + ``` -`` is not a 'void' element - it must be closed with a `` tag. +`` is not a 'void' element - it must be closed with a `` tag. -Map content can either be inline, as shown above - between the beginning `` and ending `` tags - -or fetched, from the `` source attribute URL: +Map content can either be inline, as shown above - between the beginning `` and ending `` tags - +or fetched, from the `` source attribute URL: ```html - + ``` @@ -39,7 +39,7 @@ Contains the path to a MapML document. ### `checked` -The `` attribute and property is boolean. When present, +The `` attribute and property is boolean. When present, the checked property value is taken to be 'true'; when not present, the property value is 'false'. Beware that it is the _presence_ of the attribute that makes it true, not the value of the attribute. For example, the attribute `checked="false"` @@ -50,7 +50,7 @@ actually turns out to be checked, ### `hidden` -The ` ``` diff --git a/docs/elements/map-a.md b/docs/elements/map-a.md index 21fdfe3d..6c05250d 100644 --- a/docs/elements/map-a.md +++ b/docs/elements/map-a.md @@ -78,7 +78,7 @@ To style linked features simply target the `map-a` class in your CSS, once a lin `map-a-visited` class. See the example below: ```html - + .map-a { stroke: red; @@ -99,7 +99,7 @@ To style linked features simply target the `map-a` class in your CSS, once a lin - + ``` ### Wrapping a Feature Type + Location Fragment diff --git a/docs/elements/mapml-viewer.md b/docs/elements/mapml-viewer.md index 1ef267ce..14018166 100644 --- a/docs/elements/mapml-viewer.md +++ b/docs/elements/mapml-viewer.md @@ -23,7 +23,7 @@ The `` element is the main element you can use to put a custom Web - + diff --git a/docs/elements/mapml.md b/docs/elements/mapml.md index 810b7756..67275cfd 100644 --- a/docs/elements/mapml.md +++ b/docs/elements/mapml.md @@ -4,10 +4,10 @@ title: "" slug: /elements/mapml/ --- -The `` element is the root of a MapML document (with a .mapml file extension) representing a layer. A MapML document allows itself to be fetched as a remote resource from the `` source attribute URL: +The `` element is the root of a MapML document (with a .mapml file extension) representing a layer. A MapML document allows itself to be fetched as a remote resource from the `` source attribute URL: ```html - + ``` A `` element declare the document to be in the xhtml namespace, and diff --git a/docs/elements/meta.md b/docs/elements/meta.md index a9ec3fea..c5a9b5ab 100644 --- a/docs/elements/meta.md +++ b/docs/elements/meta.md @@ -61,7 +61,7 @@ via the map context menu Copy > Extent item as shown below: | [Content categories](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories) | [Metadata content](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#metadata_content) | | Permitted content | None, it is an [empty element](https://developer.mozilla.org/en-US/docs/Glossary/Empty_element). | | Tag omission | While the HTML `` element is a void element, the polyfill `` must have an end tag. | -| Permitted parents | Inline: the `` element. In a MapML document: the `` element. | +| Permitted parents | Inline: the `` element. In a MapML document: the `` element. | | Implicit ARIA role | [No corresponding role](https://www.w3.org/TR/html-aria/#dfn-no-corresponding-role) | | Permitted ARIA roles | No role permitted | | DOM interface | [HTMLMetaElement extension](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement) | @@ -78,7 +78,7 @@ by the `` attribute, which tells the polyfill how to par process strings of coordinates found in descendant `` elements. ```html - + @@ -89,7 +89,7 @@ process strings of coordinates found in descendant `` elements. - + ``` ### Setting extent @@ -98,7 +98,7 @@ Using the `` element to establish the pcrs (easting,northing) **extent a map layer, the coordinates of which are encoded as gcrs pairs. ```html - + @@ -110,7 +110,7 @@ a map layer, the coordinates of which are encoded as gcrs pairs. - + ``` ### Fallback cs for <map-geometry> @@ -124,7 +124,7 @@ at which the feature should be displayed is not specified, nor the extent. Both values will fall back to the default values for the projection. ```html - + @@ -135,7 +135,7 @@ values will fall back to the default values for the projection. - + ``` ### Default metadata @@ -146,7 +146,7 @@ interpreted to be `gcrs` (longitude latitude). The extent of the layer defaults to that of the projection. ```html - + Big Daddy's Crab Shack @@ -155,7 +155,7 @@ to that of the projection. - + ``` --- diff --git a/docs/elements/properties.md b/docs/elements/properties.md index b33ec8ce..cc118f75 100644 --- a/docs/elements/properties.md +++ b/docs/elements/properties.md @@ -19,8 +19,8 @@ The following example displays the popup as an HTML [table](https://html.spec.wh ```html - - + + @@ -55,7 +55,7 @@ The following example displays the popup as an HTML [table](https://html.spec.wh
-
+
``` diff --git a/docs/elements/select.md b/docs/elements/select.md index dc9d2bc7..00ad0674 100644 --- a/docs/elements/select.md +++ b/docs/elements/select.md @@ -43,7 +43,7 @@ This element contains the options for the `` element. A ` - + @@ -58,7 +58,7 @@ This element contains the options for the `` element. A ` - + ``` diff --git a/docs/elements/span.md b/docs/elements/span.md index 9a65bf4e..960af41f 100644 --- a/docs/elements/span.md +++ b/docs/elements/span.md @@ -16,8 +16,8 @@ The `` element is useful when used together with html global attribute ```html - - + + Polygon @@ -30,7 +30,7 @@ The `` element is useful when used together with html global attribute

This is a Polygon

-
+
``` diff --git a/docs/elements/style.md b/docs/elements/style.md index 15ec640f..94c37cc6 100644 --- a/docs/elements/style.md +++ b/docs/elements/style.md @@ -22,8 +22,8 @@ All the Demo's on the documentation pages contain a "CSS" tab which adds the CSS ```html - - + + Polygon @@ -37,7 +37,7 @@ All the Demo's on the documentation pages contain a "CSS" tab which adds the CSS

This is a Polygon

.hole {stroke: #73A9AD;stroke-width: 4px;fill: none;fill-opacity: 1;} -
+
``` diff --git a/docs/elements/web-map.md b/docs/elements/web-map.md index 60d8e8c8..5a058684 100644 --- a/docs/elements/web-map.md +++ b/docs/elements/web-map.md @@ -27,8 +27,8 @@ The following markup may work on Chrome and Firefox, although it may take some f ```html Map area - - + + rectangle Circle diff --git a/docs/installation.md b/docs/installation.md index d41e6c7d..678b97d8 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -55,5 +55,5 @@ Add the following to the `` of your HTML code: ``` -You can now use ``, `` and the other elements described here on your web pages. +You can now use ``, `` and the other elements described here on your web pages. diff --git a/docs/intro.md b/docs/intro.md index 82e6aa26..8c7cec19 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -10,9 +10,9 @@ For example, markup such as this: ```html - - - + + + ``` diff --git a/docs/layers/static-features.md b/docs/layers/static-features.md index 2a580e47..fba1948e 100644 --- a/docs/layers/static-features.md +++ b/docs/layers/static-features.md @@ -11,7 +11,7 @@ as you zoom in and out without distortion. ## Adding a single feature ```html - +

Feature Popup Text

@@ -23,7 +23,7 @@ as you zoom in and out without distortion.
-
+
``` ## Associated Elements @@ -117,7 +117,7 @@ Sets the [extent](http://example.org/) of the layer. - + @@ -174,7 +174,7 @@ Sets the [extent](http://example.org/) of the layer. - + ``` [ADD MAP HERE] diff --git a/docs/layers/static-tiles.md b/docs/layers/static-tiles.md index aa8d8e8e..1bc9fb3f 100644 --- a/docs/layers/static-tiles.md +++ b/docs/layers/static-tiles.md @@ -12,9 +12,9 @@ to present an image at that location on the map. Add an image file to your project directory. Now you can access this image in MapML. ```html - + - + ``` @@ -73,7 +73,7 @@ Sets the [projection](http://example.org/) of the layer. ```html - + - + ``` [ADD MAP HERE] \ No newline at end of file diff --git a/docs/layers/templated-features.md b/docs/layers/templated-features.md index 1a879780..5a953759 100644 --- a/docs/layers/templated-features.md +++ b/docs/layers/templated-features.md @@ -9,7 +9,7 @@ In this section, we will learn how to create a templated feature layer. A templa ## Adding a templated feature layer ```html - + - + ``` ## Associated Elements @@ -91,7 +91,7 @@ Sets the zoom range of the layer. The layer will make requests from zoom levels ```html - + - + ``` diff --git a/docs/layers/templated-images.md b/docs/layers/templated-images.md index c503a45c..32fa6fb3 100644 --- a/docs/layers/templated-images.md +++ b/docs/layers/templated-images.md @@ -9,7 +9,7 @@ In this section, we will learn how to create a templated image layer. A template ## Adding a templated image layer ```html - + - + ``` ## Associated Elements @@ -93,7 +93,7 @@ Sets the zoom range of the layer, in the following example the user can zoom fro ```html - + - + ``` diff --git a/docs/layers/templated-tiles.md b/docs/layers/templated-tiles.md index a3888281..9ed438bf 100644 --- a/docs/layers/templated-tiles.md +++ b/docs/layers/templated-tiles.md @@ -9,14 +9,14 @@ In this section, we will learn how to create a templated tile layer. A templated ## Adding a templated layer ```html - + - + ``` ## Associated Elements @@ -85,7 +85,7 @@ Sets the native minimum and maximum [native zoom](http://example.org/). It also ```html - + - + ``` diff --git a/docs/user-guide/creating-styles.md b/docs/user-guide/creating-styles.md index ebc9fd15..1b8a389b 100644 --- a/docs/user-guide/creating-styles.md +++ b/docs/user-guide/creating-styles.md @@ -15,7 +15,7 @@ style rules, while [sort-of declarative](https://glazkov.com/2024/01/16/declarat The pmtiles map archive and mvt [formats](../elements/link#type) in the MapML polyfill are integrated via [the protomaps-leaflet library](https://docs.protomaps.com/pmtiles/leaflet). Protomaps-leaflet is designed to support the (de facto standard) Web Mercator tile grid. This allows -the MapML polyfill to integrate support for pmtiles and mvt data sources for only the `OSMTILE` projection. `` and `` elements and the `` will +the MapML polyfill to integrate support for pmtiles and mvt data sources for only the `OSMTILE` projection. `` and `` elements and the `` will not work (and will be permanently `disabled`) when used with `` or `` values apart from `OSMTILE`. Before proceeding below, you should read the [protomaps-leaflet](https://docs.protomaps.com/pmtiles/leaflet#custom-vector-data) documentation on custom styling. diff --git a/docs/user-guide/getting-started.md b/docs/user-guide/getting-started.md index d89a9ec3..144cfc41 100644 --- a/docs/user-guide/getting-started.md +++ b/docs/user-guide/getting-started.md @@ -88,7 +88,7 @@ The next step in our lesson is to remove the image and replace it with a map, us

Web pages maps are easy-peasy

// highlight-start - + // highlight-end diff --git a/docs/user-guide/quick-start.md b/docs/user-guide/quick-start.md index 29bbe7bd..d9069fc6 100644 --- a/docs/user-guide/quick-start.md +++ b/docs/user-guide/quick-start.md @@ -22,7 +22,7 @@ Learn how to quickly create your first map. - + diff --git a/docs/user-guide/using-styles.md b/docs/user-guide/using-styles.md index ca3a515a..dc88cf8f 100644 --- a/docs/user-guide/using-styles.md +++ b/docs/user-guide/using-styles.md @@ -53,9 +53,9 @@ Pre-defined themes that you can use include: `light`, `dark`, `white`, `grayscal The styles for a given ``'s URL template `tref` must be found via an associated ``. The MapML polyfill looks for the associated `` upward in the `` element's "ancestry", stopping at the -enclosing `` element. The associated stylesheet link `` +enclosing `` element. The associated stylesheet link `` may be located within the enclosing ``, as a sibling of the to-be-styled `` resource, or -within the `` (when used in remote MapML content) or `` element (when used in local MapML content). Only the +within the `` (when used in remote MapML content) or `` element (when used in local MapML content). Only the **first** `` in document order found will be associated; if no style rules or theme for the `tref` URL template is found, console error messages may help clarify. @@ -98,7 +98,7 @@ Example of where linked stylesheets are sought by the polyfill, local content: ```html ... - + PMTiles test dark @@ -106,10 +106,10 @@ Example of where linked stylesheets are sought by the polyfill, local content: - - + + {z}/{x}/{y}.mvt test - + @@ -117,7 +117,7 @@ Example of where linked stylesheets are sought by the polyfill, local content: - +
``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/api/geojson-api.mdx b/i18n/fr/docusaurus-plugin-content-docs/current/api/geojson-api.mdx index 56996adf..e55d1e8c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/api/geojson-api.mdx +++ b/i18n/fr/docusaurus-plugin-content-docs/current/api/geojson-api.mdx @@ -29,7 +29,7 @@ L’**interface de programmation d’applications (API) GeoJSON** est fournie so | Fonction | Retours| Description | |----------|---------|-------------| -|geojson2mapml(\ json, \ options) | Élément MapML ``. | Convertit une caractéristique GeoJSON ou une chaîne ou un objet de collection de caractéristiques en élément MapML `` contenant un ou plusieurs éléments ``.| +|geojson2mapml(\ json, \ options) | Élément MapML ``. | Convertit une caractéristique GeoJSON ou une chaîne ou un objet de collection de caractéristiques en élément MapML `` contenant un ou plusieurs éléments ``.| :::tip @@ -143,7 +143,7 @@ let output = geojson2mapml(json, {label: "Exemple 1", projection: "CBMTILE", cap Cliquez pour afficher la sortie HTMLElement ``` html - + @@ -157,7 +157,7 @@ let output = geojson2mapml(json, {label: "Exemple 1", projection: "CBMTILE", cap

Ceci est un en-tête de propriété

-
+
``` @@ -195,7 +195,7 @@ let output = geojson2mapml(json, {label: "Exemple 2", caption: cap, properties: Cliquez pour afficher la sortie HTMLElement ``` html - + @@ -209,7 +209,7 @@ let output = geojson2mapml(json, {label: "Exemple 2", caption: cap, properties:

Ceci est une propriété du point

-
+
``` @@ -241,7 +241,7 @@ let output = geojson2mapml(json); Cliquez pour afficher la sortie HTMLElement ``` html - + @@ -269,7 +269,7 @@ let output = geojson2mapml(json); - + ``` @@ -280,7 +280,7 @@ let output = geojson2mapml(json); | Fonction | Retours | Description | |----------|---------|-------------| -| mapml2geojson(\ element, \ options) | Objet de collection de caractéristiques JavaScript (GeoJSON) | Cette fonction transforme l’élément- enfant `` d’un élément `` en un objet GeoJSON FeatureCollection. Vous fournissez les [options](#options-1) pour contrôler la transformation. Cette fonction doit servir dans un événement windows.onload. +| mapml2geojson(\ element, \ options) | Objet de collection de caractéristiques JavaScript (GeoJSON) | Cette fonction transforme l’élément- enfant `` d’un élément `` en un objet GeoJSON FeatureCollection. Vous fournissez les [options](#options-1) pour contrôler la transformation. Cette fonction doit servir dans un événement windows.onload. :::caution @@ -298,7 +298,7 @@ window.onload = (event) => { | Paramètre | Description | |------|--------------| -| Élément \ | Élément `` | +| Élément \ | Élément `` | | \ options | Vous fournissez des paramètres au moyen d’un objet d’options avec des [noms d’option prédéfinis](#options-1). | ### Options @@ -319,7 +319,7 @@ Au besoin, `mapml2geojson` transforme des coordonnées en `gcrs` par défaut ava #### Options par défaut Exemple montrant la sortie GeoJSON par défaut lorsqu’aucune option n’est fournie. ``` html - + @@ -347,10 +347,10 @@ Exemple montrant la sortie GeoJSON par défaut lorsqu’aucune option n’est fo - + ``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/api/layer-api.md b/i18n/fr/docusaurus-plugin-content-docs/current/api/layer-api.md index 3ffc55ad..7d2f7782 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/api/layer-api.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/api/layer-api.md @@ -16,14 +16,14 @@ La propriété vérifiée ne peut être modifiée si l’état de la propriété Pour activer l’état vérifié d’une couche activée : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.checked = true; // les valeurs valides sont true | false ``` Pour lire l’état vérifié de la couche : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let isChecked = layer.checked; ``` --- @@ -36,14 +36,14 @@ Cela est également pratique pour gérer une couche permanente sans surcharger l Pour définir que la couche est masquée ou la mettre à jour avec cet état : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.hidden = true; // les valeurs valides sont true | false ``` -Pour obtenir la valeur hidden de `` : +Pour obtenir la valeur hidden de `` : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let isHidden = layer.hidden; ``` --- @@ -56,54 +56,54 @@ let isHidden = layer.hidden; ### label `HTMLLayerElement.label` reflète l'attribut de contenu `label`, et spécifie un nom accessible de repli pour la couche, si le nom accessible n'est pas fourni par un -élément local `` enfant de l'élément ``, ou dans l'élément +élément local `` enfant de l'élément ``, ou dans l'élément `` d'un document MapML chargé via la valeur URL dans l'attribut `src`, respectivement. -Pour définir la label de `` ou mettre à jour celle-ci : +Pour définir la label de `` ou mettre à jour celle-ci : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.label = "Nouveau titre"; ``` -Pour obtenir la valeur de la label de `` : +Pour obtenir la valeur de la label de `` : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let label = layer.label; ``` --- ### src `HTMLLayerElement.src` reproduit l’attribut HTML src et précise l’adresse URL du document MapML de la couche. La propriété src peut ne pas être définie si la couche contient du contenu en ligne. Si la propriété src retourne une valeur, tout contenu en ligne est omis. -Pour définir ou mettre à jour la src de `` : +Pour définir ou mettre à jour la src de `` : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.src = "https://example.org"; ``` -Pour obtenir la valeur (adresse URL) de la src de `` : +Pour obtenir la valeur (adresse URL) de la src de `` : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let url = layer.src; ``` --- ### opacity `HTMLLayerElement.opacity` donne accès en lecture ou en écriture à la valeur d’`opacity`, qui correspond dans le contrôle de couche pour chaque couche, sous "Opacité". -Pour définir ou mettre à jour l’opacité de `` : +Pour définir ou mettre à jour l’opacité de `` : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.opacity = 0.5; // les valeurs valides vont de 0.0 à 1.0 ``` -Pour obtenir la valeur de l’opacité de `` : +Pour obtenir la valeur de l’opacité de `` : ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); let opacity = layer.opacity; ``` @@ -115,7 +115,7 @@ let opacity = layer.opacity; au niveau de zoom maximum dans lequel l'étendue s'inscrit complètement. ```js -let layer = document.querySelector('layer-'); +let layer = document.querySelector('map-layer'); layer.zoomTo(); ``` @@ -125,7 +125,7 @@ layer.zoomTo(); | Fonction | Retours | Description | |----------|---------|-------------| -| mapml2geojson(\ options) | Objet de collection de caractéristiques JavaScript (GeoJSON) | Cette fonction transforme l’élément- enfant `` d’un élément `` en un objet GeoJSON FeatureCollection. Vous fournissez les [options](#options) pour contrôler la transformation. Cette fonction doit servir dans un événement windows.onload. +| mapml2geojson(\ options) | Objet de collection de caractéristiques JavaScript (GeoJSON) | Cette fonction transforme l’élément- enfant `` d’un élément `` en un objet GeoJSON FeatureCollection. Vous fournissez les [options](#options) pour contrôler la transformation. Cette fonction doit servir dans un événement windows.onload. :::caution @@ -133,7 +133,7 @@ layer.zoomTo(); ``` js window.onload = (event) => { - let layer = document.querySelector('layer-'); + let layer = document.querySelector('map-layer'); layer.mapml2geojson(); }; ``` @@ -144,7 +144,7 @@ window.onload = (event) => { | Paramètre | Description | |------|--------------| -| Élément \ | Élément `` | +| Élément \ | Élément `` | | \ options | Vous fournissez des paramètres au moyen d’un objet d’options avec des [noms d’option prédéfinis](#options). | #### Options @@ -176,7 +176,7 @@ Au besoin, `mapml2geojson` transforme des coordonnées en `gcrs` par défaut ava #### Options par défaut Exemple montrant la sortie GeoJSON par défaut lorsqu’aucune option n’est fournie. ``` html - + @@ -204,10 +204,10 @@ Exemple montrant la sortie GeoJSON par défaut lorsqu’aucune option n’est fo - + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/api/map-feature-api.md b/i18n/fr/docusaurus-plugin-content-docs/current/api/map-feature-api.md index e11ee632..5919430d 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/api/map-feature-api.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/api/map-feature-api.md @@ -323,7 +323,7 @@ Aucun ([undefined](https://developer.mozilla.org/fr/docs/Web/JavaScript/Referenc ``` js window.onload = (event) => { - let layer = document.querySelector('layer-'); + let layer = document.querySelector('map-layer'); layer.mapml2geojson(); }; ``` @@ -379,7 +379,7 @@ Un objet GeoJSON représentant la caractéristique #### Default options Un exemple montrant la sortie GeoJSON par défaut lorsqu'aucune option n'est fournie. ``` html - + @@ -407,10 +407,10 @@ Un exemple montrant la sortie GeoJSON par défaut lorsqu'aucune option n'est fou - + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/api/map-link-api.md b/i18n/fr/docusaurus-plugin-content-docs/current/api/map-link-api.md index bf6514ce..66181432 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/api/map-link-api.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/api/map-link-api.md @@ -33,7 +33,7 @@ Cet événement est déclenché à la création d’un pavé, et contient la str La carte : ```html - + - + ``` Script Java pour créer des pavés personnalisés : ```js -let layer = document.querySelector("body > mapml-viewer > layer- > map-extent > map-link"); +let layer = document.querySelector("body > mapml-viewer > map-layer > map-extent > map-link"); layer.addEventListener("tileloadstart", (e) => { let customTile = document.createElement("p"); customTile.innerHTML = `x: ${e.detail.x} y: ${e.detail.y} zoom: ${e.detail.zoom}`; diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/api/mapml-viewer-api.mdx b/i18n/fr/docusaurus-plugin-content-docs/current/api/mapml-viewer-api.mdx index e5509096..26a5387b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/api/mapml-viewer-api.mdx +++ b/i18n/fr/docusaurus-plugin-content-docs/current/api/mapml-viewer-api.mdx @@ -224,7 +224,7 @@ let zoom = map.zoom; | [viewSource()](#viewsource) | Affiche la source de la carte. | | [defineCustomProjection(options)](#definecustomprojectionoptions) | Définir une projection personnalisée à utiliser par la page. | | [zoomTo(lat, lon, zoom)](#zoomtolat-lon-zoom) | Survole la carte ou effectue un mouvement panoramique vers un (nouvel) emplacement et à un autre niveau de zoom.| -| [geojson2mapml(json, options)](#zoomtolat-lon-zoom) | Convertit une caractéristique GeoJSON ou une chaîne ou un objet de collection de caractéristiques en élément MapML `` contenant un ou plusieurs éléments ``. | +| [geojson2mapml(json, options)](#zoomtolat-lon-zoom) | Convertit une caractéristique GeoJSON ou une chaîne ou un objet de collection de caractéristiques en élément MapML `` contenant un ou plusieurs éléments ``. | ### back() @@ -283,7 +283,7 @@ MapML définit quelques projections CRS (Système de référence des coordonnée L’élément personnalisé `` fournit l’interface de programmation d’applications (API) personnalisée des projections, qui vous permet de créer vos propres projections et de les utiliser dans l’élément ``, défini avec la syntaxe "proj4" étendue du langage JSON et prise en charge par la bibliothèque proj4js. -Nous n’examinerons pas l’élément `` lui-même ici, sauf pour dire que l’attribut `projection` de la carte doit avoir la même valeur que le membre `projection` de l’objet JSON que vous transmettez à la méthode `defineCustomProjection` de l’API personnalisée des projections, et que chaque élément `` présent dans la carte doit comporter une déclaration et être programmé dans ce système de coordonnées pour s’afficher correctement. +Nous n’examinerons pas l’élément `` lui-même ici, sauf pour dire que l’attribut `projection` de la carte doit avoir la même valeur que le membre `projection` de l’objet JSON que vous transmettez à la méthode `defineCustomProjection` de l’API personnalisée des projections, et que chaque élément `` présent dans la carte doit comporter une déclaration et être programmé dans ce système de coordonnées pour s’afficher correctement. L’API personnalisée des projections est fournie par l’élément ``. Dans un navigateur, elle peut être définie sur l’objet de fenêtre. Toutefois, parce que des éléments personnalisés utilisent des modules ES6, il est pratique de la placer sur l’élément de mappage qui l’utilise. @@ -332,7 +332,7 @@ navigator.geolocation.getCurrentPosition(success, error, options); ### geojson2mapml(json, options) -Convertit une caractéristique GeoJSON ou une chaîne ou un objet de collection de caractéristiques en élément MapML `` contenant un ou plusieurs éléments ``. +Convertit une caractéristique GeoJSON ou une chaîne ou un objet de collection de caractéristiques en élément MapML `` contenant un ou plusieurs éléments ``. :::tip @@ -473,7 +473,7 @@ let output = map.geojson2mapml(json, {label: "Exemple 1", projection: "CBMTILE", Cliquez pour afficher la sortie HTMLElement ``` html - + @@ -487,7 +487,7 @@ let output = map.geojson2mapml(json, {label: "Exemple 1", projection: "CBMTILE",

Ceci est un en-tête de propriété

-
+
``` @@ -526,7 +526,7 @@ let output = map.geojson2mapml(json, {label: "Exemple 2", caption: cap, properti Cliquez pour afficher la sortie HTMLElement ``` html - + @@ -540,7 +540,7 @@ let output = map.geojson2mapml(json, {label: "Exemple 2", caption: cap, properti

Ceci est une propriété du point

-
+
``` @@ -573,7 +573,7 @@ let output = map.geojson2mapml(json); Cliquez pour afficher la sortie HTMLElement ``` html - + @@ -601,7 +601,7 @@ let output = map.geojson2mapml(json);
-
+
``` @@ -636,7 +636,7 @@ let output = map.geojson2mapml(json); - + - +
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/building.md b/i18n/fr/docusaurus-plugin-content-docs/current/building.md index 24912012..8361bcd3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/building.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/building.md @@ -91,7 +91,7 @@ $ cat > index.html << EOF - + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/extent.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/extent.md index 9d882805..4194ff70 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/extent.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/extent.md @@ -12,14 +12,14 @@ Exemple d’un élément `` servant à charger des pavés d’images ```html - + - +
``` @@ -88,7 +88,7 @@ L’exemple ci-dessous montre plusieurs éléments `` dans un couche ```html - + @@ -109,7 +109,7 @@ L’exemple ci-dessous montre plusieurs éléments `` dans un couche - +
``` @@ -119,7 +119,7 @@ L’exemple ci-dessous montre une demande de service de carte en ligne utilisant ```html - + @@ -132,7 +132,7 @@ L’exemple ci-dessous montre une demande de service de carte en ligne utilisant - +
``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/feature.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/feature.md index 349c2b3c..8714454a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/feature.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/feature.md @@ -7,7 +7,7 @@ Les [caractéristiques](https://en.wikipedia.org/wiki/Geographical_feature) de l Les caractéristiques de la carte sont représentées dans HTML MapML par l’élément `` qui est rendu sur la carte par conversion en format SVG. Cela permet de mettre la caractéristique à l’échelle sans distorsion si l’utilisateur effectue un zoom avant ou arrière. -Un élément `` est le conteneur du nom accessible de la caractéristique (``), de ses propriétés scalaires (``) et de sa géométrie (``). L’élément `` peut être modélisé sous forme de contenu HTML en ligne et comme élément-enfant de `` ou encore dans un document XHTML MapML comme élément- enfant de ``. +Un élément `` est le conteneur du nom accessible de la caractéristique (``), de ses propriétés scalaires (``) et de sa géométrie (``). L’élément `` peut être modélisé sous forme de contenu HTML en ligne et comme élément-enfant de `` ou encore dans un document XHTML MapML comme élément- enfant de ``. @@ -123,7 +123,7 @@ Définit l’[extent](../meta/#attributs) de la couche. - + @@ -180,13 +180,13 @@ Définit l’[extent](../meta/#attributs) de la couche. - +
``` ### Une caractéristique de la carte HTML en ligne ```html - + @@ -213,13 +213,13 @@ Définit l’[extent](../meta/#attributs) de la couche. - + ``` ### Une caractéristique de la carte dans un document XHTML MapML récupéré ```html - + ``` ### 35059.mapml: diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/geometry.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/geometry.md index 191fb935..6ffaa922 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/geometry.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/geometry.md @@ -86,8 +86,8 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen ### Point ```html - - + + Point @@ -99,7 +99,7 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen

Ceci est un point

-
+
``` @@ -107,8 +107,8 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen ```html - - + + Ligne @@ -120,7 +120,7 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen

Ceci est une ligne

-
+
``` @@ -128,8 +128,8 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen ```html - - + + Polygone @@ -142,7 +142,7 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen

Ceci est un polygone

-
+
``` @@ -150,8 +150,8 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen ```html - - + + MultiPoint @@ -163,7 +163,7 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen

Ceci est un multipoint

-
+
``` @@ -171,8 +171,8 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen ```html - - + + MultiLineString @@ -185,7 +185,7 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen

Ceci est une multiligne

-
+
``` @@ -193,8 +193,8 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen ```html - - + + MultiPolygon @@ -211,7 +211,7 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen

Ceci est un multipolygone

-
+
``` @@ -219,8 +219,8 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen ```html - - + + Collection de géométries @@ -240,7 +240,7 @@ Pour chaque géométrie membre, les mêmes contraintes non schéma s’appliquen

Ceci est une collection de géométries

-
+
``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/input.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/input.md index ddad330f..887af4eb 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/input.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/input.md @@ -114,14 +114,14 @@ Définit la plage de zoom en fonction des ressources qui sont demandées à l’ ```html - + - + ``` @@ -131,7 +131,7 @@ Les WMS peuvent être lents à réagir, même s’ils le font rapidement en réa ```html - + @@ -145,7 +145,7 @@ Les WMS peuvent être lents à réagir, même s’ils le font rapidement en réa https://github.com/Maps4HTML/MapML.js/issues/669 --> - + ``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/layer.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/layer.md index efeecc49..e3b9da29 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/layer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/layer.md @@ -1,24 +1,24 @@ --- id: layer -title: "" +title: "" slug: /layers/layer/ --- -Les cartes sont composées d’une ou de plusieurs couches. Ces couches sont appliquées par l’élément personnalisé ``. -Tout le contenu `` est compris dans un ou plusieurs éléments ``, en ligne ou extraits à distance, qui représentent le contenu de la couche. +Les cartes sont composées d’une ou de plusieurs couches. Ces couches sont appliquées par l’élément personnalisé ``. +Tout le contenu `` est compris dans un ou plusieurs éléments ``, en ligne ou extraits à distance, qui représentent le contenu de la couche. ```html - + ...le contenu de la couche s’affiche ici... - + ``` -`` n’est pas un élément ‘void’ – il doit être fermé par une balise ``. +`` n’est pas un élément ‘void’ – il doit être fermé par une balise ``. -Le contenu de la carte peut être en ligne, comme il est illustré ci-dessous – entre les balises de début `` et de fin `` – ou extrait, à partir de l’URL de l’attribut source `` : +Le contenu de la carte peut être en ligne, comme il est illustré ci-dessous – entre les balises de début `` et de fin `` – ou extrait, à partir de l’URL de l’attribut source `` : ```html - + ``` @@ -35,13 +35,13 @@ Contient le chemin d’accès vers un document MapML. ### `checked` -L’attribut `` et la valeur « property » sont boolean. Si elle est présente, la valeur « property » vérifiée est considérée comme ‘true’; si elle n’est pas présente, la valeur « property » est 'false'. Notez que c’est la _présence_ de l’attribut qui fait que la valeur est « true », et non la valeur de l’attribut. Par exemple, l’attribut `checked="false"` s’avère en fait être « checked », [comme il est décrit dans MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes#boolean_attributes). +L’attribut `` et la valeur « property » sont boolean. Si elle est présente, la valeur « property » vérifiée est considérée comme ‘true’; si elle n’est pas présente, la valeur « property » est 'false'. Notez que c’est la _présence_ de l’attribut qui fait que la valeur est « true », et non la valeur de l’attribut. Par exemple, l’attribut `checked="false"` s’avère en fait être « checked », [comme il est décrit dans MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes#boolean_attributes). --- ### `hidden` -L’attribut ` ``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/map-a.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/map-a.md index 89f9e1f0..8544d0a1 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/map-a.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/map-a.md @@ -74,7 +74,7 @@ C.-à-d. `...` déplacera la carte vers la lati Pour modifier le style d’entités liées, ciblez simplement la classe `map-a` dans votre feuille de style en cascade (CSS). Après avoir cliqué sur un lien, vous pouvez cibler la classe `map-a-visited`. Voir l’exemple ci-dessous : ```html - + .map-a { stroke: red; @@ -95,7 +95,7 @@ Pour modifier le style d’entités liées, ciblez simplement la classe `map-a` - + ``` ### Encapsuler un type d’entités + un fragment de lieu diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml-viewer.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml-viewer.md index a06c3575..31aad78f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml-viewer.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml-viewer.md @@ -22,7 +22,7 @@ L’élément `` est le principal élément à utiliser pour ajout - + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml.md index e8e57212..908c7878 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/mapml.md @@ -4,10 +4,10 @@ title: "" slug: /elements/mapml/ --- -L’élément `` est la racine d’un document MapML (avec une extension de fichier .mapml) et il représente une couche. Un document MapML peut être extrait comme ressource distante à partir de l’URL de l’attribut source `` : +L’élément `` est la racine d’un document MapML (avec une extension de fichier .mapml) et il représente une couche. Un document MapML peut être extrait comme ressource distante à partir de l’URL de l’attribut source `` : ```html - + ``` Un élément `` indique que le document se trouve dans l’espace de noms xhtml, et diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/meta.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/meta.md index 48afbdb4..3a21554b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/meta.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/meta.md @@ -61,7 +61,7 @@ de la carte Copier > Étendue, comme indiqué ci-dessous : | [Catégories de contenu](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories) | [Contenu de métadonnées](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#metadata_content) | | Contenu autorisé | Aucun, il s’agit d’un [élément vide](https://developer.mozilla.org/en-US/docs/Glossary/Empty_element). | | Omission de balises | Bien que l’élément HTML `` soit un élément vide, le polyfill `` doit avoir une balise de fin. | -| Parents autorisés | En ligne : élément ``. Dans un document MapML : élément ``. | +| Parents autorisés | En ligne : élément ``. Dans un document MapML : élément ``. | | Rôle ARIA implicite | [Aucun rôle correspondant](https://www.w3.org/TR/html-aria/#dfn-no-corresponding-role) | | Rôles ARIA autorisés | Aucun rôle autorisé | | DOM interface | [HTMLMetaElement extension](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement) | @@ -78,7 +78,7 @@ Le codage des coordonnées de l’entité est strictement déterminé par l’at ```html - + @@ -89,7 +89,7 @@ Le codage des coordonnées de l’entité est strictement déterminé par l’at - + ``` ### Réglage de la portée @@ -98,7 +98,7 @@ Utiliser l’élément `` pour établir la **portée** pcrs (easting,n ```html - + @@ -110,7 +110,7 @@ Utiliser l’élément `` pour établir la **portée** pcrs (easting,n - + ``` ### Variable alternative cs pour <map-geometry> @@ -122,7 +122,7 @@ Ces deux valeurs reviendront aux valeurs par défaut de la projection. ```html - + @@ -133,7 +133,7 @@ Ces deux valeurs reviendront aux valeurs par défaut de la projection. - + ``` ### Métadonnées par défaut @@ -144,7 +144,7 @@ La portée de la couche correspond par défaut à celle de la projection. ```html - + Big Daddy's Crab Shack @@ -153,7 +153,7 @@ La portée de la couche correspond par défaut à celle de la projection. - + ``` --- diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/properties.md index 985f23ad..1a35e980 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/properties.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/properties.md @@ -19,8 +19,8 @@ Dans l’exemple suivant, la fenêtre contextuelle s’affiche sous forme de [ta ```html - - + + @@ -55,7 +55,7 @@ Dans l’exemple suivant, la fenêtre contextuelle s’affiche sous forme de [ta
-
+
``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/select.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/select.md index b471648d..3e0cf194 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/select.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/select.md @@ -43,7 +43,7 @@ Cet élément contient les options de l’élément ``. Un élément ### Changer de source de carte ```html - + @@ -58,7 +58,7 @@ Cet élément contient les options de l’élément ``. Un élément - +
``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/span.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/span.md index d5347921..53ee5ba5 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/span.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/span.md @@ -16,8 +16,8 @@ L’élément `` est utile lorsqu’il est utilisé avec des attributs ```html - - + + Polygone @@ -30,7 +30,7 @@ L’élément `` est utile lorsqu’il est utilisé avec des attributs

Il s’agit d’un polygone

-
+
``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/style.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/style.md index d0fd9844..9bbf3c78 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/style.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/style.md @@ -22,8 +22,8 @@ Toutes les démonstrations comprises dans les pages de documentation contiennent ```html - - + + Polygone @@ -37,7 +37,7 @@ Toutes les démonstrations comprises dans les pages de documentation contiennent

Il s’agit d’un polygone

.hole {stroke: #73A9AD;stroke-width: 4px;fill: none;fill-opacity: 1;} -
+
``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/elements/web-map.md b/i18n/fr/docusaurus-plugin-content-docs/current/elements/web-map.md index afd0f859..3c81ac2b 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/elements/web-map.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/elements/web-map.md @@ -27,8 +27,8 @@ Le balisage suivant pourrait fonctionner dans Chrome et Firefox, mais il pourrai ```html Map area - - + + rectangle Circle diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/installation.md b/i18n/fr/docusaurus-plugin-content-docs/current/installation.md index 29303efc..4d6be354 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/installation.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/installation.md @@ -55,5 +55,5 @@ Ajoutez ce qui suit à l’élément `` de votre code HTML : ``` -Vous pouvez maintenant utiliser dans vos pages Web les éléments `` et `` ainsi que les autres éléments décrits dans le présent document. +Vous pouvez maintenant utiliser dans vos pages Web les éléments `` et `` ainsi que les autres éléments décrits dans le présent document. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/intro.md b/i18n/fr/docusaurus-plugin-content-docs/current/intro.md index c2d419ea..cf666ec2 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/intro.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/intro.md @@ -10,9 +10,9 @@ Par exemple, le balisage suivant : ```html - - - + + + ``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-features.md b/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-features.md index 2a580e47..fba1948e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-features.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-features.md @@ -11,7 +11,7 @@ as you zoom in and out without distortion. ## Adding a single feature ```html - +

Feature Popup Text

@@ -23,7 +23,7 @@ as you zoom in and out without distortion.
-
+
``` ## Associated Elements @@ -117,7 +117,7 @@ Sets the [extent](http://example.org/) of the layer. - + @@ -174,7 +174,7 @@ Sets the [extent](http://example.org/) of the layer. - + ``` [ADD MAP HERE] diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-tiles.md b/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-tiles.md index aa8d8e8e..1bc9fb3f 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-tiles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/layers/static-tiles.md @@ -12,9 +12,9 @@ to present an image at that location on the map. Add an image file to your project directory. Now you can access this image in MapML. ```html - + - + ``` @@ -73,7 +73,7 @@ Sets the [projection](http://example.org/) of the layer. ```html - + - + ``` [ADD MAP HERE] \ No newline at end of file diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-features.md b/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-features.md index 1a879780..5a953759 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-features.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-features.md @@ -9,7 +9,7 @@ In this section, we will learn how to create a templated feature layer. A templa ## Adding a templated feature layer ```html - + - + ``` ## Associated Elements @@ -91,7 +91,7 @@ Sets the zoom range of the layer. The layer will make requests from zoom levels ```html - + - + ``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-images.md b/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-images.md index c503a45c..32fa6fb3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-images.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-images.md @@ -9,7 +9,7 @@ In this section, we will learn how to create a templated image layer. A template ## Adding a templated image layer ```html - + - + ``` ## Associated Elements @@ -93,7 +93,7 @@ Sets the zoom range of the layer, in the following example the user can zoom fro ```html - + - + ``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-tiles.md b/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-tiles.md index a3888281..9ed438bf 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-tiles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/layers/templated-tiles.md @@ -9,14 +9,14 @@ In this section, we will learn how to create a templated tile layer. A templated ## Adding a templated layer ```html - + - + ``` ## Associated Elements @@ -85,7 +85,7 @@ Sets the native minimum and maximum [native zoom](http://example.org/). It also ```html - + - + ``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/creating-styles.md b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/creating-styles.md index 3f78fb96..c82c63e3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/creating-styles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/creating-styles.md @@ -22,7 +22,7 @@ sous forme de requêtes par plage d'octets. Les [formats](../elements/link#type) de l'archive de carte pmtiles et mvt dans le polyfill MapML sont intégrés via [la bibliothèque protomaps-leaflet](https://docs.protomaps.com/pmtiles/leaflet). Protomaps-leaflet est conçue pour prendre en charge la grille de tuiles Web Mercator (standard de facto). Cela permet au polyfill MapML d'intégrer le support des sources de données pmtiles -et mvt pour la seule projection `OSMTILE`. Les éléments `` et `` ainsi que le `` +et mvt pour la seule projection `OSMTILE`. Les éléments `` et `` ainsi que le `` ne fonctionneront pas (et seront « désactivés » de façon permanente) s'ils sont utilisés avec des valeurs `` ou `` autres que `OSMTILE`. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/getting-started.md b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/getting-started.md index e970d0c6..490536d6 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/getting-started.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/getting-started.md @@ -88,7 +88,7 @@ La prochaine étape est de supprimer et remplacer l'image par une carte, en util

Les pages cartes Web : c'est si facile

// highlight-start - + // highlight-end diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/quick-start.md b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/quick-start.md index 734c290b..2bea16af 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/quick-start.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/quick-start.md @@ -22,7 +22,7 @@ Apprenez à créer rapidement votre première carte. - + diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/using-styles.md b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/using-styles.md index 0a1e1d71..d6514660 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/using-styles.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/user-guide/using-styles.md @@ -52,7 +52,7 @@ Les styles pour un modèle d'URL `` donné doivent être trouvés via recherche le `` associé vers le haut dans la hiérarchie de l'élément ``, en s'arrêtant à l'élément `` qui l'entoure. Le lien de feuille de style associé `` peut être situé dans l'élément ``, en tant que frère de la ressource `` à styliser, ou -dans l'élément `` (lorsqu'il est utilisé dans un contenu MapML distant) ou `` (lorsqu'il est utilisé dans un contenu MapML local). +dans l'élément `` (lorsqu'il est utilisé dans un contenu MapML distant) ou `` (lorsqu'il est utilisé dans un contenu MapML local). Seule la **premier** `` dans l'ordre du document trouvé sera associé ; si aucune règle de style ou thème pour le modèle d'URL `tref`, les messages d'erreur de la console peuvent aider à clarifier la situation. @@ -96,7 +96,7 @@ Exemple de cas où les feuilles de style liées sont recherchées par le polyfil ```html ... - + PMTiles test dark @@ -104,10 +104,10 @@ Exemple de cas où les feuilles de style liées sont recherchées par le polyfil - - + + {z}/{x}/{y}.mvt test - + @@ -115,7 +115,7 @@ Exemple de cas où les feuilles de style liées sont recherchées par le polyfil - +
``` diff --git a/static/demo/Tutorial/Getting Started/index.html b/static/demo/Tutorial/Getting Started/index.html index e0241e1d..242014b3 100644 --- a/static/demo/Tutorial/Getting Started/index.html +++ b/static/demo/Tutorial/Getting Started/index.html @@ -6,7 +6,7 @@

Web pages maps are easy-peasy

- + diff --git a/static/demo/embeded-demo.js b/static/demo/embeded-demo.js index 677d2b85..0bf9ade0 100644 --- a/static/demo/embeded-demo.js +++ b/static/demo/embeded-demo.js @@ -32,7 +32,7 @@ function plot() { let mapmlCSS = parser.parseFromString("" + rawTextCSS + "", "text/html").querySelector('map-style'); // Adding the CSS to each layer - let layers = mapml.querySelectorAll('layer-'); + let layers = mapml.querySelectorAll('map-layer'); for (i = 0; i < layers.length; ++i) { layers[i].appendChild(mapmlCSS); } @@ -55,7 +55,7 @@ window.onload = (event) => { let rawTextCSS = cssEditor.getValue(); let mapmlCSS = parser.parseFromString("" + rawTextCSS + "", "text/html").querySelector('map-style'); // Adding the CSS to each layer - let layers = mapml.querySelectorAll('layer-'); + let layers = mapml.querySelectorAll('map-layer'); for (i = 0; i < layers.length; ++i) { layers[i].appendChild(mapmlCSS); } diff --git a/static/demo/extent-demo/index.html b/static/demo/extent-demo/index.html index 819775ef..d2d2ca6b 100644 --- a/static/demo/extent-demo/index.html +++ b/static/demo/extent-demo/index.html @@ -32,14 +32,14 @@

MapML Demo: <map-extent>

diff --git a/static/demo/layer-demo/index.html b/static/demo/layer-demo/index.html index 882065c6..d9a274b8 100644 --- a/static/demo/layer-demo/index.html +++ b/static/demo/layer-demo/index.html @@ -19,7 +19,7 @@
-

MapML Demo: <layer->

+

MapML Demo: <map-layer>

@@ -32,8 +32,8 @@

MapML Demo: <layer->

diff --git a/static/demo/map-a-demo/index.html b/static/demo/map-a-demo/index.html index 0cda0949..80e3cb70 100644 --- a/static/demo/map-a-demo/index.html +++ b/static/demo/map-a-demo/index.html @@ -32,9 +32,9 @@

MapML Demo: <map-a>

diff --git a/static/demo/map-caption-demo/index.html b/static/demo/map-caption-demo/index.html index e8c00c5c..1182ddec 100644 --- a/static/demo/map-caption-demo/index.html +++ b/static/demo/map-caption-demo/index.html @@ -33,7 +33,7 @@

MapML Demo: <map-caption>

diff --git a/static/demo/map-datalist-demo/index.html b/static/demo/map-datalist-demo/index.html index 9ccec558..8ef1a664 100644 --- a/static/demo/map-datalist-demo/index.html +++ b/static/demo/map-datalist-demo/index.html @@ -32,14 +32,14 @@

MapML Demo: <map-datalist>

diff --git a/static/demo/map-feature-demo/index.html b/static/demo/map-feature-demo/index.html index 9ee0183b..15fd0aec 100644 --- a/static/demo/map-feature-demo/index.html +++ b/static/demo/map-feature-demo/index.html @@ -32,9 +32,9 @@

MapML Demo: <map-feature>

diff --git a/static/demo/map-geometry-demo/index.html b/static/demo/map-geometry-demo/index.html index 00e28f33..f5b2439b 100644 --- a/static/demo/map-geometry-demo/index.html +++ b/static/demo/map-geometry-demo/index.html @@ -32,8 +32,8 @@

MapML Demo: <map-geometry>

diff --git a/static/demo/map-input-demo/index.html b/static/demo/map-input-demo/index.html index 41707848..17c47e1d 100644 --- a/static/demo/map-input-demo/index.html +++ b/static/demo/map-input-demo/index.html @@ -32,7 +32,7 @@

MapML Demo: <map-input>

diff --git a/static/demo/map-link-demo/index.html b/static/demo/map-link-demo/index.html index 5ce687b7..5698c8fe 100644 --- a/static/demo/map-link-demo/index.html +++ b/static/demo/map-link-demo/index.html @@ -32,8 +32,8 @@

MapML Demo: <map-link>

diff --git a/static/demo/map-meta-demo/index.html b/static/demo/map-meta-demo/index.html index 00d206da..c9681d67 100644 --- a/static/demo/map-meta-demo/index.html +++ b/static/demo/map-meta-demo/index.html @@ -32,8 +32,8 @@

MapML Demo: <map-meta>

diff --git a/static/demo/map-properties-demo/index.html b/static/demo/map-properties-demo/index.html index 78080ea3..9bac86dd 100644 --- a/static/demo/map-properties-demo/index.html +++ b/static/demo/map-properties-demo/index.html @@ -32,8 +32,8 @@

MapML Demo: <map-properties>

diff --git a/static/demo/map-select-demo/index.html b/static/demo/map-select-demo/index.html index 58b7755e..2b25b525 100644 --- a/static/demo/map-select-demo/index.html +++ b/static/demo/map-select-demo/index.html @@ -32,8 +32,8 @@

MapML Demo: <map-select>

diff --git a/static/demo/map-span-demo/index.html b/static/demo/map-span-demo/index.html index 262ce911..e6aaad7f 100644 --- a/static/demo/map-span-demo/index.html +++ b/static/demo/map-span-demo/index.html @@ -32,8 +32,8 @@

MapML Demo: <map-span>

diff --git a/static/demo/map-style-demo/index.html b/static/demo/map-style-demo/index.html index c75a33c5..84b66fb4 100644 --- a/static/demo/map-style-demo/index.html +++ b/static/demo/map-style-demo/index.html @@ -32,8 +32,8 @@

MapML Demo: <map-style>

diff --git a/static/demo/mapml-demo/index.html b/static/demo/mapml-demo/index.html index f5ccdd6e..d136abc4 100644 --- a/static/demo/mapml-demo/index.html +++ b/static/demo/mapml-demo/index.html @@ -32,7 +32,7 @@

MapML Demo: <mapml->

diff --git a/static/demo/mapml-viewer-demo/index.html b/static/demo/mapml-viewer-demo/index.html index 8a173023..37df508f 100644 --- a/static/demo/mapml-viewer-demo/index.html +++ b/static/demo/mapml-viewer-demo/index.html @@ -32,7 +32,7 @@

MapML Demo: <mapml-viewer>

diff --git a/static/demo/sandbox/index.html b/static/demo/sandbox/index.html index f0458b15..5fe5b1ab 100644 --- a/static/demo/sandbox/index.html +++ b/static/demo/sandbox/index.html @@ -31,9 +31,9 @@