Skip to content

Commit c569070

Browse files
Merge pull request #107321 from stevemunk/here-links
changed linked text 'here' to something more descriptive.
2 parents 3384843 + 04b1fc3 commit c569070

9 files changed

+18
-18
lines changed

articles/azure-maps/drawing-requirements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ The `unitProperties` object contains a JSON array of unit properties.
261261
| Property | Type | Required | Description |
262262
|-----------|------|----------|-------------|
263263
|`unitName`|string|true|Name of unit to associate with this `unitProperty` record. This record is only valid when a label matching `unitName` is found in the `unitLabel` layers. |
264-
|`categoryName`|string|false|Purpose of the unit. A list of values that the provided rendering styles can make use of is available [here](https://atlas.microsoft.com/sdk/javascript/indoor/0.1/categories.json).|
264+
|`categoryName`|string|false|Purpose of the unit. A list of values that the provided rendering styles can make use of is documented in [categories.json](https://atlas.microsoft.com/sdk/javascript/indoor/0.1/categories.json).|
265265
|`occupants`|array of directoryInfo objects |false |List of occupants for the unit. |
266266
|`nameAlt`|string|false|Alternate name of the unit. |
267267
|`nameSubtitle`|string|false|Subtitle of the unit. |
@@ -279,7 +279,7 @@ The `zoneProperties` object contains a JSON array of zone properties.
279279
| Property | Type | Required | Description |
280280
|-----------|------|----------|-------------|
281281
|zoneName |string |true |Name of zone to associate with `zoneProperty` record. This record is only valid when a label matching `zoneName` is found in the `zoneLabel` layer of the zone. |
282-
|categoryName| string| false |Purpose of the zone. A list of values that the provided rendering styles can make use of is available [here](https://atlas.microsoft.com/sdk/javascript/indoor/0.1/categories.json).|
282+
|categoryName| string| false |Purpose of the zone. A list of values that the provided rendering styles can make use of is documented in [categories.json](https://atlas.microsoft.com/sdk/javascript/indoor/0.1/categories.json).|
283283
|zoneNameAlt| string| false |Alternate name of the zone. |
284284
|zoneNameSubtitle| string | false |Subtitle of the zone. |
285285
|zoneSetId| string | false | Set ID to establish a relationship among multiple zones so that they can be queried or selected as a group. For example, zones that span multiple levels. |

articles/azure-maps/how-to-use-map-control.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: devx-track-js
1515

1616
The Map Control client-side JavaScript library allows you to render maps and embedded Azure Maps functionality into your web or mobile application.
1717

18-
This documentation uses the Azure Maps Web SDK, however the Azure Maps services can be used with any map control. [Here](open-source-projects.md#third-part-map-control-plugins) are some popular open-source map controls that the Azure Maps team has created plugin's for.
18+
This article uses the Azure Maps Web SDK, however the Azure Maps services work with any map control. For a list of third-party map control plug-ins, see [Azure Maps community - Open-source projects](open-source-projects.md#third-part-map-control-plugins).
1919

2020
## Prerequisites
2121

@@ -122,7 +122,7 @@ You can embed a map in a web page by using the Map Control client-side JavaScrip
122122
</script>
123123
```
124124

125-
For more information about authentication with Azure Maps, see the [Authentication with Azure Maps](azure-maps-authentication.md) document. Also, a list of samples showing how to integrate Azure Active Directory (AAD) with Azure Maps can be found [here](https://github.com/Azure-Samples/Azure-Maps-AzureAD-Samples).
125+
For more information about authentication with Azure Maps, see the [Authentication with Azure Maps](azure-maps-authentication.md) document. For a list of samples showing how to integrate Azure Active Directory (AAD) with Azure Maps, see [Azure Maps & Azure Active Directory Samples](https://github.com/Azure-Samples/Azure-Maps-AzureAD-Samples) in GitHub.
126126

127127
>[!TIP]
128128
>In this example, we've passed in the `id` of the map `<div>`. Another way to do this is to pass in the `HTMLElement` object by passing`document.getElementById('myMap')` as the first parameter.
@@ -227,7 +227,7 @@ Here is an example of Azure Maps with the language set to "fr-FR" and the region
227227

228228
![Map image showing labels in French](./media/how-to-use-map-control/websdk-localization.png)
229229

230-
A complete list of supported languages and regional views is documented [here](supported-languages.md).
230+
For a list of supported languages and regional views, see [Localization support in Azure Maps](supported-languages.md).
231231

232232
## Azure Government cloud support
233233

articles/azure-maps/map-accessibility.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ ms.service: azure-maps
1010

1111
# Building an accessible application
1212

13-
Upwards of 20% of internet users have a need for accessible web applications. As such, it's important to make sure your application is designed such that any user can easily use it. Rather than thinking of accessibility as a set of tasks to complete, think of it as part of your overall user experience. The more accessible your application, the more people who can use it.
13+
Upwards of 20% of internet users have a need for accessible web applications. As such, it's important to make sure your application is designed such that any user can easily use it. Rather than thinking of accessibility as a set of tasks to complete, think of it as part of your overall user experience. The more accessible your application, the more people who can use it.
1414

1515
When it comes to rich interactive content like a map, some common accessibility considerations are:
1616
- Support the screen reader for users who have difficulty seeing the web application.
1717
- Have multiple methods for interacting with and navigating the web application such as mouse, touch, and keyboard.
18-
- Ensure color contrast is such that colors don't blend together and become hard to distinguish from each other.
18+
- Ensure color contrast is such that colors don't blend together and become hard to distinguish from each other.
1919

2020
The Azure Maps Web SDK comes prebuilt with many accessibility features such as:
2121
- Screen reader descriptions when the map moves and when the user focuses on a control or popup.
2222
- Mouse, touch, and keyboard support.
2323
- Accessible color contrast support in the road map style.
2424
- High contrast support.
2525

26-
Full accessibility conformance details for all Microsoft products can be found [here](https://cloudblogs.microsoft.com/industry-blog/government/2018/09/11/accessibility-conformance-reports/). Search for "Azure Maps web" to find the document specifically for the Azure Maps Web SDK.
26+
For accessibility conformance details for all Microsoft products, see [Accessibility Conformance Reports](https://cloudblogs.microsoft.com/industry-blog/government/2018/09/11/accessibility-conformance-reports/). Search for "Azure Maps web" to find the document specifically for the Azure Maps Web SDK.
2727

2828
## Navigating the map
2929

@@ -49,16 +49,16 @@ There are several different ways in which the map can be zoomed, panned, rotated
4949

5050
**Rotate the map**
5151

52-
- Using a mouse, press down with the right mouse button on the map and drag left or right.
52+
- Using a mouse, press down with the right mouse button on the map and drag left or right.
5353
- Using a touch screen, touch the map with two fingers and rotate.
5454
- With the map focused, use the shift key and the left or right arrow keys.
5555
- Using the rotation control with a mouse, touch or keyboard tab/enter keys.
5656

5757
**Pitch the map**
5858

59-
- Using the mouse, press down with the right mouse button on the map and drag up or down.
59+
- Using the mouse, press down with the right mouse button on the map and drag up or down.
6060
- Using a touch screen, touch the map with two fingers and drag them up or down together.
61-
- With the map focused, use the shift key plus the up or down arrow keys.
61+
- With the map focused, use the shift key plus the up or down arrow keys.
6262
- Using the pitch control with a mouse, touch or keyboard tab/enter keys.
6363

6464
## Change the Map Style

articles/azure-maps/map-add-shape.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The Polygon layer only has a few styling options. Here is a tool to try them out
8484

8585
## Add a circle to the map
8686

87-
Azure Maps uses an extended version of the GeoJSON schema that provides a definition for circles, as noted [here](extend-geojson.md#circle). A circle is rendered on the map by creating a `Point` feature. This `Point` has a `subType` property with a value of `"Circle"` and a `radius` property with a number that represents the radius in meters.
87+
Azure Maps uses an extended version of the GeoJSON schema that provides a [definition for circles](extend-geojson.md#circle). A circle is rendered on the map by creating a `Point` feature. This `Point` has a `subType` property with a value of `"Circle"` and a `radius` property with a number that represents the radius in meters.
8888

8989
```javascript
9090
{

articles/azure-maps/map-extruded-polygon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A choropleth map can be rendered using the polygon extrusion layer. Set the `hei
3737

3838
## Add a circle to the map
3939

40-
Azure Maps uses an extended version of the GeoJSON schema that provides a definition for circles as noted [here](./extend-geojson.md#circle). An extruded circle can be rendered on the map by creating a `point` feature with a `subType` property of `Circle` and a numbered `Radius` property representing the radius in **meters**. For example:
40+
Azure Maps uses an extended version of the GeoJSON schema that provides a [definition for circles] (./extend-geojson.md#circle). An extruded circle can be rendered on the map by creating a `point` feature with a `subType` property of `Circle` and a numbered `Radius` property representing the radius in **meters**. For example:
4141

4242
```javascript
4343
{

articles/azure-maps/migrate-from-bing-maps-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Running this code in a browser displays a map that looks like the following imag
238238

239239
![Azure Maps map](media/migrate-bing-maps-web-app/azure-maps-load-map.jpg)
240240

241-
Detailed documentation on how to set up and use the Azure Maps map control in a web app can be found [here](how-to-use-map-control.md).
241+
For more information on how to set up and use the Azure Maps map control in a web app, see [Use the Azure Maps map control].
242242

243243
> [!TIP]
244244
> Azure Maps publishes both minified and unminified versions of the SDK. Remove `.min` from the file names. The unminified version is useful when debugging issues but be sure to use the minified version in production to take advantage of the smaller file size.

articles/azure-maps/open-source-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The following is a list of open-source projects that extend the capabilities of
7575
| [Azure Maps Docs](https://github.com/MicrosoftDocs/azure-docs/tree/master/articles/azure-maps) | Source for all Azure Location Based Services documentation. |
7676
| [Azure Maps Creator Tools](https://github.com/Azure-Samples/AzureMapsCreator) | Python tools for Azure Maps Creator Tools. |
7777

78-
A longer list of open-source projects for Azure Maps that includes community created projects is available [here](https://github.com/microsoft/Maps/blob/master/AzureMaps.md)
78+
For a more complete list of open-source projects for Azure Maps that includes community created projects, see [Azure Maps Open Source Projects](https://github.com/microsoft/Maps/blob/master/AzureMaps.md) in GitHub.
7979

8080
## Supportability of open-source projects
8181

articles/azure-maps/supported-browsers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ You might want to target older browsers that don't support WebGL or that have on
6565
(<a href='https://codepen.io/azuremaps'>@azuremaps</a>) on <a href='https://codepen.io'>CodePen</a>.
6666
</iframe>
6767

68-
Additional code samples using Azure Maps in Leaflet can be found [here](https://samples.azuremaps.com/?search=leaflet).
68+
For code samples using Azure Maps in Leaflet, see [Azure Maps Samples](https://samples.azuremaps.com/?search=leaflet).
6969

70-
[Here](open-source-projects.md#third-part-map-control-plugins) are some popular open-source map controls that the Azure Maps team has created plugin's for.
70+
For a list of third-party map control plug-ins, see [Azure Maps community - Open-source projects](open-source-projects.md#third-part-map-control-plugins).
7171

7272
## Next steps
7373

articles/azure-maps/weather-service-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import aiohttp
5454

5555
## Import weather data
5656

57-
For the sake of this tutorial, we'll use weather data readings from sensors installed at four different wind turbines. The sample data consists of 30 days of weather readings. These readings are gathered from weather data centers near each turbine location. The demo data contains data readings for temperature, wind speed and, direction. You can download the demo data from [here](https://github.com/Azure-Samples/Azure-Maps-Jupyter-Notebook/tree/master/AzureMapsJupyterSamples/Tutorials/Analyze%20Weather%20Data/data). The script below imports demo data to the Azure Notebook.
57+
For the sake of this tutorial, we'll use weather data readings from sensors installed at four different wind turbines. The sample data consists of 30 days of weather readings. These readings are gathered from weather data centers near each turbine location. The demo data contains data readings for temperature, wind speed and, direction. You can download the demo data contained in [weather_dataset_demo.csv](https://github.com/Azure-Samples/Azure-Maps-Jupyter-Notebook/tree/master/AzureMapsJupyterSamples/Tutorials/Analyze%20Weather%20Data/data) from GitHub. The script below imports demo data to the Azure Notebook.
5858

5959
```python
6060
df = pd.read_csv("./data/weather_dataset_demo.csv")

0 commit comments

Comments
 (0)