1 Star 0 Fork 43

张洛宜/easygis

forked from qizr/easygis 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mapline.h 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
张洛宜 提交于 2022-01-15 15:49 . windows vs2017 Qt5.13.2编译
#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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/muye91/easygis.git
[email protected]:muye91/easygis.git
muye91
easygis
easygis
master

搜索帮助