示例#1
0
 /// <summary>
 /// Check whether data model bounds contain a geographical point.
 /// </summary>
 public static bool Contains(this Models.Bounds modelBounds, double latitude, double longitude)
 {
     return(modelBounds.ToGeo().Contains(new GeoCoords {
         Latitude = latitude,
         Longitude = longitude
     }));
 }
示例#2
0
 /// <summary>
 /// Create a geo bounds instance from data model bounds.
 /// </summary>
 public static GeoBounds ToGeo(this Models.Bounds modelBounds) => new GeoBounds
 {
     LeftTop     = modelBounds.LeftTop.ToCoords(),
     RightBottom = modelBounds.RightBottom.ToCoords()
 };