Exemplo n.º 1
0
 public MapExtent(MapPoint lefttop, MapPoint rightbottom) : this(lefttop.x, lefttop.y, rightbottom.x, rightbottom.y)
 {
 }
Exemplo n.º 2
0
        public void Combine(MapPoint point)
        {
            MapExtent ex = MapExtent.FromPoint(point);

            Combine(ex);
        }
Exemplo n.º 3
0
 public static MapExtent FromPoint(MapPoint point)
 {
     return(new MapExtent(point.x, point.y, point.x, point.y));
 }
Exemplo n.º 4
0
 static MapPoint()
 {
     Empty = new MapPoint(0, 0);
 }