Version 4.7.0: Added UWP Vector class

This commit is contained in:
ClemensFischer 2018-03-07 22:19:16 +01:00
parent 32db0f22c1
commit 9c148e13c4
21 changed files with 154 additions and 93 deletions

View file

@ -25,9 +25,9 @@ namespace MapControl
IsAzimuthal = true;
}
public override Point GetMapScale(Location location)
public override Vector GetMapScale(Location location)
{
return new Point(ViewportScale, ViewportScale);
return new Vector(ViewportScale, ViewportScale);
}
public override Rect BoundingBoxToRect(BoundingBox boundingBox)