Skip to content

Commit 58cbb7e

Browse files
authored
Merge pull request #112598 from stevemunk/spatial-io-add-ogc-map-layer-grammar
Improved Acrolynx score, going from 91 to 100, and created end links in article: Add a map layer from OGC
2 parents 5db49ef + 5872a69 commit 58cbb7e

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

articles/azure-maps/spatial-io-add-ogc-map-layer.md

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ ms.service: azure-maps
1111

1212
# Add a map layer from the Open Geospatial Consortium (OGC)
1313

14-
The `atlas.layer.OgcMapLayer` class can overlay Web Map Services (WMS) imagery and Web Map Tile Services (WMTS) imagery on the map. WMS is a standard protocol developed by OGC for serving georeferenced map images over the internet. Image georeferencing is the processes of associating an image to a geographical location. WMTS is also a standard protocol developed by OGC. It's designed for serving pre-rendered and georeferenced map tiles.
14+
The `atlas.layer.OgcMapLayer` class can overlay Web Map Services (WMS) imagery and Web Map Tile Services (WMTS) imagery on the map. WMS is a standard protocol developed by OGC for serving georeferenced map images over the internet. Image georeferencing is the processes of associating an image to a geographical location. WMTS is also a standard protocol developed by OGC. It's designed for serving prerendered and georeferenced map tiles.
1515

16-
The following sections outline the web map service features that are supported by the `OgcMapLayer` class.
16+
The following sections outline the web map service features supported by the `OgcMapLayer` class.
1717

1818
**Web Map Service (WMS)**
1919

@@ -32,8 +32,8 @@ The following sections outline the web map service features that are supported b
3232

3333
- Supported versions: `1.0.0`
3434
- Tiles must be square, such that `TileWidth == TileHeight`.
35-
- CRS supported: `EPSG:3857` or `GoogleMapsCompatible`
36-
- TileMatrix identifier must be an integer value that corresponds to a zoom level on the map. On an azure map, the zoom level is a value between `"0"` and `"22"`. So, `"0"` is supported, but `"00"` isn't supported.
35+
- CRS supported: `EPSG:3857` or `GoogleMapsCompatible`
36+
- TileMatrix identifier must be an integer value that corresponds to a zoom level on the map. In Azure Maps, the zoom level is a value between `"0"` and `"22"`. So, `"0"` is supported, but `"00"` isn't supported.
3737
- Supported operations:
3838

3939
| Operation | Description |
@@ -66,7 +66,7 @@ The [OGC map layer options] sample demonstrates the different OGC map layer opti
6666

6767
The [OGC Web Map Service explorer] sample overlays imagery from the Web Map Services (WMS) and Web Map Tile Services (WMTS) as layers. You may select which layers in the service are rendered on the map. You may also view the associated legends for these layers. For the source code for this sample, see [OGC Web Map Service explorer source code].
6868

69-
:::image type="content" source="./media/spatial-io-add-ogc-map-layer/ogc-web-map-service-explorer.png"alt-text="A screenshot that shows a map with a WMTS layer that comes from the world geology survey. On the left of the map is a drop-down list showing the OGC services which can be selected.":::
69+
:::image type="content" source="./media/spatial-io-add-ogc-map-layer/ogc-web-map-service-explorer.png"alt-text="A screenshot that shows a map with a WMTS layer that comes from the world geology survey. Left of the map is a drop-down list showing the OGC services that can be selected.":::
7070

7171
<!----------------------------------------------
7272
<iframe height='750' scrolling='no' title='OGC Web Map Service explorer' src='//codepen.io/azuremaps/embed/YzXxYdX/?height=750&theme-id=0&default-tab=result&embed-version=2&editable=true' frameborder='no' allowtransparency='true' allowfullscreen='true'>See the Pen <a href='https://codepen.io/azuremaps/pen/YzXxYdX/'>OGC Web Map Service explorer</a> by Azure Maps (<a href='https://codepen.io/azuremaps'>@azuremaps</a>) on <a href='https://codepen.io'>CodePen</a>.</iframe>
@@ -79,26 +79,30 @@ You may also specify the map settings to use a proxy service. The proxy service
7979
Learn more about the classes and methods used in this article:
8080

8181
> [!div class="nextstepaction"]
82-
> [OgcMapLayer](/javascript/api/azure-maps-spatial-io/atlas.layer.ogcmaplayer)
82+
> [OgcMapLayer]
8383
8484
> [!div class="nextstepaction"]
85-
> [OgcMapLayerOptions](/javascript/api/azure-maps-spatial-io/atlas.ogcmaplayeroptions)
85+
> [OgcMapLayerOptions]
8686
8787
See the following articles, which contain code samples you could add to your maps:
8888

8989
> [!div class="nextstepaction"]
90-
> [Connect to a WFS service](spatial-io-connect-wfs-service.md)
90+
> [Connect to a WFS service]
9191
9292
> [!div class="nextstepaction"]
93-
> [Leverage core operations](spatial-io-core-operations.md)
93+
> [Leverage core operations]
9494
9595
> [!div class="nextstepaction"]
96-
> [Supported data format details](spatial-io-supported-data-format-details.md)
96+
> [Supported data format details]
9797
98-
[OGC map layer]: https://samples.azuremaps.com/spatial-io-module/ogc-map-layer-example
98+
[Connect to a WFS service]: spatial-io-connect-wfs-service.md
99+
[Leverage core operations]: spatial-io-core-operations.md
100+
[OGC map layer options source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Spatial%20IO%20Module/OGC%20map%20layer%20options/OGC%20map%20layer%20options.html
99101
[OGC map layer options]: https://samples.azuremaps.com/spatial-io-module/ogc-map-layer-options
100-
[OGC Web Map Service explorer]: https://samples.azuremaps.com/spatial-io-module/ogc-web-map-service-explorer
101-
102102
[OGC map layer source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Spatial%20IO%20Module/OGC%20map%20layer%20example/OGC%20map%20layer%20example.html
103-
[OGC map layer options source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Spatial%20IO%20Module/OGC%20map%20layer%20options/OGC%20map%20layer%20options.html
103+
[OGC map layer]: https://samples.azuremaps.com/spatial-io-module/ogc-map-layer-example
104104
[OGC Web Map Service explorer source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Spatial%20IO%20Module/OGC%20Web%20Map%20Service%20explorer/OGC%20Web%20Map%20Service%20explorer.html
105+
[OGC Web Map Service explorer]: https://samples.azuremaps.com/spatial-io-module/ogc-web-map-service-explorer
106+
[OgcMapLayer]: /javascript/api/azure-maps-spatial-io/atlas.layer.ogcmaplayer
107+
[OgcMapLayerOptions]: /javascript/api/azure-maps-spatial-io/atlas.ogcmaplayeroptions
108+
[Supported data format details]: spatial-io-supported-data-format-details.md

0 commit comments

Comments
 (0)