mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
194 lines
12 KiB
XML
194 lines
12 KiB
XML
<Page
|
|
x:Class="StoreApplication.MainPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:map="using:MapControl"
|
|
xmlns:vm="using:ViewModel"
|
|
xmlns:local="using:StoreApplication"
|
|
mc:Ignorable="d">
|
|
<Page.Resources>
|
|
<map:TileLayerCollection x:Key="TileLayers">
|
|
<map:TileLayer SourceName="OpenStreetMap" Description="© {y} OpenStreetMap Contributors, CC-BY-SA"
|
|
TileSourceUriFormat="http://{c}.tile.openstreetmap.org/{z}/{x}/{y}.png"/>
|
|
<map:TileLayer SourceName="OpenCycleMap" Description="OpenCycleMap - © {y} Andy Allen & OpenStreetMap Contributors, CC-BY-SA"
|
|
TileSourceUriFormat="http://{c}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png"/>
|
|
<map:TileLayer SourceName="OCM Transport" Description="OpenCycleMap Transport - © {y} Andy Allen & OpenStreetMap Contributors, CC-BY-SA"
|
|
TileSourceUriFormat="http://{c}.tile2.opencyclemap.org/transport/{z}/{x}/{y}.png"/>
|
|
<map:TileLayer SourceName="OCM Landscape" Description="OpenCycleMap Landscape - © {y} Andy Allen & OpenStreetMap Contributors, CC-BY-SA"
|
|
TileSourceUriFormat="http://{c}.tile3.opencyclemap.org/landscape/{z}/{x}/{y}.png"/>
|
|
<map:TileLayer SourceName="MapQuest OSM" Description="MapQuest OSM - © {y} MapQuest & OpenStreetMap Contributors"
|
|
TileSourceUriFormat="http://otile{n}.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.png"/>
|
|
<map:TileLayer SourceName="Seamarks" Description="© {y} OpenSeaMap Contributors, CC-BY-SA"
|
|
TileSourceUriFormat="http://tiles.openseamap.org/seamark/{z}/{x}/{y}.png" MinZoomLevel="10" MaxZoomLevel="18"/>
|
|
</map:TileLayerCollection>
|
|
<DataTemplate x:Key="PolylineItemTemplate">
|
|
<map:MapPolyline Locations="{Binding Locations}" Stroke="Red" StrokeThickness="3"/>
|
|
</DataTemplate>
|
|
<Style x:Key="PolylineItemStyle" TargetType="map:MapItem">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="map:MapItem">
|
|
<map:MapPolyline Locations="{Binding Locations}" Stroke="Red" StrokeThickness="3"/>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
<Style x:Key="PointItemStyle" TargetType="map:MapItem">
|
|
<Setter Property="local:BindingHelper.LocationPath" Value="Location"/>
|
|
<Setter Property="Foreground" Value="Black"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="map:MapItem">
|
|
<Canvas>
|
|
<VisualStateManager.VisualStateGroups>
|
|
<VisualStateGroup x:Name="CommonStates">
|
|
<VisualState x:Name="Normal"/>
|
|
<VisualState x:Name="Disabled"/>
|
|
<VisualState x:Name="PointerOver">
|
|
<Storyboard>
|
|
<DoubleAnimation Storyboard.TargetName="labelBackground" Storyboard.TargetProperty="Opacity" To="1" Duration="0:0:0.1"/>
|
|
</Storyboard>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
<VisualStateGroup x:Name="SelectionStates">
|
|
<VisualState x:Name="Unselected"/>
|
|
<VisualState x:Name="Selected">
|
|
<Storyboard>
|
|
<DoubleAnimation Storyboard.TargetName="selectedPath" Storyboard.TargetProperty="Opacity" To="0.7" Duration="0:0:0.1"/>
|
|
</Storyboard>
|
|
</VisualState>
|
|
<VisualState x:Name="SelectedUnfocus">
|
|
<Storyboard>
|
|
<DoubleAnimation Storyboard.TargetName="selectedPath" Storyboard.TargetProperty="Opacity" To="0.7" Duration="0:0:0.1"/>
|
|
</Storyboard>
|
|
</VisualState>
|
|
<VisualState x:Name="SelectedDisable">
|
|
<Storyboard>
|
|
<DoubleAnimation Storyboard.TargetName="selectedPath" Storyboard.TargetProperty="Opacity" To="0.7" Duration="0:0:0.1"/>
|
|
</Storyboard>
|
|
</VisualState>
|
|
<VisualState x:Name="SelectedPointer">
|
|
<Storyboard>
|
|
<DoubleAnimation Storyboard.TargetName="selectedPath" Storyboard.TargetProperty="Opacity" To="0.7" Duration="0:0:0.1"/>
|
|
</Storyboard>
|
|
</VisualState>
|
|
<VisualState x:Name="SelectedPressed">
|
|
<Storyboard>
|
|
<DoubleAnimation Storyboard.TargetName="selectedPath" Storyboard.TargetProperty="Opacity" To="0.7" Duration="0:0:0.1"/>
|
|
</Storyboard>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
</VisualStateManager.VisualStateGroups>
|
|
<Path x:Name="selectedPath" Fill="White" Opacity="0">
|
|
<Path.Data>
|
|
<EllipseGeometry RadiusX="15" RadiusY="15"/>
|
|
</Path.Data>
|
|
</Path>
|
|
<Path Fill="Transparent" Stroke="Gray" StrokeThickness="2">
|
|
<Path.Data>
|
|
<EllipseGeometry RadiusX="8" RadiusY="8"/>
|
|
</Path.Data>
|
|
</Path>
|
|
<Grid Canvas.Left="15" Canvas.Top="-8">
|
|
<Rectangle x:Name="labelBackground" Fill="White" Opacity="0.7"/>
|
|
<TextBlock Margin="2,0,2,0" Text="{Binding Name}"/>
|
|
</Grid>
|
|
</Canvas>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
<Style x:Key="PushpinItemStyle" TargetType="map:MapItem">
|
|
<Setter Property="local:BindingHelper.LocationPath" Value="Location"/>
|
|
<Setter Property="VerticalAlignment" Value="Bottom"/>
|
|
<Setter Property="Foreground" Value="Black"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="map:MapItem">
|
|
<map:Pushpin Content="{Binding Name}"/>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</Page.Resources>
|
|
<Page.DataContext>
|
|
<vm:ViewModel/>
|
|
</Page.DataContext>
|
|
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<map:Map x:Name="map" MinZoomLevel="2" Center="{Binding MapCenter}" MaxZoomLevel="18" ZoomLevel="11" Foreground="Black">
|
|
<map:MapImage x:Name="mapImage" South="53.54031" North="53.74871" West="8.08594" East="8.43750"
|
|
Source="10_535_330.jpg" Opacity="0.5"/>
|
|
<map:MapGraticule Opacity="0.6"/>
|
|
|
|
<!-- use ItemTemplate or ItemContainerStyle alternatively -->
|
|
<map:MapItemsControl ItemsSource="{Binding Polylines}"
|
|
ItemTemplate="{StaticResource PolylineItemTemplate}"/>
|
|
<!--<map:MapItemsControl ItemsSource="{Binding Polylines}"
|
|
ItemContainerStyle="{StaticResource PolylineItemStyle}"/>-->
|
|
|
|
<map:MapItemsControl ItemsSource="{Binding Points}"
|
|
ItemContainerStyle="{StaticResource PointItemStyle}"
|
|
SelectionMode="Extended"/>
|
|
|
|
<map:MapItemsControl ItemsSource="{Binding Pushpins}"
|
|
ItemContainerStyle="{StaticResource PushpinItemStyle}"/>
|
|
|
|
<Path Stroke="Blue" StrokeThickness="3">
|
|
<map:MapPanel.Location>
|
|
<map:Location Latitude="53.5" Longitude="8.2"/>
|
|
</map:MapPanel.Location>
|
|
<Path.Data>
|
|
<EllipseGeometry RadiusX="1000" RadiusY="1000" Transform="{Binding ScaleTransform, ElementName=map}"/>
|
|
</Path.Data>
|
|
</Path>
|
|
|
|
<map:Pushpin Background="Yellow" Foreground="Blue" Content="N 53° 30' E 8° 12'">
|
|
<map:MapPanel.Location>
|
|
<map:Location Latitude="53.5" Longitude="8.2"/>
|
|
</map:MapPanel.Location>
|
|
</map:Pushpin>
|
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="4" FontSize="10"
|
|
Text="{Binding TileLayer.Description, ElementName=map}"/>
|
|
</map:Map>
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<StackPanel Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<StackPanel Margin="5">
|
|
<TextBlock Text="Zoom Level" HorizontalAlignment="Center" Foreground="Gray" FontSize="14"/>
|
|
<Slider Margin="10,-10,10,-10" Width="200" SmallChange="0.1"
|
|
Minimum="{Binding MinZoomLevel, ElementName=map}"
|
|
Maximum="{Binding MaxZoomLevel, ElementName=map}"
|
|
Value="{Binding TargetZoomLevel, ElementName=map, Mode=TwoWay}"/>
|
|
</StackPanel>
|
|
<StackPanel Margin="5">
|
|
<TextBlock Text="Heading" HorizontalAlignment="Center" Foreground="Gray" FontSize="14"/>
|
|
<Slider Margin="10,-10,10,-10" Width="200" Minimum="0" Maximum="360" SmallChange="5" LargeChange="45"
|
|
Value="{Binding Heading, ElementName=map, Mode=TwoWay}"/>
|
|
</StackPanel>
|
|
<StackPanel Margin="5">
|
|
<TextBlock Text="Image Opacity" HorizontalAlignment="Center" Foreground="Gray" FontSize="14"/>
|
|
<Slider Margin="10,-10,10,-10" Width="200" Value="50" ValueChanged="ImageOpacitySliderValueChanged"/>
|
|
</StackPanel>
|
|
<CheckBox Margin="10" VerticalAlignment="Center" Content="Seamarks" Checked="SeamarksChecked" Unchecked="SeamarksUnchecked"/>
|
|
<ComboBox x:Name="tileLayerComboBox" Margin="10" Width="200" VerticalAlignment="Center" SelectionChanged="TileLayerSelectionChanged">
|
|
<ComboBoxItem>OpenStreetMap</ComboBoxItem>
|
|
<ComboBoxItem>OpenCycleMap</ComboBoxItem>
|
|
<ComboBoxItem>OCM Transport</ComboBoxItem>
|
|
<ComboBoxItem>OCM Landscape</ComboBoxItem>
|
|
<ComboBoxItem>MapQuest OSM</ComboBoxItem>
|
|
</ComboBox>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</Page>
|