1 Star 0 Fork 42

史继德/easygis

forked from qizr/easygis 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mapautoplane.h 627 Bytes
一键复制 编辑 原始数据 按行查看 历史
qizr 提交于 2021-12-26 17:58 . add plane func
#ifndef MAPAUTOPLANE_H
#define MAPAUTOPLANE_H
#include <QGraphicsPixmapItem>
#include <QPointF>
namespace EasyGIS{
class MapLayer;
class MapAutoplane : public QGraphicsPixmapItem
{
public:
explicit MapAutoplane(const MapLayer *layer,QPointF pos,QGraphicsItem *parent = nullptr);
~MapAutoplane() override = default;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
QRectF boundingRect() const override;
void append(QPointF mkt_point);
void updatePos();
private:
const MapLayer *mLayer;
QPointF current_mktpoint;
};
}
#endif // MAPAUTOPLANE_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/gideshi/easygis.git
git@gitee.com:gideshi/easygis.git
gideshi
easygis
easygis
master

搜索帮助