mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-09 00:14:51 +00:00
Removed MapProjectionType
This commit is contained in:
parent
d71d6c6e01
commit
9c02647c59
15 changed files with 29 additions and 71 deletions
|
|
@ -191,8 +191,7 @@ namespace MapControl
|
|||
var xMin = -180d * MapProjection.Wgs84MeterPerDegree;
|
||||
var xMax = 180d * MapProjection.Wgs84MeterPerDegree;
|
||||
|
||||
if (ParentMap.MapProjection.Type > MapProjectionType.NormalCylindrical ||
|
||||
bbox.X >= xMin && bbox.X + bbox.Width <= xMax)
|
||||
if (bbox.X >= xMin && bbox.X + bbox.Width <= xMax || !ParentMap.MapProjection.IsNormalCylindrical)
|
||||
{
|
||||
var uri = GetMapRequestUri(bbox);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue