Version 4.6.1: Removed obsolete MapProjection.TranslateLocation method

This commit is contained in:
ClemensFischer 2018-03-06 23:24:25 +01:00
parent fa2c561bc9
commit b12155e498
15 changed files with 19 additions and 73 deletions

View file

@ -42,12 +42,5 @@ namespace MapControl
{
return new Location(point.Y, point.X);
}
public override Location TranslateLocation(Location location, Point translation)
{
return new Location(
location.Latitude - translation.Y / ViewportScale,
location.Longitude + translation.X / ViewportScale);
}
}
}