I have one task on the screen with the map accessing the Geolocator, Its Work!, but also open another page can not receive the coordinates, anyone have any idea about what's going on?
Plugin: Xam.Plugin.Geolocator
using Xamarin.Forms.Maps;
using CoreLocation;
using Geolocator.Plugin;
private async void GetLocaction ()
{
var locator = CrossGeolocator.Current;
locator.DesiredAccuracy = 50;
var position = await locator.GetPositionAsync (10000);
Pages.MyPosition mPos = new Pages.MyPosition ();
mPos.Latitude = position.Latitude;
mPos.Longitude = position.Longitude;
}