1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Yet another ENC style improvement

This commit is contained in:
Martin Tůma 2022-11-05 13:34:01 +01:00
parent 2b34140746
commit 4ce5dfbcf9
6 changed files with 12 additions and 1 deletions

View File

@ -171,6 +171,7 @@
<file alias="tower.png">icons/map/marine/tower.png</file>
<file alias="chimney.png">icons/map/marine/chimney.png</file>
<file alias="platform.png">icons/map/marine/platform.png</file>
<file alias="ferry-line.png">icons/map/marine/ferry-line.png</file>
</qresource>
<!-- Mapsforge rendertheme -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

View File

@ -6,6 +6,7 @@
#define CATREA 56
#define CATWRK 71
#define DRVAL1 87
#define ELEVAT 90
#define OBJNAM 116
#define VALDCO 174

View File

@ -388,7 +388,8 @@ MapData::Attr MapData::lineAttr(const ISO8211::Record &r, uint OBJL)
if (key == OBJNAM)
label = av.at(1).toString();
if ((OBJL == DEPCNT && key == VALDCO))
if ((OBJL == DEPCNT && key == VALDCO)
|| (OBJL == LNDELV && key == ELEVAT))
label = av.at(1).toString();
}

View File

@ -28,6 +28,7 @@
#define DMPGRD 48
#define DYKCON 49
#define FAIRWY 51
#define FERYRT 53
#define HRBFAC 64
#define LAKARE 69
#define LNDARE 71
@ -43,6 +44,7 @@
#define RESARE 112
#define RIVERS 114
#define SLCONS 122
#define SLOTOP 126
#define SOUNDG 129
#define TSSBND 146
#define TSEZNE 150

View File

@ -74,6 +74,12 @@ void Style::defaultLineStyle()
_lines[TYPE(DYKCON)] = Line(QPen(QColor("#333333"), 2, Qt::SolidLine));
_lines[TYPE(RIVERS)] = Line(QPen(QColor("#000000"), 1, Qt::SolidLine));
_lines[TYPE(TSSBND)] = Line(QPen(QColor("#eb49eb"), 2, Qt::DashLine));
_lines[TYPE(LNDELV)] = Line(QPen(QColor("#999440"), 1, Qt::SolidLine));
_lines[TYPE(LNDELV)].setTextColor(QColor("#797420"));
_lines[TYPE(LNDELV)].setTextFontSize(Small);
_lines[TYPE(SLOTOP)] = Line(QPen(QColor("#797420"), 1, Qt::SolidLine));
_lines[TYPE(OBSTRN)] = Line(QPen(QColor("#000000"), 1.5, Qt::DotLine));
_lines[TYPE(FERYRT)] = Line(QImage(":/marine/ferry-line.png"));
}
void Style::defaultPointStyle()