mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
137 lines
4 KiB
XML
137 lines
4 KiB
XML
<?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"
|
|
xmlns:sharedGui="clr-namespace:ShareeSharedGuiLib.View"
|
|
x:Class="TINK.View.Contact.SelectStationPage"
|
|
BackgroundColor="{DynamicResource Key=primary-back-title-color}">
|
|
|
|
<Shell.TitleView>
|
|
<Grid ColumnDefinitions="Auto, 1*">
|
|
<Image Style="{StaticResource Image-Navbar}"/>
|
|
<Label Style="{StaticResource Label-Navbar}"
|
|
Text="{x:Static resources:AppResources.MarkingSelectStationPage}"/>
|
|
</Grid>
|
|
</Shell.TitleView>
|
|
|
|
<ContentPage.Content>
|
|
|
|
<!--Grid for Map with Buttons and Running process-->
|
|
<Grid
|
|
RowDefinitions="3,46,1*,32"
|
|
ColumnDefinitions="1*,Auto,1*"
|
|
IsEnabled="{Binding IsMapPageEnabled}"
|
|
VerticalOptions="FillAndExpand">
|
|
|
|
<!--Map-->
|
|
<maps:Map
|
|
Grid.RowSpan="3"
|
|
Grid.ColumnSpan="3"
|
|
WidthRequest="320"
|
|
HeightRequest="800"
|
|
x:Name="MyMap"
|
|
MyLocationEnabled="True"
|
|
MapType="Street">
|
|
<maps:Map.Behaviors>
|
|
<bindings:BindingPinsBehavior Value="{Binding Pins}"/>
|
|
<bindings:PinClickedToCommandBehavior Command="{Binding PinClickedCommand}"/>
|
|
</maps:Map.Behaviors>
|
|
</maps:Map>
|
|
|
|
<!--Buttons for choosing bike type-->
|
|
<Frame
|
|
CornerRadius="13"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Margin="0"
|
|
Padding="0"
|
|
BackgroundColor="{DynamicResource secondary-back-title-color}">
|
|
<StackLayout
|
|
Orientation="Horizontal"
|
|
Margin="0"
|
|
Padding="0">
|
|
<Button
|
|
x:Name="KonradButton"
|
|
AutomationId ="FilterKonrad_button"
|
|
Text="{x:Static resources:AppResources.MarkingCityBike}"
|
|
Command="{Binding OnToggleTinkToKonrad}"
|
|
IsVisible="false"
|
|
BackgroundColor="{Binding KonradColor}"
|
|
BorderColor="{Binding KonradColor}"
|
|
BorderWidth="0"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center"
|
|
WidthRequest="94"
|
|
HeightRequest="40"
|
|
BorderRadius="10"
|
|
Margin="3,0,0,0"
|
|
FontSize="Small"
|
|
FontAttributes="Bold"
|
|
TextColor="{Binding NoKonradColor}">
|
|
</Button>
|
|
<Button
|
|
x:Name="TINKButton"
|
|
AutomationId ="FilterTINK_button"
|
|
Text="{x:Static resources:AppResources.MarkingCargoBike}"
|
|
Command="{Binding OnToggleKonradToTink}"
|
|
IsVisible="false"
|
|
BackgroundColor="{Binding TinkColor}"
|
|
BorderColor="{Binding TinkColor}"
|
|
BorderWidth="0"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center"
|
|
WidthRequest="94"
|
|
HeightRequest="40"
|
|
BorderRadius="10"
|
|
Margin="0,0,3,0"
|
|
FontSize="Small"
|
|
FontAttributes="Bold"
|
|
TextColor="{Binding NoTinkColor}">
|
|
</Button>
|
|
</StackLayout>
|
|
</Frame>
|
|
|
|
<!--Center to currentLocation Button-->
|
|
<ImageButton
|
|
Grid.RowSpan="3"
|
|
Grid.ColumnSpan="3"
|
|
x:Name="CurrentLocation"
|
|
AutomationId ="currentLocaton_button"
|
|
Command="{Binding OnCurrentLocationButtonClicked}"
|
|
IsVisible="False"
|
|
BackgroundColor="Transparent"
|
|
BorderWidth="1"
|
|
BorderColor="LightGray"
|
|
VerticalOptions="End"
|
|
HorizontalOptions="Center"
|
|
Margin="0,0,0,12"
|
|
Source="Location_Button.png"
|
|
WidthRequest="40"
|
|
HeightRequest="40"
|
|
CornerRadius="20">
|
|
</ImageButton>
|
|
|
|
<!--Info text-->
|
|
<Label
|
|
Grid.Row="3"
|
|
Grid.ColumnSpan="3"
|
|
Text="{Binding StatusInfoText}"
|
|
IsVisible="{Binding Path=IsProcessWithRunningProcessView, Converter={StaticResource InvertedBoolConverter}}"
|
|
TextColor="White"
|
|
FontSize="Small"
|
|
HorizontalOptions="CenterAndExpand"
|
|
VerticalOptions="CenterAndExpand"/>
|
|
|
|
<!--While process is running-->
|
|
<sharedGui:RunningProcessView
|
|
IsVisible="{Binding IsProcessWithRunningProcessView}"
|
|
Grid.RowSpan="4"
|
|
Grid.ColumnSpan="3"/>
|
|
|
|
</Grid>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|