mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
15 lines
641 B
XML
15 lines
641 B
XML
<s:SurfaceWindow x:Class="SurfaceApplication.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:s="http://schemas.microsoft.com/surface/2008"
|
|
xmlns:m="clr-namespace:MapControl;assembly=MapControl"
|
|
Title="SurfaceApplication">
|
|
<Grid>
|
|
<m:Map Center="54,8" ZoomLevel="10"
|
|
LightForeground="Black" LightBackground="LightGray"
|
|
IsManipulationEnabled="True" TouchDown="MapTouchDown">
|
|
<m:MapGraticule Opacity="0.5" MinLineSpacing="200"/>
|
|
</m:Map>
|
|
</Grid>
|
|
</s:SurfaceWindow>
|