Skip to content

Commit b400f24

Browse files
authored
Merge pull request #107921 from rbrundritt/master
Fix minor bugs
2 parents 18de936 + c666c13 commit b400f24

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/azure-maps/data-driven-style-expressions-web-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ All examples in this document use the following feature to demonstrate different
6767
"subTitle": "Building 40",
6868
"temperature": 72,
6969
"title": "Cafeteria",
70-
"zoneColor": "red"
70+
"zoneColor": "red"
7171
}
7272
}
7373
```

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ dataSource.add(new atlas.data.Feature(
3535
]])
3636
));
3737

38-
//Create and add a polygon layer to render the polygon to the map.
38+
//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,{
4040
fillColor: 'red',
41-
opacaty: 0.5
42-
}));
41+
fillOpacity: 0.7
42+
}), 'labels');
4343
```
4444

4545
Below is the complete and running sample of the above code.

0 commit comments

Comments
 (0)