Paul den Dulk

Results 465 comments of Paul den Dulk

> In OL you would provide the map with the geocoordinates and it will figure it out. Could you explain a bit more about how that works. What does it...

What if you place the callout on the MapControl itself. That should always be in MapControl's screen coordinates. Right now MapControl is a UIView, guess you cannot position a child...

And yes I think an important scenario should be that the user has complete freedom to create his own callout. Positioning it should be easy. How about alignment? Left, Center,...

In this PR we go to NET6. By removing netstandard2.0 it now becomes possible to use System.Drawing.Color in all projects. https://github.com/Mapsui/Mapsui/pull/2252/files This is one of the advantages of removing old...

> System.Drawing.Color belongs to NuGet package System.Drawing.Primitives, With the upgrade to .NET6 we do not depend on the nuget package. System.Drawing.Color is part of .NET6 itself. So, if you want...

If you already started from master you could to a `git pull origin feature/cleanup` from the command line to update to the branch.

System.Drawing.Color is a struct, not a class, it is not possible to inherit from a struct. So, you need to replace it. Because if this difference there may be some...

Keep in mind that System.Drawing.Common (so Common, not Color) is deprecated. https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/6.0/system-drawing-common-windows-only

I ported everything to System.Drawing.Color and then decided it was not the option. Some remarks about this are in the MR: https://github.com/Mapsui/Mapsui/pull/2578. We learned from the port and improved Mapsui.Styles.Color...

Thanks for your thorough analysis. Some initial reactions. > Why not use System.Drawing.Color instead of specific ones for Mapsui? System.Drawing.Color was not available on all platforms when we started, which...