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/routing-coverage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ manager:
13
13
14
14
# Azure Maps routing coverage
15
15
16
-
This article provides coverage information for Azure Maps routing. When you search optimal route from location A to B, Azure Maps can provide highly accurate travel times, live updated travel information and route instructions. The route will take into account additional search terms such as current traffic, vehicle type and conditions to avoid. The ability to optimize the route depends on the region as Azure Maps has various levels of information and accuracy for different regions. The following table lists the regions and what kind of information you can request for them.
16
+
This article provides coverage information for Azure Maps routing. Upon a search query, Azure Maps returns an optimal route from location A to location B. You are provided with accurate travel times, live updates of travel information, and route instructions. You can also add additional search parameters such as current traffic, vehicle type, and conditions to avoid. The optimization of the route depends on the region. That's because, Azure Maps has various levels of information and accuracy for different regions. The following table lists the regions and what kind of information you can request for them.
17
17
18
18
Check out coverage for [**Geocoding**](geocoding-coverage.md).
19
19
Check out coverage for [**Traffic**](traffic-coverage.md).
Copy file name to clipboardExpand all lines: articles/azure-maps/set-android-map-styles.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Set a map style using Azure Maps Android SDK| Microsoft Azure Maps
3
-
description: In this article, you will learn about Microsoft Azure Maps stylerelated functionalities for the Android SDK.
3
+
description: In this article, you'll learn about Microsoft Azure Maps style-related functionalities for the Android SDK.
4
4
author: walsehgal
5
5
ms.author: v-musehg
6
6
ms.date: 04/26/2019
@@ -54,7 +54,7 @@ The `mapcontrol_style` attribute above sets the map style to **grayscale_dark**.
54
54
55
55
## Set map style in the activity class
56
56
57
-
Map style can be set in the activity class. Copy the following code snippet into the **onCreate()** method of your `MainActivity.java` class. This will set the map style to **satellite_road_labels**.
57
+
Map style can be set in the activity class. Copy the following code snippet into the **onCreate()** method of your `MainActivity.java` class. This code will set the map style to **satellite_road_labels**.
description: In this article, you will learn how to set drawing options data using the Microsoft Azure Maps Web SDK
4
4
author: walsehgal
5
5
ms.author: v-musehg
6
-
ms.date: 09/04/2019
6
+
ms.date: 01/29/2020
7
7
ms.topic: conceptual
8
8
ms.service: azure-maps
9
9
services: azure-maps
@@ -12,7 +12,7 @@ manager: philmea
12
12
13
13
# Use the drawing tools module
14
14
15
-
The Azure Maps Web SDK provides a *drawing tools module*. This module makes it easy to draw and edit shapes on the map using an input device such as a mouse our touch screen. The core class of this module is the [drawing manager](https://docs.microsoft.com/javascript/api/azure-maps-drawing-tools/atlas.drawing.drawingmanager?view=azure-node-latest#setoptions-drawingmanageroptions-) and provides all the capabilities needed to draw and edit shapes on the map. The drawing manager can be used directly and integrated with a custom toolbar UI or you can make use of the built-in [drawing toolbar](https://docs.microsoft.com/javascript/api/azure-maps-drawing-tools/atlas.control.drawingtoolbar?view=azure-node-latest) class.
15
+
The Azure Maps Web SDK provides a *drawing tools module*. This module makes it easy to draw and edit shapes on the map using an input device such as a mouse or touch screen. The core class of this module is the [drawing manager](https://docs.microsoft.com/javascript/api/azure-maps-drawing-tools/atlas.drawing.drawingmanager?view=azure-node-latest#setoptions-drawingmanageroptions-). The drawing manager provides all the capabilities needed to draw and edit shapes on the map. It can be used directly, and it's integrated with a custom toolbar UI. You can also use the built-in [drawing toolbar](https://docs.microsoft.com/javascript/api/azure-maps-drawing-tools/atlas.control.drawingtoolbar?view=azure-node-latest) class.
16
16
17
17
## Loading the drawing tools module in a webpage
18
18
@@ -25,7 +25,7 @@ The Azure Maps Web SDK provides a *drawing tools module*. This module makes it e
- Alternatively, load the drawing tools module for the Azure Maps Web SDK source code locally by using the [azure-maps-drawing-tools](https://www.npmjs.com/package/azure-maps-drawing-tools) npm package, and then host it with your app. This package also includes TypeScript definitions. Use this command:
28
+
- Or, you can load the drawing tools module for the Azure Maps Web SDK source code locally by using the [azure-maps-drawing-tools](https://www.npmjs.com/package/azure-maps-drawing-tools) npm package, and then host it with your app. This package also includes TypeScript definitions. Use this command:
29
29
30
30
> **npm install azure-maps-drawing-tools**
31
31
@@ -38,7 +38,7 @@ The Azure Maps Web SDK provides a *drawing tools module*. This module makes it e
38
38
39
39
## Use the drawing manager directly
40
40
41
-
Now that the drawing tools module has been loaded into your application you can use the [drawing manager](https://docs.microsoft.com/javascript/api/azure-maps-drawing-tools/atlas.drawing.drawingmanager?view=azure-node-latest#setoptions-drawingmanageroptions-) to enable drawing and editing capabilities within the map. You can specify options for the drawing manager while instantiating it or alternatively use the `drawingManager.setOptions()` function.
41
+
Once the drawing tools module is loaded in your application, you can enable drawing and editing capabilities using the [drawing manager](https://docs.microsoft.com/javascript/api/azure-maps-drawing-tools/atlas.drawing.drawingmanager?view=azure-node-latest#setoptions-drawingmanageroptions-). You can specify options for the drawing manager while instantiating it or alternatively use the `drawingManager.setOptions()` function.
42
42
43
43
### Set the drawing mode
44
44
@@ -79,7 +79,7 @@ drawingManager = new atlas.drawing.DrawingManager(map,{
79
79
});
80
80
```
81
81
82
-
Below is the code sample implementing the functionality that lets you draw a polygon on the map freely, while holding down the left mouse button and dragging it around.
82
+
This code sample implements the functionality of drawing a polygon on the map. Just hold down the left mouse button and dragging it around, freely.
Copy file name to clipboardExpand all lines: articles/azure-maps/supported-search-categories.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ manager:
14
14
15
15
# Azure Maps supported categories
16
16
17
-
When doing a [category search](https://docs.microsoft.com/rest/api/maps/search/getsearchpoicategory) for points of interest, there are over a hundred supported categories. Below is a list of the category codes for supported category names. Category codes are generated for toplevel categories. All sub categories share same category code. Please note that this category list is subject to change with new data releases.
17
+
When doing a [category search](https://docs.microsoft.com/rest/api/maps/search/getsearchpoicategory) for points of interest, there are over a hundred supported categories. Below is a list of the category codes for supported category names. Category codes are generated for top-level categories. All sub categories share same category code. This category list is subject to change with new data releases.
Copy file name to clipboardExpand all lines: articles/azure-maps/traffic-coverage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ manager: timlt
15
15
16
16
Azure Maps provides rich traffic information in the form of traffic **flow** and **incidents**. This data can be visualized on maps or used to generate smarter routes that factor in real driving conditions.
17
17
18
-
However, Maps does not have the same level of information and accuracy for all countries or regions. The following table provides information about what kind of traffic information you can request from each country or region:
18
+
However, Maps doesn't have the same level of information and accuracy for all countries or regions. The following table provides information about what kind of traffic information you can request from each country or region:
0 commit comments