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

Extended marine style

This commit is contained in:
Martin Tůma 2022-03-27 14:46:29 +02:00
parent d7a440f95d
commit 77a3049d6d
5 changed files with 7 additions and 0 deletions

View File

@ -146,10 +146,13 @@
<file alias="obstruction.png">icons/IMG/marine/obstruction.png</file>
<file alias="obstruction-covers.png">icons/IMG/marine/obstruction-covers.png</file>
<file alias="anchor-line.png">icons/IMG/marine/anchor-line.png</file>
<file alias="cable-line.png">icons/IMG/marine/cable-line.png</file>
<file alias="pipeline.png">icons/IMG/marine/pipeline.png</file>
<file alias="cable.png">icons/IMG/marine/cable.png</file>
<file alias="anchorage.png">icons/IMG/marine/anchorage.png</file>
<file alias="anchoring-prohibited.png">icons/IMG/marine/anchoring-prohibited.png</file>
<file alias="church.png">icons/IMG/marine/church.png</file>
<file alias="triangulation-point.png">icons/IMG/marine/triangulation-point.png</file>
</qresource>
<!-- Mapsforge rendertheme -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 B

BIN
icons/IMG/marine/church.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

View File

@ -238,12 +238,14 @@ void Style::defaultLineStyle()
// Marine stuff
_lines[0x10101] = Line(QPen(QColor("#000000"), 1, Qt::SolidLine));
_lines[0x10106] = Line(QImage(":/IMG/cable-line.png"));
_lines[0x10107] = Line(QPen(QColor("#a58140"), 3, Qt::SolidLine));
_lines[0x10108] = Line(QPen(QColor("#000000"), 1, Qt::SolidLine));
_lines[0x10301] = Line(QPen(QColor("#0e1087"), 1, Qt::SolidLine));
_lines[0x10307] = Line(QPen(QColor("#05620e"), 1, Qt::SolidLine));
_lines[0x10401] = Line(QImage(":/IMG/cable.png"));
_lines[0x10402] = Line(QImage(":/IMG/pipeline.png"));
_lines[0x10405] = Line(QPen(QColor("#e728e7"), 1, Qt::DashLine));
_lines[0x10409] = Line(QPen(QColor("#000000"), 1, Qt::DotLine));
_lines[0x10503] = Line(QPen(QColor("#e728e7"), 1, Qt::DashLine));
_lines[0x10507] = Line(QPen(QColor("#e728e7"), 1, Qt::DashLine));
@ -497,6 +499,8 @@ void Style::defaultPointStyle()
_points[0x10206] = Point(QImage(":/IMG/beacon.png"));
_points[0x1020b] = Point(QImage(":/IMG/buoy.png"));
_points[0x1020d] = Point(QImage(":/IMG/light-platform.png"));
_points[0x10306] = Point(QImage(":/IMG/church.png"));
_points[0x1030a] = Point(QImage(":/IMG/triangulation-point.png"));
_points[0x10401] = Point(QImage(":/IMG/obstruction.png"));
_points[0x10402] = Point(QImage(":/IMG/wreck.png"));
_points[0x10403] = Point(QImage(":/IMG/wreck-exposed.png"));