You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/layers/symbollayer/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ Connect a symbol to a data source, and use it to render an icon or a text at a g
4
4
5
5
Symbol layers are rendered using WebGL. Use a symbol layer to render large collections of points on the map. Compared to HTML marker, the symbol layer renders a large number of point data on the map, with better performance. However, the symbol layer doesn't support traditional CSS and HTML elements for styling.
Copy file name to clipboardExpand all lines: docs/layers/tilelayer/README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,14 @@
2
2
3
3
A Tile layer loads in tiles from a server. These images can either be pre-rendered or dynamically rendered. Pre-rendered images are stored like any other image on a server using a naming convention that the tile layer understands. Dynamically rendered images use a service to load the images close to real time.
CameraOptions="new CameraOptions { Center= new AzureMapsControl.Components.Atlas.Position(11.581990, 48.143534), Zoom= 10 }"
13
+
StyleOptions="StyleOptions"/>
14
+
15
+
@code {
16
+
public StyleOptions StyleOptions = new StyleOptions
17
+
{
18
+
Style = "grayscale_dark",
19
+
ShowLogo = false,
20
+
ShowFeedbackLink = false
21
+
};
22
+
}
17
23
```
18
24
19
25
Different inputs can be specified to customize the map. Please refer to the [Azure Maps Web SDK Documentation](https://docs.microsoft.com/en-us/azure/azure-maps/map-create) for more information.
@@ -85,18 +91,24 @@ The following example activates all the events except `Drag`, `Idle`, `MouseMove
0 commit comments