You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
307 B
C
19 lines
307 B
C
3 months ago
|
#ifndef WEBMAPWIDGET_H
|
||
|
#define WEBMAPWIDGET_H
|
||
|
|
||
|
#include <QWebEnginePage>
|
||
|
#include <QWebEngineSettings>
|
||
|
#include <QWebEngineView>
|
||
|
|
||
|
class WebMapWidget : public QWebEngineView {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit WebMapWidget(QWebEngineView *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif // WEBMAPWIDGET_H
|