← Back to Toolkit Releases
2.0.4 Windows Maps: zooming in on the bugs!
Contributors
Just a small update to make the zoom work when you use MoveToRegion on the Map! Thanks @mikelor!
Requirements
The following tools are now required for CommunityToolkit.Maui.Maps:
- Xcode 16.0.0
- Read the latest .NET MAUI Release wiki to always find the latest-supported version) of Xcode for .NET MAUI
- We HIGHLY recommend using the open-source tool Xcodes to easily manage your installed Xcode versions
- Update to the latest stable version of Visual Studio (or Jet Brains Rider)
- Download/install .NET SDK v8.0.403
- After installing the latest stable .NET SDK, update to the latest stable version of the .NET MAUI workload:
- On macOS, open the Terminal and enter the following command:
sudo dotnet workload install maui - On Windows, open the command prompt (or Powershell) and enter the following command:
dotnet workload install maui
- On macOS, open the Terminal and enter the following command:
- Add a
global.jsonfile to your application with the following parameters to ensure you’re not using a unsupported preview version of .NET (example below)- The .NET MAUI Community Toolkit does not support preview releases of .NET
global.json
{
"sdk": {
"version": "8.0.403",
"rollForward": "latestMajor",
"allowPrerelease": false
}
}
What’s Changed
- Fixes [BUG] Map not responding to span (zoom) requests in Windows #1686 by @mikelor in https://github.com/CommunityToolkit/Maui/pull/2323
Full Changelog: https://github.com/CommunityToolkit/Maui/compare/4.1.2-mediaelement…2.0.4-maps