Skip to content

Commit 22d8003

Browse files
authored
Merge pull request #102693 from farah-alyasari/report9
report9
2 parents 0be877d + e044de1 commit 22d8003

7 files changed

+30
-30
lines changed

articles/azure-maps/routing-coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ manager:
1313

1414
# Azure Maps routing coverage
1515

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.
1717

1818
Check out coverage for [**Geocoding**](geocoding-coverage.md).
1919
Check out coverage for [**Traffic**](traffic-coverage.md).

articles/azure-maps/set-android-map-styles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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 style related functionalities for the Android SDK.
3+
description: In this article, you'll learn about Microsoft Azure Maps style-related functionalities for the Android SDK.
44
author: walsehgal
55
ms.author: v-musehg
66
ms.date: 04/26/2019
@@ -54,7 +54,7 @@ The `mapcontrol_style` attribute above sets the map style to **grayscale_dark**.
5454

5555
## Set map style in the activity class
5656

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**.
5858

5959
```Java
6060
mapControl.onReady(map -> {

articles/azure-maps/set-drawing-options.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Drawing tools module | Microsoft Azure Maps
33
description: In this article, you will learn how to set drawing options data using the Microsoft Azure Maps Web SDK
44
author: walsehgal
55
ms.author: v-musehg
6-
ms.date: 09/04/2019
6+
ms.date: 01/29/2020
77
ms.topic: conceptual
88
ms.service: azure-maps
99
services: azure-maps
@@ -12,7 +12,7 @@ manager: philmea
1212

1313
# Use the drawing tools module
1414

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.
1616

1717
## Loading the drawing tools module in a webpage
1818

@@ -25,7 +25,7 @@ The Azure Maps Web SDK provides a *drawing tools module*. This module makes it e
2525
<script src="https://atlas.microsoft.com/sdk/javascript/drawing/0.1/atlas-drawing.min.js"></script>
2626
```
2727

28-
- 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:
2929

3030
> **npm install azure-maps-drawing-tools**
3131

@@ -38,7 +38,7 @@ The Azure Maps Web SDK provides a *drawing tools module*. This module makes it e
3838

3939
## Use the drawing manager directly
4040

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.
4242

4343
### Set the drawing mode
4444

@@ -79,7 +79,7 @@ drawingManager = new atlas.drawing.DrawingManager(map,{
7979
});
8080
```
8181

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.
8383

8484
<br/>
8585

articles/azure-maps/supported-search-categories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ manager:
1414

1515
# Azure Maps supported categories
1616

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. 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.
1818

1919
<br/>
2020

articles/azure-maps/traffic-coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ manager: timlt
1515

1616
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.
1717

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:
1919

2020
## Americas
2121

0 commit comments

Comments
 (0)