Skip to content

Commit 87bb454

Browse files
author
craigcaseyMSFT
committed
fix invalid author metadata
1 parent 7d05202 commit 87bb454

12 files changed

+38
-38
lines changed

articles/azure-maps/map-add-custom-html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Add an HTML Marker to map | Microsoft Azure Maps
33
description: In this article, you will learn about how to add an HTML Marker to a map using the Microsoft Azure Maps Web SDK.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 07/29/2019
77
ms.topic: conceptual

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

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Add a popup to a point on a map |Microsoft Azure Maps
33
description: In this article, you will learn how to add a popup to a point using the Microsoft Azure Maps Web SDK.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 02/27/2020
77
ms.topic: conceptual
@@ -124,14 +124,14 @@ new atlas.data.Feature(new atlas.data.Point([-20, -20]), {
124124
title: 'Template 1 - String template',
125125
value1: 1.2345678,
126126
value2: {
127-
subValue: 'Pizza'
127+
subValue: 'Pizza'
128128
},
129129
arrayValue: [3, 4, 5, 6],
130130
popupTemplate: {
131-
content: 'This template uses a string template with placeholders.<br/><br/> - Value 1 = {value1}<br/> - Value 2 = {value2/subValue}<br/> - Array value [2] = {arrayValue/2}',
132-
numberFormat: {
131+
content: 'This template uses a string template with placeholders.<br/><br/> - Value 1 = {value1}<br/> - Value 2 = {value2/subValue}<br/> - Array value [2] = {arrayValue/2}',
132+
numberFormat: {
133133
maximumFractionDigits: 2
134-
}
134+
}
135135
}
136136
}),
137137
```
@@ -150,41 +150,41 @@ new atlas.data.Feature(new atlas.data.Point([20, -20]), {
150150
url: 'https://aka.ms/AzureMapsSamples',
151151
152152
popupTemplate: {
153-
content: [{
153+
content: [{
154154
propertyPath: 'createDate',
155155
label: 'Created Date'
156156
},
157157
{
158158
propertyPath: 'dateNumber',
159159
label: 'Formatted date from number',
160160
dateFormat: {
161-
weekday: 'long',
162-
year: 'numeric',
163-
month: 'long',
164-
day: 'numeric',
165-
timeZone: 'UTC',
166-
timeZoneName: 'short'
161+
weekday: 'long',
162+
year: 'numeric',
163+
month: 'long',
164+
day: 'numeric',
165+
timeZone: 'UTC',
166+
timeZoneName: 'short'
167167
}
168168
},
169169
{
170170
propertyPath: 'url',
171171
label: 'Code samples',
172172
hideLabel: true,
173173
hyperlinkFormat: {
174-
lable: 'Go to code samples!',
175-
target: '_blank'
174+
lable: 'Go to code samples!',
175+
target: '_blank'
176176
}
177177
},
178178
{
179179
propertyPath: 'email',
180180
label: 'Email us',
181181
hideLabel: true,
182182
hyperlinkFormat: {
183-
target: '_blank',
184-
scheme: 'mailto:'
183+
target: '_blank',
184+
scheme: 'mailto:'
185185
}
186186
}
187-
]
187+
]
188188
}
189189
}),
190190

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Add a polygon layer to a map | Microsoft Azure Maps
33
description: In this article, you will learn how to render a polygon and multi polygon on a map in the Microsoft Azure Maps Web SDK.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 07/29/2019
77
ms.topic: conceptual
@@ -26,19 +26,19 @@ map.sources.add(dataSource);
2626

2727
//Create a rectangular polygon.
2828
dataSource.add(new atlas.data.Feature(
29-
new atlas.data.Polygon([[
30-
[-73.98235, 40.76799],
31-
[-73.95785, 40.80044],
32-
[-73.94928, 40.7968],
33-
[-73.97317, 40.76437],
34-
[-73.98235, 40.76799]
35-
]])
29+
new atlas.data.Polygon([[
30+
[-73.98235, 40.76799],
31+
[-73.95785, 40.80044],
32+
[-73.94928, 40.7968],
33+
[-73.97317, 40.76437],
34+
[-73.98235, 40.76799]
35+
]])
3636
));
3737

3838
//Create and add a polygon layer to render the polygon to the map, below the label layer.
3939
map.layers.add(new atlas.layer.PolygonLayer(dataSource, null,{
40-
fillColor: 'red',
41-
fillOpacity: 0.7
40+
fillColor: 'red',
41+
fillOpacity: 0.7
4242
}), 'labels');
4343
```
4444

articles/azure-maps/map-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create a map with Azure Maps | Microsoft Azure Maps
33
description: In this article, you'll learn how to render a map on a web page using the Microsoft Azure Maps Web SDK.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 07/26/2019
77
ms.topic: conceptual

articles/azure-maps/map-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Handle map events | Microsoft Azure Maps
33
description: In this article, you'll learn how to make an interactive Web SDK map with map events using the Microsoft Azure Maps web SDK.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 09/10/2019
77
ms.topic: conceptual

articles/azure-maps/map-get-information-from-coordinate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Show information about a coordinate on a map | Microsoft Azure Maps
33
description: Learn how to display information about an address on the map when a user selects a coordinate.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 07/29/2019
77
ms.topic: conceptual

articles/azure-maps/map-route.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Show route directions on a map | Microsoft Azure Maps
33
description: In this article, you'll learn how to display directions between two locations on a map using the Microsoft Azure Maps Web SDK.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 07/29/2019
77
ms.topic: conceptual

articles/azure-maps/map-search-location.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Show search results on a map | Microsoft Azure Maps
33
description: In this article, you'll learn how to perform a search request using Microsoft Azure Maps Web SDK and display the results on the map.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 07/29/2019
77
ms.topic: conceptual

articles/azure-maps/map-show-traffic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Show traffic on a map | Microsoft Azure Maps
33
description: In this article you will learn, how to display traffic data on a map using the Microsoft Azure Maps Web SDK.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 07/29/2019
77
ms.topic: conceptual

articles/azure-maps/render-coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Render coverage | Microsoft Azure Maps
33
description: In this article, learn about regions with Microsoft Azure Maps render coverage along with their level of rendered details.
4-
author: jingjing-z
4+
author: jinzh-azureiot
55
ms.author: jinzh
66
ms.date: 03/22/2019
77
ms.topic: conceptual

0 commit comments

Comments
 (0)