<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Test.Views.Activities.ActivityMapList"
xmlns:maps="clr-namespace:Microsoft.Maui.Controls.Maps;assembly=Microsoft.Maui.Controls.Maps"
xmlns:sensors="clr-namespace:Microsoft.Maui.Devices.Sensors;assembly=Microsoft.Maui.Essentials"
xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls"
ios:Page.UseSafeArea="False"
Shell.NavBarIsVisible="False"
Style="{StaticResource Key=DefaultPage}">
<ContentPage.Content>
<StackLayout>
<maps:Map
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand">
<x:Arguments>
<MapSpan>
<x:Arguments>
<sensors:Location>
<x:Arguments>
<x:Double>36.9628066</x:Double>
<x:Double>-122.0194722</x:Double>
</x:Arguments>
</sensors:Location>
<x:Double>0.01</x:Double>
<x:Double>0.01</x:Double>
</x:Arguments>
</MapSpan>
</x:Arguments>
</maps:Map>
</StackLayout>
</ContentPage.Content>
</ContentPage>
Map Controls inside StackLayout or Grid, iOS's SafeArea is false as shown in the image. Do you have any solution?
I need with grid or stacklayout on map
You could set the Page Padding value to make it. In the OnAppearing Method, set the safeInsets of the page like the following code:
To get the topArea and bottomArea value, you should write platform code. A more detailed tutorial about this is attached at the end of the answer.
First you could generate a new class file in Project folder and change it to partial class. Generate two partial method.
And then generate a partial file on Platform iOS and implement it. This file is placed in the Project/Platform/iOS folder and what i want to mention is this file is a partial file, so the namespace should be the same as the file above. When you generate this file, please remove the .Platforms.iOS suffix in the namespace.
For more information, you could refer to How To Write Platform-Specific Code in .NET MAUI and MauiPlatformCodeSample code
Hope it works for you.