初步实现采集、图层和TOC联动

This commit is contained in:
tangchao0503
2026-02-12 16:10:17 +08:00
parent 631216dc66
commit e3b2d136d3
15 changed files with 387 additions and 199 deletions

14
HPPA/RasterLayer.h Normal file
View File

@ -0,0 +1,14 @@
#pragma once
#include "MapLayer.h"
class RasterLayer : public MapLayer
{
Q_OBJECT
public:
explicit RasterLayer(const QString& name, const QString& uri);
LayerType layerType() const override;
// future: renderer, data provider, etc.
};