diff --git a/gpxsee.qrc b/gpxsee.qrc index 8c09bd38..ebdebefa 100644 --- a/gpxsee.qrc +++ b/gpxsee.qrc @@ -173,6 +173,7 @@ icons/map/marine/platform.png icons/map/marine/ferry-line.png icons/map/marine/dw-route-line.png + icons/map/marine/fence-line.png diff --git a/icons/map/marine/fence-line.png b/icons/map/marine/fence-line.png new file mode 100644 index 00000000..ad30681a Binary files /dev/null and b/icons/map/marine/fence-line.png differ diff --git a/src/map/ENC/objects.h b/src/map/ENC/objects.h index a740a8ac..6e0cebd3 100644 --- a/src/map/ENC/objects.h +++ b/src/map/ENC/objects.h @@ -32,6 +32,7 @@ #define DMPGRD 48 #define DYKCON 49 #define FAIRWY 51 +#define FNCLNE 52 #define FERYRT 53 #define FLODOC 57 #define GATCON 61 diff --git a/src/map/ENC/style.cpp b/src/map/ENC/style.cpp index 9bad2e34..cac84c2c 100644 --- a/src/map/ENC/style.cpp +++ b/src/map/ENC/style.cpp @@ -114,6 +114,7 @@ void Style::defaultLineStyle() _lines[SUBTYPE(RCRTCL, 2)] = Line(QPen(QColor("#eb49eb"), 0, Qt::DashLine)); _lines[TYPE(FAIRWY)] = Line(QPen(QColor("#888888"), 1, Qt::DashDotDotLine)); _lines[TYPE(BERTHS)] = Line(QPen(QColor("#333333"), 2)); + _lines[TYPE(FNCLNE)] = Line(QImage(":/marine/fence-line.png")); } void Style::defaultPointStyle()