You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is there any option to merge multiple overlapped circles into one polygon so the overlapped area not showing darker?
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);
The text was updated successfully, but these errors were encountered:
Hi, is there any option to merge multiple overlapped circles into one polygon so the overlapped area not showing darker?
The text was updated successfully, but these errors were encountered: