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/add-bubble-layer-map-ios.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ This article shows you how to render point data from a data source as a bubble l
19
19
20
20
## Prerequisites
21
21
22
-
Be sure to complete the steps in the [Quickstart: Create an iOS app](quick-ios-app.md) document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
22
+
Be sure to complete the steps in the [Quickstart: Create an iOS app] document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
23
23
24
24
## Add a bubble layer
25
25
@@ -102,3 +102,5 @@ See the following articles for more code samples to add to your maps:
Copy file name to clipboardExpand all lines: articles/azure-maps/add-heat-map-layer-ios.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,17 +25,17 @@ You can use heat maps in many different scenarios, including:
25
25
> [!TIP]
26
26
> Heat map layers by default render the coordinates of all geometries in a data source. To limit the layer so that it only renders point geometry features, set the `filter` option of the layer to `NSPredicate(format: "%@ == \"Point\"", NSExpression.geometryTypeAZMVariable)`. If you want to include MultiPoint features as well, use `NSCompoundPredicate`.
27
27
28
-
[Internet of Things Show - Heat Maps and Image Overlays in Azure Maps](/shows/internet-of-things-show/heat-maps-and-image-overlays-in-azure-maps/player?format=ny)
28
+
[Internet of Things Show - Heat Maps and Image Overlays in Azure Maps]
29
29
30
30
## Prerequisites
31
31
32
-
Be sure to complete the steps in the [Quickstart: Create an iOS app](quick-ios-app.md) document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
32
+
Be sure to complete the steps in the [Quickstart: Create an iOS app] document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
33
33
34
34
## Add a heat map layer
35
35
36
36
To render a data source of points as a heat map, pass your data source into an instance of the `HeatMapLayer` class, and add it to the map.
37
37
38
-
The following code sample loads a GeoJSON feed of earthquakes from the past week and renders them as a heat map. Each data point is rendered with a radius of 10 points at all zoom levels. To ensure a better user experience, the heat map is below the label layer so the labels stay clearly visible. The data in this sample is from the [USGS Earthquake Hazards Program](https://earthquake.usgs.gov/).
38
+
The following code sample loads a GeoJSON feed of earthquakes from the past week and renders them as a heat map. Each data point is rendered with a radius of 10 points at all zoom levels. To ensure a better user experience, the heat map is below the label layer so the labels stay clearly visible. The data in this sample is from the [USGS Earthquake Hazards Program].
39
39
40
40
```swift
41
41
// Create a data source.
@@ -209,5 +209,11 @@ The following video shows a map running the above code, which scales the radius
209
209
210
210
For more code examples to add to your maps, see the following articles:
211
211
212
-
- [Create a data source](create-data-source-ios-sdk.md)
[Internet of Things Show - Heat Maps and Image Overlays in Azure Maps]:/shows/internet-of-things-show/heat-maps-and-image-overlays-in-azure-maps/player?format=ny
Copy file name to clipboardExpand all lines: articles/azure-maps/add-image-layer-map-ios.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ The following screenshot shows a map of Newark, New Jersey, from 1922 overlaid u
70
70
71
71
## Import a KML file as ground overlay
72
72
73
-
This sample demonstrates how to add KML ground overlay information as an image layer on the map. KML ground overlays provide north, south, east, and west coordinates, and a counter-clockwise rotation. But, the image layer expects coordinates for each corner of the image. The KML ground overlay in this sample is for the Chartres cathedral, and it's sourced from [Wikimedia](https://commons.wikimedia.org/wiki/File:Chartres.svg/overlay.kml).
73
+
This sample demonstrates how to add KML ground overlay information as an image layer on the map. KML ground overlays provide north, south, east, and west coordinates, and a counter-clockwise rotation. But, the image layer expects coordinates for each corner of the image. The KML ground overlay in this sample is for the Chartres cathedral, and it's sourced from [Wikimedia].
74
74
75
75
```xml
76
76
<?xml version="1.0" encoding="UTF-8"?>
@@ -124,4 +124,7 @@ The following screenshot shows a map with a KML ground overlay overlaid using an
124
124
125
125
See the following article to learn more about ways to overlay imagery on a map.
Copy file name to clipboardExpand all lines: articles/azure-maps/add-line-layer-map-ios.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ A line layer can be used to render `LineString` and `MultiLineString` features a
19
19
20
20
## Prerequisites
21
21
22
-
Be sure to complete the steps in the [Quickstart: Create an iOS app](quick-ios-app.md) document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
22
+
Be sure to complete the steps in the [Quickstart: Create an iOS app] document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
23
23
24
24
## Add a line layer
25
25
@@ -241,6 +241,11 @@ The following screenshot shows the above code displaying a line with arrow icons
241
241
242
242
See the following articles for more code samples to add to your maps:
243
243
244
-
*[Create a data source](create-data-source-ios-sdk.md)
Copy file name to clipboardExpand all lines: articles/azure-maps/add-polygon-layer-map-ios.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ This article shows you how to render the areas of `Polygon` and `MultiPolygon` f
16
16
17
17
## Prerequisites
18
18
19
-
Be sure to complete the steps in the [Quickstart: Create an iOS app](quick-ios-app.md) document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
19
+
Be sure to complete the steps in the [Quickstart: Create an iOS app] document. Code blocks in this article can be inserted into the `viewDidLoad` function of `ViewController`.
20
20
21
21
## Use a polygon layer
22
22
@@ -134,7 +134,13 @@ The following is a screenshot of the above code rendering a polygon with a fill
134
134
135
135
See the following articles for more code samples to add to your maps:
136
136
137
-
-[Create a data source](create-data-source-ios-sdk.md)
0 commit comments