mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Added missing fences rendering
This commit is contained in:
parent
2438150679
commit
0c5076eaaf
@ -173,6 +173,7 @@
|
|||||||
<file alias="platform.png">icons/map/marine/platform.png</file>
|
<file alias="platform.png">icons/map/marine/platform.png</file>
|
||||||
<file alias="ferry-line.png">icons/map/marine/ferry-line.png</file>
|
<file alias="ferry-line.png">icons/map/marine/ferry-line.png</file>
|
||||||
<file alias="dw-route-line.png">icons/map/marine/dw-route-line.png</file>
|
<file alias="dw-route-line.png">icons/map/marine/dw-route-line.png</file>
|
||||||
|
<file alias="fence-line.png">icons/map/marine/fence-line.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
|
|
||||||
<!-- Mapsforge rendertheme -->
|
<!-- Mapsforge rendertheme -->
|
||||||
|
BIN
icons/map/marine/fence-line.png
Normal file
BIN
icons/map/marine/fence-line.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 124 B |
@ -32,6 +32,7 @@
|
|||||||
#define DMPGRD 48
|
#define DMPGRD 48
|
||||||
#define DYKCON 49
|
#define DYKCON 49
|
||||||
#define FAIRWY 51
|
#define FAIRWY 51
|
||||||
|
#define FNCLNE 52
|
||||||
#define FERYRT 53
|
#define FERYRT 53
|
||||||
#define FLODOC 57
|
#define FLODOC 57
|
||||||
#define GATCON 61
|
#define GATCON 61
|
||||||
|
@ -114,6 +114,7 @@ void Style::defaultLineStyle()
|
|||||||
_lines[SUBTYPE(RCRTCL, 2)] = Line(QPen(QColor("#eb49eb"), 0, Qt::DashLine));
|
_lines[SUBTYPE(RCRTCL, 2)] = Line(QPen(QColor("#eb49eb"), 0, Qt::DashLine));
|
||||||
_lines[TYPE(FAIRWY)] = Line(QPen(QColor("#888888"), 1, Qt::DashDotDotLine));
|
_lines[TYPE(FAIRWY)] = Line(QPen(QColor("#888888"), 1, Qt::DashDotDotLine));
|
||||||
_lines[TYPE(BERTHS)] = Line(QPen(QColor("#333333"), 2));
|
_lines[TYPE(BERTHS)] = Line(QPen(QColor("#333333"), 2));
|
||||||
|
_lines[TYPE(FNCLNE)] = Line(QImage(":/marine/fence-line.png"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Style::defaultPointStyle()
|
void Style::defaultPointStyle()
|
||||||
|
Loading…
Reference in New Issue
Block a user