Skip to content

Instantly share code, notes, and snippets.

@pictos
Created November 23, 2017 14:57
Show Gist options
  • Save pictos/c2d8384c395ab0e4726063c4cfbc51d8 to your computer and use it in GitHub Desktop.
Save pictos/c2d8384c395ab0e4726063c4cfbc51d8 to your computer and use it in GitHub Desktop.
View do Mapa
<?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.Maps;assembly=Xamarin.Forms.Maps"
xmlns:CustomMap="clr-namespace:RouteMap.CustomRender;assembly=RouteMap"
x:Class="RouteMap.Views.MapaPage">
<ContentPage.Content>
<StackLayout Padding="30">
<Entry Placeholder="Origem" Text="{Binding Origem}"/>
<Entry Placeholder="Destino" Text="{Binding Destino}"/>
<Button Text="Pesquisar Rota" Command="{Binding PesquisarCommand}"/>
<CustomMap:MapCustomRender x:Name="MyMap"
WidthRequest="320"
HeightRequest="300"
IsShowingUser="True" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment