Skip to content

Commit 53a9957

Browse files
committed
articles-about-the-spatial-io-module
1 parent 1519e5a commit 53a9957

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

articles/azure-maps/how-to-use-spatial-io-module.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: How to Use the Azure Maps Spatial IO Module
33
titleSuffix: Microsoft Azure Maps
4-
description: Learn how to easily integrate spatial data with the Azure Maps Web SDK by using the Spatial IO Module.
4+
description: Learn how to use the Azure Maps Spatial IO module to integrate spatial data with the Azure Maps Web SDK.
55
author: sinnypan
66
ms.author: sipa
77
ms.date: 02/28/2020
@@ -12,12 +12,12 @@ ms.subservice: web-sdk
1212

1313
# How to use the Azure Maps Spatial IO module
1414

15-
The Azure Maps Web SDK provides the [Spatial IO module], which integrates spatial data with the Azure Maps Web SDK using JavaScript or TypeScript. This guide demonstrates how to integrate and use the Spatial IO module in a web application.
15+
The Azure Maps [Spatial IO module] integrates spatial data with the Azure Maps Web SDK using JavaScript or TypeScript. This guide demonstrates how to integrate and use the Spatial IO module in a web application.
1616

1717
You can use the robust features in this module to:
1818

1919
- [Read and write spatial data].
20-
- Connect to Open Geospatial Consortium (OGC) services and integrate with Azure Maps Web SDK. You can also overlay Web Map Services (WMS) and Web Map Tile Services (WMTS) as layers on the map. For more information, see [Add a map layer from the Open Geospatial Consortium (OGC)].
20+
- Connect to Open Geospatial Consortium (OGC) services and integrate with the Azure Maps Web SDK. You can also overlay Web Map Services (WMS) and Web Map Tile Services (WMTS) as layers on the map. For more information, see [Add a map layer from the Open Geospatial Consortium (OGC)].
2121
- Query data in a Web Feature Service (WFS). For more information, see [Connect to a WFS service].
2222
- Overlay complex data sets that contain style information, which can render automatically. For more information, see [Add a simple data layer].
2323
- Use high-speed Extensible Markup Language (XML) and delimited file reader and writer classes. For more information, see [Core IO operations].

articles/azure-maps/spatial-io-add-simple-data-layer.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Add a Simple Data Layer
33
titleSuffix: Microsoft Azure Maps
4-
description: Learn how to add a simple data layer using the Spatial IO module, provided by Azure Maps Web SDK.
4+
description: Learn how to add a simple data layer using the Spatial IO module provided by the Azure Maps Web SDK.
55
author: sinnypan
66
ms.author: sipa
77
ms.date: 06/19/2023
@@ -13,7 +13,7 @@ ms.subservice: web-sdk
1313

1414
# Add a simple data layer
1515

16-
The spatial IO module provides a `SimpleDataLayer` class. This class makes it easy to render styled features on a map. It can even render data sets that have style properties and data sets that contain mixed geometry types.
16+
The Azure Maps Web SDK provides a Spatial IO module which includes a `SimpleDataLayer` class. This class makes it easy to render styled features on a map. It can even render data sets that have style properties and data sets that contain mixed geometry types.
1717

1818
The simple data layer achieves this functionality by wrapping multiple rendering layers and by using style expressions. The style expressions search wrapped layers for common style properties. The `atlas.io.read` and `atlas.io.write` functions use these properties to read and write styles into a supported file format. When properties are added to a supported file format, the file can be used for purposes like displaying styled features on a map.
1919

@@ -133,13 +133,13 @@ For example, when parsing XML data feeds, you might not know the features' exact
133133
> - All pointer lock functionality, top navigation functionality, scripts, and forms are disabled. Links can open in a new tab when selected.
134134
> - Older browsers that don't support the `srcdoc` parameter on iFrames can only render a small amount of content.
135135
>
136-
> If you trust the data loaded into the pop-ups, and want popup scripts to be able to access your application, you can disable this feature. Just set the `sandboxContent` option in the popup template to false.
136+
> If you trust the data loaded into the pop-ups, and want the popup scripts to be able to access your application, you can disable this feature. Just set the `sandboxContent` option in the popup template to false.
137137
138138
## Default supported style properties
139139

140140
The simple data layer wraps several of the core rendering layers: bubble, symbol, line, polygon, and extruded polygon. It uses expressions to search for valid style properties on individual features.
141141

142-
The two main sets of supported property names are Azure Maps and GitHub. Most property names of Azure Maps layer options are supported in the simple data layer as style properties of features. Some layer options include expressions that support style property names that are commonly used by GitHub.
142+
The two main sets of supported property names are Azure Maps and GitHub. Most property names of Azure Maps layer options are supported in the simple data layer as style properties of features. Some layer options include expressions that support style property names that are commonly used by GitHub.
143143

144144
[GitHub's GeoJSON map support] defines these property names, which are used to style GeoJSON files that are stored and rendered within the platform. Most of GitHub's styling properties are supported in the simple data layer, except the `marker-symbol` styling properties.
145145

@@ -157,7 +157,7 @@ If a feature is a `Point` or a `MultiPoint`, and the feature doesn't have an `im
157157
| `radius` | `size`<sup>1</sup>, `marker-size`<sup>2</sup>, `scale`<sup>1</sup> | `8` |
158158
| `strokeColor` | `strokeColor`, `stroke` | `'#FFFFFF'` |
159159

160-
<sup>1</sup> The `size` and `scale` values are considered scalar values, and are multiplied by `8`
160+
<sup>1</sup> The `size` and `scale` values are considered scalar values, and are multiplied by `8`.
161161

162162
<sup>2</sup> If the GitHub `marker-size` option is specified, the following values are used for the radius:
163163

@@ -187,7 +187,7 @@ If a feature is a `Point` or `MultiPoint`, and the feature has an `image` proper
187187
| `offset` | `offset` | `[0, 0]` |
188188
| `anchor` | `anchor` | `'bottom'` |
189189

190-
<sup>1</sup> If the GitHub `marker-size` option is specified, the following values are used for the icon size option.
190+
<sup>1</sup> If the GitHub `marker-size` option is specified, the following values are used for the icon size option:
191191

192192
| Marker size | Symbol size |
193193
|-------------|-------------|
@@ -239,7 +239,7 @@ See the following articles to get more code samples to add to your maps:
239239
- [Add an OGC map layer]
240240
- [Connect to a WFS service]
241241
- [Use core operations]
242-
- [Supported data format details]
242+
- [Get details about supported data formats]
243243

244244
[Add an OGC map layer]: spatial-io-add-ogc-map-layer.md
245245
[Connect to a WFS service]: spatial-io-connect-wfs-service.md
@@ -251,4 +251,4 @@ See the following articles to get more code samples to add to your maps:
251251
[Simple data layer options]: https://samples.azuremaps.com/spatial-io-module/simple-data-layer-options
252252
[SimpleDataLayer]: /javascript/api/azure-maps-spatial-io/atlas.layer.simpledatalayer
253253
[SimpleDataLayerOptions]: /javascript/api/azure-maps-spatial-io/atlas.simpledatalayeroptions
254-
[Supported data format details]: spatial-io-supported-data-format-details.md
254+
[Get details about supported data formats]: spatial-io-supported-data-format-details.md

0 commit comments

Comments
 (0)