<?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:local="clr-namespace:XamarinEssentials"  
             x:Class="XamarinEssentials.MainPage">  
  
    <StackLayout>  
        <StackLayout HorizontalOptions="Center" VerticalOptions="Start">  
         <Image Margin="0,50,0,0" x:Name="imgBanner" Source="banner.png" ></Image>  
         <Image Margin="0,0,0,10" x:Name="imgXamarinEssential" Source="xamarinessential.png" ></Image>  
         <Label Margin="0,0,0,10" Text="Geocoding" FontAttributes="Bold" FontSize="Large" TextColor="#CA6F1E" HorizontalTextAlignment="Center" ></Label>  
         <Entry x:Name="txtAddress" Placeholder="Search Location..."></Entry>  
         <Button x:Name="btnLocation" Text="Get Location" Clicked="btnLocation_Clicked"/>  
         <Label HorizontalTextAlignment="Center" x:Name="lblLatitude"></Label>  
         <Label HorizontalTextAlignment="Center" x:Name="lblLongitude"></Label>  
  
        </StackLayout>  
    </StackLayout>  
  
</ContentPage>