mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
14 lines
625 B
XML
14 lines
625 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.WPF"
|
|
Title="SurfaceApplication" WindowStyle="None" WindowState="Maximized">
|
|
<Grid>
|
|
<m:Map Center="53.5,8.2" ZoomLevel="11"
|
|
IsManipulationEnabled="True" TouchDown="MapTouchDown">
|
|
<m:MapGraticule Opacity="0.5" MinLineSpacing="200"/>
|
|
</m:Map>
|
|
</Grid>
|
|
</s:SurfaceWindow>
|