mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-07 23:45:05 +00:00
Improved MapGraticule
This commit is contained in:
parent
c8449be6ff
commit
3e814c4272
4 changed files with 78 additions and 103 deletions
|
|
@ -59,8 +59,12 @@ namespace MapControl
|
|||
path = (Path)Children[0];
|
||||
}
|
||||
|
||||
var labels = DrawGraticule(((PathGeometry)path.Data).Figures);
|
||||
var childrenCount = 1;
|
||||
var labels = new List<Label>();
|
||||
var figures = ((PathGeometry)path.Data).Figures;
|
||||
figures.Clear();
|
||||
|
||||
DrawGraticule(figures, labels);
|
||||
|
||||
foreach (var label in labels)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue