You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-use-spatial-io-module.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: How to Use the Azure Maps Spatial IO Module
3
3
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.
5
5
author: sinnypan
6
6
ms.author: sipa
7
7
ms.date: 02/28/2020
@@ -12,12 +12,12 @@ ms.subservice: web-sdk
12
12
13
13
# How to use the Azure Maps Spatial IO module
14
14
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.
16
16
17
17
You can use the robust features in this module to:
18
18
19
19
-[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)].
21
21
- Query data in a Web Feature Service (WFS). For more information, see [Connect to a WFS service].
22
22
- Overlay complex data sets that contain style information, which can render automatically. For more information, see [Add a simple data layer].
23
23
- Use high-speed Extensible Markup Language (XML) and delimited file reader and writer classes. For more information, see [Core IO operations].
Copy file name to clipboardExpand all lines: articles/azure-maps/spatial-io-add-simple-data-layer.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Add a Simple Data Layer
3
3
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.
5
5
author: sinnypan
6
6
ms.author: sipa
7
7
ms.date: 06/19/2023
@@ -13,7 +13,7 @@ ms.subservice: web-sdk
13
13
14
14
# Add a simple data layer
15
15
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.
17
17
18
18
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.
19
19
@@ -133,13 +133,13 @@ For example, when parsing XML data feeds, you might not know the features' exact
133
133
> - All pointer lock functionality, top navigation functionality, scripts, and forms are disabled. Links can open in a new tab when selected.
134
134
> - Older browsers that don't support the `srcdoc` parameter on iFrames can only render a small amount of content.
135
135
>
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.
137
137
138
138
## Default supported style properties
139
139
140
140
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.
141
141
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.
143
143
144
144
[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.
145
145
@@ -157,7 +157,7 @@ If a feature is a `Point` or a `MultiPoint`, and the feature doesn't have an `im
0 commit comments