Skip to content

Commit c08f775

Browse files
committed
Map: Add note for deprecation of Bing and link to AzureMap SDK
1 parent d8128b6 commit c08f775

20 files changed

+51
-0
lines changed

controls/map/getting-started.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ The Telerik UI for WinForms assemblies can be install by using one of the availa
3434

3535
## Defining the RadMap
3636

37+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
38+
3739
Follow the steps:
3840

3941
1\. Create a new __Windows Application__ project.

controls/map/how-to/adding-pins-and-drawing-regions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 1
1010

1111
# Drawing Markers and Regions
1212

13+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
14+
1315
A common requirement for applications utilizing a map control is to allow the end users add pins on the map and draw regions on it. **RadMap** exposes the necessary API and it can be easily extended with such functionalities. The example in this how-to article will handle a scenario in which pins are being added on the map after double clicking on it. As soon as the count of the markers increases to three so that they form a figure a region will be created.
1416

1517
>caption Figure 1: RadMap Pins and Regions

controls/map/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ __RadMap__ can visualize tile data from the [Bing Maps](https://www.bingmapsport
2121

2222
## Key Features
2323

24+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
25+
2426
* Pan and Zoom
2527
* Bing Maps and OpenStreetMaps imagery services
2628
* Bing Maps Search, Route and Elevation services
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: Azure Map Custom Provider
3+
page_title: Azure Map Custom Provider - RadMap
4+
description: RadMap can visualize tile data from the Azure API services as well as from the local file system.
5+
slug: winforms/map/providers/azure
6+
tags: map, providers,azure
7+
published: True
8+
position: 1
9+
---
10+
11+
# Azure Map Custom Provider
12+
13+
As of June 30, 2025, [Bing Maps](https://www.bingmapsportal.com/) will be deprecated. To support this transition, we’ve provided an [SDK example in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider) that demonstrates how to create a custom provider leveraging the Azure Maps API. Developers intending to use this approach will need to obtain a valid Azure Maps subscription key.
14+

controls/map/providers/bingmaps/bingrestmapprovider.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 0
1010

1111
# BingRestMapProvider
1212

13+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
14+
1315
__RadMap__ can visualize tile data from the [Bing Maps](https://www.bingmapsportal.com/) REST service. You can enable tile caching to a local folder by setting a new __LocalFileCacheProvider__ to the BingRestMapProvider.__CacheProvider__ property.
1416

1517
>caption Figure 1: BingRestMapProvider

controls/map/providers/bingmaps/elevation/bounds.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 3
1010

1111
# Bounds ElevationType
1212

13+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
14+
1315
ElevationType.*Bounds* __ElevationRequest__ gets elevations at equally-spaced locations within an area on the Earth defined as a bounding box.
1416

1517
>caption Figure 1: Bounds ElevationRequest

controls/map/providers/bingmaps/elevation/elevation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 0
1010

1111
# Elevation
1212

13+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
14+
1315
The Bing Elevation service will enable you to query for elevation information for a set of points, polyline or a region on the Earth described by latitude and longitude pairs.
1416

1517
To use the Elevation API, it is necessary to create an __ElevationRequest__.

controls/map/providers/bingmaps/elevation/list.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 1
1010

1111
# List ElevationType
1212

13+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
14+
1315
ElevationType.*List* __ElevationRequest__ gets elevations for latitude and longitude coordinates. Elevations are returned for each set of coordinates.
1416

1517
>caption Figure 1: List ElevationRequest

controls/map/providers/bingmaps/elevation/polyline.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 2
1010

1111
# Polyline ElevationType
1212

13+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
14+
1315
ElevationType.*Polyline* __ElevationRequest__ gets elevations at equally-spaced locations along a polyline path. A polyline path is computed from the coordinates, and then elevation values at both endpoints and equally-spaced locations along the polyline are returned. The samples parameter specifies the number of elevations to return.
1416

1517
>caption Figure 1: Polyline ElevationRequest

controls/map/providers/bingmaps/elevation/sealevel.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ position: 4
99
---
1010
# SeaLevel ElevationType
1111

12+
>important Please note that [Bing Maps](https://www.bingmapsportal.com/) __will be deprecated effective June 30, 2025__. As an alternative, users can refer to the [SDK example available in our GitHub repository](https://github.com/telerik/winforms-sdk/tree/master/Map/Custom%20Azure%20Provider), which demonstrates how to create a __custom provider__ using the __Azure Maps API__. A __valid Azure Maps subscription key__ is required to use this functionality.
13+
1214
ElevationType.*SeaLevel* __ElevationRequest__ gets the offset of the geoid sea level Earth model from the ellipsoid Earth model at a set of latitude and longitude coordinates.
1315

1416
>caption Figure 1: SeaLevel ElevationRequest

0 commit comments

Comments
 (0)