Skip to content

Commit cbd1f35

Browse files
authored
Merge pull request #113027 from stevemunk/end-links-1
end links #1
2 parents 6682a65 + c79af66 commit cbd1f35

File tree

5 files changed

+39
-17
lines changed

5 files changed

+39
-17
lines changed

articles/azure-maps/add-bubble-layer-map-ios.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This article shows you how to render point data from a data source as a bubble l
1919
2020
## Prerequisites
2121

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`.
2323

2424
## Add a bubble layer
2525

@@ -102,3 +102,5 @@ See the following articles for more code samples to add to your maps:
102102
- [Add a symbol layer](add-symbol-layer-ios.md)
103103
- [Use data-driven style expressions](data-driven-style-expressions-ios-sdk.md)
104104
- [Display feature information](display-feature-information-ios-sdk.md)
105+
106+
[Quickstart: Create an iOS app]: quick-ios-app.md

articles/azure-maps/add-heat-map-layer-ios.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ You can use heat maps in many different scenarios, including:
2525
> [!TIP]
2626
> 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`.
2727
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]
2929

3030
## Prerequisites
3131

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`.
3333

3434
## Add a heat map layer
3535

3636
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.
3737

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].
3939

4040
```swift
4141
// Create a data source.
@@ -209,5 +209,11 @@ The following video shows a map running the above code, which scales the radius
209209
210210
For more code examples to add to your maps, see the following articles:
211211
212-
- [Create a data source](create-data-source-ios-sdk.md)
213-
- [Use data-driven style expressions](data-driven-style-expressions-ios-sdk.md)
212+
- [Create a data source]
213+
- [Use data-driven style expressions]
214+
215+
[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
216+
[Quickstart: Create an iOS app]: quick-ios-app.md
217+
[USGS Earthquake Hazards Program]: https://earthquake.usgs.gov
218+
[Create a data source]: create-data-source-ios-sdk.md
219+
[Use data-driven style expressions]: data-driven-style-expressions-ios-sdk.md

articles/azure-maps/add-image-layer-map-ios.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The following screenshot shows a map of Newark, New Jersey, from 1922 overlaid u
7070

7171
## Import a KML file as ground overlay
7272

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].
7474

7575
```xml
7676
<?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
124124

125125
See the following article to learn more about ways to overlay imagery on a map.
126126

127-
* [Add a tile layer](add-tile-layer-map-ios.md)
127+
* [Add a tile layer]
128+
129+
[Wikimedia]: https://commons.wikimedia.org/wiki/File:Chartres.svg/overlay.kml
130+
[Add a tile layer]: add-tile-layer-map-ios.md

articles/azure-maps/add-line-layer-map-ios.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A line layer can be used to render `LineString` and `MultiLineString` features a
1919
2020
## Prerequisites
2121

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`.
2323

2424
## Add a line layer
2525

@@ -241,6 +241,11 @@ The following screenshot shows the above code displaying a line with arrow icons
241241

242242
See the following articles for more code samples to add to your maps:
243243

244-
* [Create a data source](create-data-source-ios-sdk.md)
245-
* [Use data-driven style expressions](data-driven-style-expressions-ios-sdk.md)
246-
* [Add a polygon layer](add-polygon-layer-map-ios.md)
244+
* [Create a data source]
245+
* [Use data-driven style expressions]
246+
* [Add a polygon layer]
247+
248+
[Quickstart: Create an iOS app]: quick-ios-app.md
249+
[Create a data source]: create-data-source-ios-sdk.md
250+
[Use data-driven style expressions]: data-driven-style-expressions-ios-sdk.md
251+
[Add a polygon layer]: add-polygon-layer-map-ios.md

articles/azure-maps/add-polygon-layer-map-ios.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This article shows you how to render the areas of `Polygon` and `MultiPolygon` f
1616

1717
## Prerequisites
1818

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`.
2020

2121
## Use a polygon layer
2222

@@ -134,7 +134,13 @@ The following is a screenshot of the above code rendering a polygon with a fill
134134

135135
See the following articles for more code samples to add to your maps:
136136

137-
- [Create a data source](create-data-source-ios-sdk.md)
138-
- [Use data-driven style expressions](data-driven-style-expressions-ios-sdk.md)
139-
- [Add a line layer](add-line-layer-map-ios.md)
140-
- [Add a polygon extrusion layer](add-polygon-extrusion-layer-map-ios.md)
137+
- [Create a data source]
138+
- [Use data-driven style expressions]
139+
- [Add a line layer]
140+
- [Add a polygon extrusion layer]
141+
142+
[Quickstart: Create an iOS app]: quick-ios-app.md
143+
[Create a data source]: create-data-source-ios-sdk.md
144+
[Use data-driven style expressions]: data-driven-style-expressions-ios-sdk.md
145+
[Add a line layer]: add-line-layer-map-ios.md
146+
[Add a polygon extrusion layer]: add-polygon-extrusion-layer-map-ios.md

0 commit comments

Comments
 (0)