Skip to content

Commit 87e43c1

Browse files
authored
Merge pull request #268652 from stevemunk/iOS-deprecation-banner
Added deprecation/retirement banner for iOS articles.
2 parents e66a1ec + 8c8215e commit 87e43c1

22 files changed

+132
-6
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ services: azure-maps
1414

1515
This article shows you how to render point data from a data source as a bubble layer on a map. Bubble layers render points as circles on the map with a fixed point radius.
1616

17+
> [!NOTE]
18+
>
19+
> **Azure Maps iOS SDK retirement**
20+
>
21+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
22+
1723
> [!TIP]
1824
> Bubble layers by default will 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`.
1925

articles/azure-maps/add-controls-map-ios.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ services: azure-maps
1414

1515
This article shows you how to add UI controls to the map.
1616

17+
> [!NOTE]
18+
>
19+
> **Azure Maps iOS SDK retirement**
20+
>
21+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
22+
1723
## Add zoom control
1824

1925
A zoom control adds buttons for zooming the map in and out. The following code sample creates an instance of the `ZoomControl` class and adds it to a map.

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ services: azure-maps
1212

1313
# Add a heat map layer in the iOS SDK (Preview)
1414

15+
> [!NOTE]
16+
>
17+
> **Azure Maps iOS SDK retirement**
18+
>
19+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
20+
1521
Heat maps, also known as point density maps, are a type of data visualization. They're used to represent the density of data using a range of colors and show the data "hot spots" on a map. Heat maps are a great way to render datasets with large number of points.
1622

1723
Rendering tens of thousands of points as symbols can cover most of the map area. This case likely results in many symbols overlapping. Making it difficult to gain a better understanding of the data. However, visualizing this same dataset as a heat map makes it easy to see the density and the relative density of each data point.

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ services: azure-maps
1212

1313
# Add an image layer to a map in the iOS SDK (Preview)
1414

15+
> [!NOTE]
16+
>
17+
> **Azure Maps iOS SDK retirement**
18+
>
19+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
20+
1521
This article shows you how to overlay an image to a fixed set of coordinates. Here are a few examples of different images types that can be overlaid on maps:
1622

1723
* Images captured from drones

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ services: azure-maps
1212

1313
# Add a line layer to the map in the iOS SDK (Preview)
1414

15+
> [!NOTE]
16+
>
17+
> **Azure Maps iOS SDK retirement**
18+
>
19+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
20+
1521
A line layer can be used to render `LineString` and `MultiLineString` features as paths or routes on the map. A line layer can also be used to render the outline of `Polygon` and `MultiPolygon` features. A data source is connected to a line layer to provide it with data to render.
1622

1723
> [!TIP]

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ services: azure-maps
1414

1515
This article shows you how to use the polygon extrusion layer to render areas of `Polygon` and `MultiPolygon` feature geometries as extruded shapes.
1616

17+
> [!NOTE]
18+
>
19+
> **Azure Maps iOS SDK retirement**
20+
>
21+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
22+
1723
## Use a polygon extrusion layer
1824

1925
Connect the polygon extrusion layer to a data source. Then, loaded it on the map. The polygon extrusion layer renders the areas of a `Polygon` and `MultiPolygon` features as extruded shapes. The `height` and `base` properties of the polygon extrusion layer define the base distance from the ground and height of the extruded shape in **meters**. The following code shows how to create a polygon, add it to a data source, and render it using the Polygon extrusion layer class.

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ services: azure-maps
1414

1515
This article shows you how to render the areas of `Polygon` and `MultiPolygon` feature geometries on the map using a polygon layer.
1616

17+
> [!NOTE]
18+
>
19+
> **Azure Maps iOS SDK retirement**
20+
>
21+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
22+
1723
## Prerequisites
1824

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

articles/azure-maps/add-symbol-layer-ios.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ services: azure-maps
1414

1515
This article shows you how to render point data from a data source as a symbol layer on a map using the Azure Maps iOS SDK. Symbol layers render points as an image and text on the map.
1616

17+
> [!NOTE]
18+
>
19+
> **Azure Maps iOS SDK retirement**
20+
>
21+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
22+
1723
> [!TIP]
1824
> Symbol layers by default will 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`.
1925

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ services: azure-maps
1212

1313
# Add a tile layer to a map in the iOS SDK (Preview)
1414

15+
> [!NOTE]
16+
>
17+
> **Azure Maps iOS SDK retirement**
18+
>
19+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
20+
1521
This article shows you how to render a tile layer on a map using the Azure Maps iOS SDK. Tile layers allow you to superimpose images on top of Azure Maps base map tiles. More information on Azure Maps tiling system can be found in the [Zoom levels and tile grid] documentation.
1622

1723
A Tile layer loads in tiles from a server. These images can be prerendered and stored like any other image on a server, using a naming convention that the tile layer understands. Or, these images can be rendered with a dynamic service that generates the images near real time. There are three different tile service naming conventions supported by Azure Maps TileLayer class:

articles/azure-maps/clustering-point-data-ios-sdk.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ services: azure-maps
1212

1313
# Clustering point data in the iOS SDK (Preview)
1414

15+
> [!NOTE]
16+
>
17+
> **Azure Maps iOS SDK retirement**
18+
>
19+
> The Azure Maps Native SDK for iOS is now deprecated and will be retired on 3/31/25. To avoid service disruptions, migrate to the Azure Maps Web SDK by 3/31/25. For more information, see [The Azure Maps iOS SDK migration guide](ios-sdk-migration-guide.md).
20+
1521
When displaying many data points on the map, data points may overlap over each other. The overlap may cause the map may become unreadable and difficult to use. Clustering point data is the process of combining point data that are near each other and representing them on the map as a single clustered data point. As the user zooms into the map, the clusters break apart into their individual data points. When you work with large number of data points, use the clustering processes to improve your user experience.
1622

1723
[Internet of Things Show - Clustering point data in Azure Maps]

0 commit comments

Comments
 (0)