1 Star 0 Fork 6

asswclw/GoogleMapDownloader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
GeoDefination.h 731 Bytes
一键复制 编辑 原始数据 按行查看 历史
YanZhao 提交于 2014-05-09 17:28 . 项目开始使用Git进行版本管理.
#ifndef GEODEFINATION_H
#define GEODEFINATION_H
#include <QPoint>
const static double MAX_RANGE = 20037508.342789; ///<顶层Tile的坐标的取值范围(-MAX_RANGE, MAX_RANGE)
const static int TILE_SIZE = 256; ///<瓦片图像的边长(像素数)
const static int MAX_LEVEL = 18; ///<最大缩放层级
struct GeoPoint
{
double x;
double y;
GeoPoint(double _x, double _y) {x = _x; y = _y;}
GeoPoint() {x = 0; y = 0;}
};
struct GeoExtent
{
double minx;
double miny;
double maxx;
double maxy;
GeoExtent() {minx = 0; miny = 0; maxx = 0; maxy = 0;}
};
QPoint COMFUNC_DegreeToXYIndex(double lon, double lat, int z);
#endif // GEODEFINATION_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/asswclw/GoogleMapDownloader.git
git@gitee.com:asswclw/GoogleMapDownloader.git
asswclw
GoogleMapDownloader
GoogleMapDownloader
master

搜索帮助