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

Some more ENC stuff

This commit is contained in:
Martin Tůma 2022-11-26 15:14:41 +01:00
parent 12b17487ac
commit 82b8314b74
5 changed files with 4 additions and 1 deletions

View File

@ -183,6 +183,7 @@
<file alias="radio.png">icons/map/marine/radio.png</file>
<file alias="radar.png">icons/map/marine/radar.png</file>
<file alias="radar-transponder.png">icons/map/marine/radar-transponder.png</file>
<file alias="silo.png">icons/map/marine/silo.png</file>
</qresource>
<!-- Mapsforge rendertheme -->

Binary file not shown.

Before

Width:  |  Height:  |  Size: 334 B

After

Width:  |  Height:  |  Size: 11 KiB

BIN
icons/map/marine/silo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

View File

@ -56,7 +56,8 @@ static QMap<uint,uint> orderMapInit()
map.insert(TYPE(CRANES), 30);
map.insert(TYPE(I_CRANES), 30);
map.insert(TYPE(LNDMRK), 31);
map.insert(TYPE(LNDELV), 32);
map.insert(TYPE(SILTNK), 32);
map.insert(TYPE(LNDELV), 33);
map.insert(TYPE(I_DISMAR), 0xFFFFFFFE);
map.insert(TYPE(SOUNDG), 0xFFFFFFFF);

View File

@ -218,6 +218,7 @@ void Style::defaultPointStyle()
_points[TYPE(RDOSTA)] = Point(QImage(":/marine/radio.png"));
_points[TYPE(RADSTA)] = Point(QImage(":/marine/radar.png"));
_points[TYPE(RTPBCN)] = Point(QImage(":/marine/radar-transponder.png"));
_points[TYPE(SILTNK)] = Point(QImage(":/marine/silo.png"));
}
Style::Style()