Skip to content

Commit 1be2ed8

Browse files
authored
Merge pull request #108272 from stevemunk/how-to-render-custom-data
how-to-render-custom-data.md: Grammar improvements
2 parents 9e7cfde + 6cc4e24 commit 1be2ed8

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

articles/azure-maps/how-to-render-custom-data.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following are examples of custom data:
3030

3131
This article uses the [Postman] application, but you may use a different API development environment.
3232

33-
We'll use the Azure Maps [Data service] to store and render overlays.
33+
Use the Azure Maps [Data service] to store and render overlays.
3434

3535
## Render pushpins with labels and a custom image
3636

@@ -67,7 +67,7 @@ To get a static image with custom pins and labels:
6767
> [!NOTE]
6868
> The procedure in this section requires an Azure Maps account Gen 1 (S1) or Gen 2 pricing tier.
6969
70-
In this section, we'll upload path and pin data to Azure Map data storage.
70+
In this section, you upload path and pin data to Azure Map data storage.
7171
7272
To upload pins and path data:
7373
@@ -245,7 +245,7 @@ To render a polygon with color and opacity:
245245
> [!NOTE]
246246
> The procedure in this section requires an Azure Maps account Gen 1 (S1) or Gen 2 pricing tier.
247247
248-
You can modify the appearance of the pins by adding style modifiers. For example, to make pushpins and their labels larger or smaller, use the `sc` "scale style" modifier. This modifier takes a value that's greater than zero. A value of 1 is the standard scale. Values larger than 1 will make the pins larger, and values smaller than 1 will make them smaller. For more information about style modifiers, see [static image service path parameters].
248+
You can modify the appearance of the pins by adding style modifiers. For example, to make pushpins and their labels larger or smaller, use the `sc` "scale style" modifier. This modifier takes a value that's greater than zero. A value of 1 is the standard scale. Values larger than 1 makes the pins larger, and values smaller than 1 makes them smaller. For more information about style modifiers, see [static image service path parameters].
249249
250250
To render a circle and pushpins with custom labels:
251251
@@ -269,7 +269,7 @@ To render a circle and pushpins with custom labels:
269269
270270
:::image type="content" source="./media/how-to-render-custom-data/circle-custom-pins.png" alt-text="Render a circle with custom pushpins.":::
271271
272-
8. Now we'll change the color of the pushpins by modifying the `co` style modifier. If you look at the value of the `pins` parameter (`pins=default|la15+50|al0.66|lc003C62|co002D62|`), you'll see that the current color is `#002D62`. To change the color to `#41d42a`, we'll replace `#002D62` with `#41d42a`. Now the `pins` parameter is `pins=default|la15+50|al0.66|lc003C62|co41D42A|`. The request looks like the following URL:
272+
8. Next, change the color of the pushpins by modifying the `co` style modifier. If you look at the value of the `pins` parameter (`pins=default|la15+50|al0.66|lc003C62|co002D62|`), notice that the current color is `#002D62`. To change the color to `#41d42a`, replace `#002D62` with `#41d42a`. Now the `pins` parameter is `pins=default|la15+50|al0.66|lc003C62|co41D42A|`. The request looks like the following URL:
273273
274274
```HTTP
275275
https://atlas.microsoft.com/map/static/png?api-version=1.0&style=main&layer=basic&zoom=14&height=700&Width=700&center=-122.13230609893799,47.64599069048016&path=lcFF0000|lw2|la0.60|ra1000||-122.13230609893799 47.64599069048016&pins=default|la15+50|al0.66|lc003C62|co41D42A||'Microsoft Corporate Headquarters'-122.14131832122801 47.64690503939462|'Microsoft Visitor Center'-122.136828 47.642224|'Microsoft Conference Center'-122.12552547454833 47.642940335653996|'Microsoft The Commons'-122.13687658309935 47.64452336193245&subscription-key={Your-Azure-Maps-Subscription-key}
@@ -285,17 +285,20 @@ Similarly, you can change, add, and remove other style modifiers.
285285
286286
## Next steps
287287
288-
- Explore the [Azure Maps Get Map Image API] documentation.
289-
- To learn more about Azure Maps Data service, see the [service documentation].
288+
> [!div class="nextstepaction"]
289+
> [Render - Get Map Image]
290+
291+
> [!div class="nextstepaction"]
292+
> [Data service]
293+
290294
291295
[Azure Maps account]: quick-demo-map-app.md#create-an-azure-maps-account
292-
[Subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
293-
[Postman]: https://www.postman.com/
296+
[Render - Get Map Image]: /rest/api/maps/render/getmapimage
294297
[Data service]: /rest/api/maps/data
295-
[static image service]: /rest/api/maps/render/getmapimage
296298
[Data Upload]: /rest/api/maps/data-v2/upload
297-
[Render service]: /rest/api/maps/render/get-map-image
298299
[path parameter]: /rest/api/maps/render/getmapimage#uri-parameters
299-
[Azure Maps Get Map Image API]: /rest/api/maps/render/getmapimage
300-
[service documentation]: /rest/api/maps/data
300+
[Postman]: https://www.postman.com/
301+
[Render service]: /rest/api/maps/render/get-map-image
301302
[static image service path parameters]: /rest/api/maps/render/getmapimage#uri-parameters
303+
[static image service]: /rest/api/maps/render/getmapimage
304+
[Subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account

0 commit comments

Comments
 (0)