2021-11-07 19:42:59 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:maps="clr-namespace:Xamarin.Forms.GoogleMaps;assembly=Xamarin.Forms.GoogleMaps"
|
|
|
|
xmlns:bindings="clr-namespace:Xamarin.Forms.GoogleMaps.Bindings;assembly=Xamarin.Forms.GoogleMaps.Bindings"
|
|
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
|
|
x:Class="TINK.View.Map.MapPage"
|
|
|
|
Title="{x:Static resources:AppResources.MarkingMapPage}">
|
|
|
|
<StackLayout>
|
|
|
|
<Grid
|
|
|
|
IsEnabled="{Binding IsMapPageEnabled}"
|
|
|
|
VerticalOptions="FillAndExpand">
|
|
|
|
<maps:Map WidthRequest="320" HeightRequest="800"
|
|
|
|
x:Name="MyMap"
|
|
|
|
IsShowingUser="False"
|
|
|
|
MapType="Street">
|
|
|
|
<maps:Map.Behaviors>
|
|
|
|
<bindings:BindingPinsBehavior Value="{Binding Pins}"/>
|
|
|
|
<bindings:PinClickedToCommandBehavior Command="{Binding PinClickedCommand}"/>
|
|
|
|
</maps:Map.Behaviors>
|
|
|
|
</maps:Map>
|
|
|
|
<Button
|
|
|
|
x:Name="TINKButton"
|
|
|
|
AutomationId ="FilterTINK_button"
|
2022-01-04 18:54:03 +01:00
|
|
|
Text="{x:Static resources:AppResources.MarkingCargoBike}"
|
2021-11-07 19:42:59 +01:00
|
|
|
Command="{Binding OnToggleKonradToTink}"
|
|
|
|
IsVisible="{Binding IsToggleVisible}"
|
|
|
|
TextColor ="{Binding TinkColor}"
|
|
|
|
VerticalOptions="Start"
|
|
|
|
HorizontalOptions="StartAndExpand"
|
|
|
|
WidthRequest="80">
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
x:Name="KonradButton"
|
|
|
|
AutomationId ="FilterKonrad_button"
|
2022-01-04 18:54:03 +01:00
|
|
|
Text="{x:Static resources:AppResources.MarkingCityBike}"
|
2021-11-07 19:42:59 +01:00
|
|
|
Command="{Binding OnToggleTinkToKonrad}"
|
|
|
|
IsVisible="{Binding IsToggleVisible}"
|
|
|
|
TextColor="{Binding KonradColor}"
|
|
|
|
VerticalOptions="Start"
|
|
|
|
HorizontalOptions="EndAndExpand"
|
|
|
|
WidthRequest="80">
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
<StackLayout
|
|
|
|
Margin="6,3,6,6"
|
|
|
|
VerticalOptions="EndAndExpand"
|
|
|
|
Orientation="Horizontal">
|
|
|
|
<Label
|
|
|
|
HeightRequest="20"
|
|
|
|
Text="{Binding StatusInfoText}"
|
|
|
|
VerticalOptions="Center"
|
|
|
|
HorizontalOptions="FillAndExpand"/>
|
|
|
|
<ActivityIndicator IsRunning="{Binding IsRunning}"
|
|
|
|
IsVisible="{Binding IsRunning}"
|
|
|
|
HeightRequest="20"
|
|
|
|
VerticalOptions="CenterAndExpand"
|
|
|
|
HorizontalOptions="End">
|
|
|
|
<ActivityIndicator.WidthRequest>
|
|
|
|
<OnPlatform x:TypeArguments="x:Double" iOS="40" Android="40" WinPhone="40" />
|
|
|
|
</ActivityIndicator.WidthRequest>
|
|
|
|
<ActivityIndicator.Color>
|
|
|
|
<OnPlatform x:TypeArguments="Color"
|
|
|
|
iOS="#2499CE" WinPhone="#2499CE" />
|
|
|
|
</ActivityIndicator.Color>
|
|
|
|
</ActivityIndicator>
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</ContentPage>
|