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: hub/apps/develop/launch/index.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,6 @@ This section describes how to use a URI to launch your Windows app.
23
23
|[Launch an app for results](/windows/uwp/launch-resume/how-to-launch-an-app-for-results)| Learn how to launch an app from another app and exchange data between the two. This is called launching an app for results. |
24
24
|[Launch the Windows Settings app](launch-settings-app.md)| Learn how to launch the Windows Settings app from your app. This topic describes the ms-settings URI scheme. Use this URI scheme to launch the Windows Settings app to specific settings pages. |
25
25
|[Launch the Microsoft Store app](launch-store-app.md)| This topic describes the ms-windows-store URI scheme. Your app can use this URI scheme to launch the Microsoft Store app to specific pages in the Store. |
26
-
|[Launch the Windows Maps app](launch-maps-app.md)| Learn how to launch the Windows Maps app from your app. |
27
26
|[Launch the People app](launch-people-app.md)| This topic describes the ms-people URI scheme. Your app can use this URI scheme to launch the People app for specific actions. |
28
27
|[Launch screen snipping](launch-screen-snipping.md)| Learn how to use URI schemes to open a new snip, or to open the Snip & Sketch app. |
29
28
|[Enable apps for websites using app URI handlers](web-to-app-linking.md)| Drive user engagement with your app by supporting the Apps for Websites feature. |
Copy file name to clipboardExpand all lines: hub/apps/develop/launch/launch-default-app.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,13 +160,18 @@ Use the **http:** URI scheme to launch the default web browser.
160
160
161
161
### Maps app URI schemes
162
162
163
-
Use the **bingmaps:**, **ms-drive-to:**, and **ms-walk-to:** URI schemes to [launch the Windows Maps app](launch-maps-app.md) to specific maps, directions, and search results. For example, the following URI opens the Windows Maps app and displays a map centered over New York City.
163
+
> [!IMPORTANT]
164
+
> The Windows Maps app is deprecated and will be removed from the Microsoft Store by July 2025. At this time, there will also be a final update to the app from the Store that makes it nonfunctional. If you remove the app before July 2025, you can still reinstall it from the Store, but past July 2025 you won't be able to reinstall it.
165
+
>
166
+
> For more inforatmion, see [Resources for deprecated features - Maps app](/windows/whats-new/deprecated-features-resources#maps-app).
167
+
168
+
Use the **bingmaps:**, **ms-drive-to:**, and **ms-walk-to:** URI schemes to launch the Windows Maps app to specific maps, directions, and search results. For example, the following URI opens the Windows Maps app and displays a map centered over New York City.
164
169
165
170
`bingmaps:?cp=40.726966~-74.006076`
166
171
167
172
:::image type="content" source="images/mapnyc.png" alt-text="A screenshot of the Windows Maps app.":::
168
173
169
-
For more info, see [Launch the Windows Maps app](launch-maps-app.md). To use the map control in your UWP app, see [Display maps with 2D, 3D, and Streetside views](/windows/uwp/maps-and-location/display-maps). If you're using Windows App SDK 1.5 or later in a WinUI app or other desktop app, you can use the [MapControl](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.mapcontrol).
174
+
To use the map control in your UWP app, see [Display maps with 2D, 3D, and Streetside views](/windows/uwp/maps-and-location/display-maps). If you're using Windows App SDK 1.5 or later in a WinUI app or other desktop app, you can use the [MapControl](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.mapcontrol).
Copy file name to clipboardExpand all lines: uwp/launch-resume/index.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,6 @@ The **Launch an app with a URI** section details how to use a Uniform Resource I
52
52
|[Choose and save tones using the ms-tonepicker URI scheme](launch-ringtone-picker.md)| This topic describes the ms-tonepicker URI scheme and how to use it to display a tone picker to select a tone, save a tone, and get the friendly name for a tone. |
53
53
|[Launch the Windows Settings app](/windows/apps/develop/launch/launch-settings-app)| Learn how to launch the Windows Settings app from your app. This topic describes the ms-settings URI scheme. Use this URI scheme to launch the Windows Settings app to specific settings pages. |
54
54
|[Launch the Microsoft Store app](/windows/apps/develop/launch/launch-store-app)| This topic describes the ms-windows-store URI scheme. Your app can use this URI scheme to launch the UWP app to specific pages in the Store. |
55
-
|[Launch the Windows Maps app](/windows/apps/develop/launch/launch-maps-app)| Learn how to launch the Windows Maps app from your app. |
56
55
|[Launch the People app](/windows/apps/develop/launch/launch-people-app)| This topic describes the ms-people URI scheme. Your app can use this URI scheme to launch the People app for specific actions. |
57
56
|[Support web-to-app linking with app URI handlers](/windows/apps/develop/launch/web-to-app-linking)| Drive user engagement with your app by using app URI handlers. |
Copy file name to clipboardExpand all lines: uwp/maps-and-location/display-maps.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,9 +90,6 @@ Use a map control to show rich and customizable map data in your app. A map cont
90
90
91
91
Use a map control when you want a map within your app that allows users to view app-specific or general geographic information. Having a map control in your app means that users don't have to go outside your app to get that information.
92
92
93
-
> [!NOTE]
94
-
> If you don't mind users going outside your app, consider using the Windows Maps app to provide that information. Your app can launch the Windows Maps app to display specific maps, directions, and search results. For more info, see [Launch the Windows Maps app](/windows/apps/develop/launch/launch-maps-app).
95
-
96
93
### Add a map control to your app
97
94
98
95
Display a map on a XAML page by adding a [**MapControl**](/uwp/api/Windows.UI.Xaml.Controls.Maps.MapControl). To use the **MapControl**, you must declare the [**Windows.UI.Xaml.Controls.Maps**](/uwp/api/Windows.UI.Xaml.Controls.Maps) namespace in the XAML page or in your code. If you drag the control from the Toolbox, this namespace declaration is added automatically. If you add the **MapControl** to the XAML page manually, you must add the namespace declaration manually at the top of the page.
Copy file name to clipboardExpand all lines: uwp/maps-and-location/index.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,12 +1,13 @@
1
1
---
2
2
title: Maps and location overview
3
-
description: This section explains how you can display maps, use map services, find the location, and set up a geofence in your app. This section also shows you how to launch the Windows Maps app to a specific map, route, or a set of turn-by-turn directions.
3
+
description: This section explains how you can display maps, use map services, find the location, and set up a geofence in your app.
4
4
ms.assetid: F4C1F094-CF46-4B15-9D80-C1A26A314521
5
5
ms.date: 05/27/2025
6
6
ms.topic: article
7
7
keywords: windows 10, uwp, map, location, map services
8
8
ms.localizationpriority: medium
9
9
---
10
+
10
11
# Maps and location overview
11
12
12
13
> [!IMPORTANT]
@@ -19,7 +20,12 @@ ms.localizationpriority: medium
19
20
>
20
21
> For more information, see the [Bing Maps Developer Center](https://www.bingmapsportal.com/) and [Bing Maps documentation](/bingmaps/getting-started/).
21
22
22
-
This section explains how you can display maps, use map services, find the location, and set up a geofence in your app. This section also shows you how to launch the Windows Maps app to a specific map, route, or a set of turn-by-turn directions.
23
+
> [!IMPORTANT]
24
+
> The Windows Maps app is deprecated and will be removed from the Microsoft Store by July 2025. At this time, there will also be a final update to the app from the Store that makes it nonfunctional. If you remove the app before July 2025, you can still reinstall it from the Store, but past July 2025 you won't be able to reinstall it.
25
+
>
26
+
> For more inforatmion, see [Resources for deprecated features - Maps app](/windows/whats-new/deprecated-features-resources#maps-app).
27
+
28
+
This section explains how you can display maps, use map services, find the location, and set up a geofence in your app.
23
29
24
30
[**MapControl**](/uwp/api/Windows.UI.Xaml.Controls.Maps.MapControl) and map services require a maps authentication key called a [**MapServiceToken**](/uwp/api/windows.ui.xaml.controls.maps.mapcontrol.mapservicetoken). For more info about getting and setting a maps authentication key, see [Request a maps authentication key](authentication-key.md).
25
31
@@ -59,12 +65,6 @@ Get the user's current location and be notified when the location changes in you
59
65
|[Design guidance for geofencing](guidelines-for-geofencing.md)| Performance guidelines for apps that utilize the geofencing feature. |
60
66
|[Set up a geofence](set-up-a-geofence.md)| Set up a geofence in your app, and learn how to handle notifications in the foreground and background. |
61
67
62
-
## Launch the Windows Maps app
63
-
64
-
Your app can launch the Windows Maps app as shown here to display specific maps and turn-by-turn directions. Rather than provide map functionality directly in your own app, consider using the Windows Maps app to provide that functionality. For more info, see [Launch the Windows Maps app](/windows/apps/develop/launch/launch-maps-app).
65
-
66
-

Copy file name to clipboardExpand all lines: uwp/maps-and-location/routes-and-directions.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,6 @@ ms.localizationpriority: medium
24
24
25
25
Request routes and directions, and display them in your app.
26
26
27
-
> [!NOTE]
28
-
> If mapping isn't a core feature of your app, consider launching the Windows Maps app instead. You can use the `bingmaps:`, `ms-drive-to:`, and `ms-walk-to:` URI schemes to launch the Windows Maps app to specific maps and turn-by-turn directions. For more info, see [Launch the Windows Maps app](/windows/apps/develop/launch/launch-maps-app).
29
-
30
27
## An intro to MapRouteFinder results
31
28
32
29
Here's how the classes for routes and directions are related:
0 commit comments