4 Star 26 Fork 10

Yonghe/GeoFlying

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MapExtent.cs 707 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yonghe 提交于 2020-10-02 09:33 . first
using System;
using System.Collections.Generic;
using System.Text;
namespace GeoFly
{
/// <summary>
/// 栅格图层范围
/// </summary>
public class MapExtent
{
public MapExtent()
{
xmin = ymin = xmax = ymax = 0;
}
public double xmin;
public double ymin;
public double xmax;
public double ymax;
public MapExtent Copy()
{
MapExtent mapex = new MapExtent();
mapex.xmin = this.xmin;
mapex.xmax = this.xmax;
mapex.ymin = this.ymin;
mapex.ymax = this.ymax;
return mapex;
}
};
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/sucksis/geo-flying.git
git@gitee.com:sucksis/geo-flying.git
sucksis
geo-flying
GeoFlying
master

搜索帮助