1 Star 0 Fork 42

史继德/easygis

forked from qizr/easygis 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mapline.h 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
qizr 提交于 2021-12-24 21:38 . add draw area
#ifndef MAPLINE_H
#define MAPLINE_H
#include <QAbstractGraphicsShapeItem>
#include <QPolygonF>
#include <QPen>
namespace EasyGIS {
class MapLayer;
class Mapline:public QAbstractGraphicsShapeItem
{
public:
explicit Mapline(const MapLayer *layer, QGraphicsItem *parent = nullptr)
: mLayer(layer), QAbstractGraphicsShapeItem(parent) {
QPen pen(Qt::red);
pen.setWidth(2);
this->setPen(pen);
this->setBrush(QBrush(Qt::black));
}
~Mapline() override = default;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
QRectF boundingRect() const override;
void append(QPointF mkt_point);
QPointF& lastMktpoint();
private:
const MapLayer *mLayer;
QPolygonF mkt_points;
};
}
#endif // MAPLINE_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/gideshi/easygis.git
git@gitee.com:gideshi/easygis.git
gideshi
easygis
easygis
master

搜索帮助