maui
maui copied to clipboard
Implement .NET MAUI Maps
Description of Change
Adding handlers for maps
Issues Fixed
Fixes #3933
- [ ] We need to obsolete one Geocoding API: https://github.com/dotnet/maui/issues/2209
Is this for the new apple maps just announced or just the old maps
Is this for the new apple maps just announced or just the old maps
This is porting over Xamarin.Forms Maps to .NET MAUI. Nothing new needs to be done for the new Apple Maps stuff.
I have updated the gallery with multiple examples to test with ItemsSource, polygons, etc.
Test results.
✔️ - Works! 🕐 - Not yet verified. ❌ - Not working.
| Maps | Android | iOS | Catalyst | Windows |
|---|---|---|---|---|
| HasScrollEnabled | ✔️ | ✔️ | ✔️ | 🕐 |
| HasZoomEnabled | ✔️ | ✔️ | ✔️ | 🕐 |
| IsShowingUser | ❌ | ✔️ | ✔️ | 🕐 |
| ItemsSource | ✔️ | ✔️ | ✔️ | 🕐 |
| ItemTemplate | ✔️ | ✔️ | ✔️ | 🕐 |
| MapType | ✔️ | ✔️ | ✔️ | 🕐 |
| TrafficEnabled | ✔️ | ✔️ | ✔️ | 🕐 |
| MapElements (Polygon) | ❌ | ✔️ | ✔️ | 🕐 |
| MapElements (Circle) | ❌ | ✔️ | ✔️ | 🕐 |
| MapElements (Polyline) | ❌ | ✔️ | ✔️ | 🕐 |
| VisibleRegion | ✔️ | ✔️ | ✔️ | 🕐 |
| MoveToRegion | ❌ | ✔️ | ✔️ | 🕐 |
Feedback.
Android
Can use the polygon gallery to verify that they are not being rendered, nor is the MoveToRegion method working as expected.

iOS
All the properties are working as expe
cted.