mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:46:30 +00:00
fix re-send new batch to gps denied
todo: clear folders, consider better center point to fetch next batch from satellite provider
This commit is contained in:
@@ -11,7 +11,7 @@ namespace Azaion.Annotator.Controls
|
||||
{
|
||||
public readonly GMapMarker Marker;
|
||||
|
||||
public CircleVisual(GMapMarker m, Brush background)
|
||||
public CircleVisual(GMapMarker m, int size, string text, Brush background)
|
||||
{
|
||||
ShadowEffect = new DropShadowEffect();
|
||||
Marker = m;
|
||||
@@ -22,14 +22,14 @@ namespace Azaion.Annotator.Controls
|
||||
MouseLeave += CircleVisual_MouseLeave;
|
||||
Loaded += OnLoaded;
|
||||
|
||||
Text = "?";
|
||||
Text = text;
|
||||
|
||||
StrokeArrow.EndLineCap = PenLineCap.Triangle;
|
||||
StrokeArrow.LineJoin = PenLineJoin.Round;
|
||||
|
||||
RenderTransform = _scale;
|
||||
|
||||
Width = Height = 22;
|
||||
Width = Height = size;
|
||||
FontSize = Width / 1.55;
|
||||
|
||||
Background = background;
|
||||
|
||||
Reference in New Issue
Block a user