In Xamarin Forms, does the IsShowingUser property of Xamarin.Forms.Maps work for iOS?
I can get every aspect of my map to work on both Android and iOS, but the current location 'blue dot' does not show on iOS.
I'm setting this in shared code in the PCL project, just after successfully asking for permission to use location.
var status = await CrossPermissions.Current.CheckPermissionStatusAsync(Permission.Location);
if (status != PermissionStatus.Granted)
{
var results = await CrossPermissions.Current.RequestPermissionsAsync(new[] { Permission.Location });
status = results[Permission.Location];
}
if (status == PermissionStatus.Granted)
{
MyMap.IsShowingUser = true;
}
thanks