4 Star 3 Fork 6

YanZhao/GoogleMapDownloader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
viewport.h 811 Bytes
一键复制 编辑 原始数据 按行查看 历史
YanZhao 提交于 2014-05-09 17:28 . 项目开始使用Git进行版本管理.
#ifndef VIEWPORT_H
#define VIEWPORT_H
#include "GeoDefination.h"
#include <QRect>
class ViewPort
{
public:
ViewPort();
ViewPort(QRect extent);
void ZoomIn();
void ZoomOut();
void Move(int deltaX, int deltaY);
QRect getViewPortRect() const;
void setViewPortRect(const QRect &value);
int getZoomLevel() const;
void setZoomLevel(int value);
GeoExtent getGeoExtent() const;
void setGeoExtent(const GeoExtent &value);
QRect getTileIndexRange() const;
void setTileIndexRange(const QRect &value);
protected:
void UpdateGeoExtent();
void UpdateIndexRange();
void Update();
private:
GeoPoint centerPt;
QRect viewPortRect;
QRect tileIndexRange;
GeoExtent geoExtent;
int zoomLevel;
double resolution;
};
#endif // VIEWPORT_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/whuhenry/GoogleMapDownloader.git
git@gitee.com:whuhenry/GoogleMapDownloader.git
whuhenry
GoogleMapDownloader
GoogleMapDownloader
master

搜索帮助