Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge overlapped circle? #807

Open
kevinvenclovas opened this issue Feb 19, 2024 · 0 comments
Open

Merge overlapped circle? #807

kevinvenclovas opened this issue Feb 19, 2024 · 0 comments

Comments

@kevinvenclovas
Copy link

kevinvenclovas commented Feb 19, 2024

Hi, is there any option to merge multiple overlapped circles into one polygon so the overlapped area not showing darker?

image

var circle = new Circle
{
    Center = new Position(48.9624, 10.1295), // Koordinaten für das Zentrum des Kreises (z.B. Berlin)
    Radius = new Distance(100), // Radius in Metern
    StrokeColor = Color.FromArgb("50FF0000"), // Farbe des Kreisrandes
    StrokeWidth = 1, // Dicke des Kreisrandes
    FillColor = Color.FromArgb("50FF0000"),// Füllfarbe des Kreises (Rot mit etwas Transparenz)
};

cannamap.Circles.Add(circle);


var circle2 = new Maui.GoogleMaps.Circle
{
    Center = new Position(48.9619, 10.1315), // Koordinaten für das Zentrum des Kreises (z.B. Berlin)
    Radius = new Distance(100), // Radius in Metern
    StrokeColor = Color.FromArgb("50FF0000"), // Farbe des Kreisrandes
    StrokeWidth = 1, // Dicke des Kreisrandes
    FillColor = Color.FromArgb("50FF0000") // Füllfarbe des Kreises (Rot mit etwas Transparenz)
};

cannamap.Circles.Add(circle2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant