1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-08 03:03:02 +02:00

Compare commits

..

No commits in common. "d0ca202520385d8eb2c1d1ed646e06bf41c6a91d" and "0da16199f8a424cb2b5517be5abd5ad0b7fd2db8" have entirely different histories.

6 changed files with 7 additions and 26 deletions

View File

@ -43,7 +43,6 @@
<file alias="casino-11.svg">icons/map/POI/casino-11.svg</file> <file alias="casino-11.svg">icons/map/POI/casino-11.svg</file>
<file alias="castle-11.svg">icons/map/POI/castle-11.svg</file> <file alias="castle-11.svg">icons/map/POI/castle-11.svg</file>
<file alias="cemetery-11.svg">icons/map/POI/cemetery-11.svg</file> <file alias="cemetery-11.svg">icons/map/POI/cemetery-11.svg</file>
<file alias="charging-station-11.svg">icons/map/POI/charging-station-11.svg</file>
<file alias="cinema-11.svg">icons/map/POI/cinema-11.svg</file> <file alias="cinema-11.svg">icons/map/POI/cinema-11.svg</file>
<file alias="clothing-store-11.svg">icons/map/POI/clothing-store-11.svg</file> <file alias="clothing-store-11.svg">icons/map/POI/clothing-store-11.svg</file>
<file alias="college-11.svg">icons/map/POI/college-11.svg</file> <file alias="college-11.svg">icons/map/POI/college-11.svg</file>

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" id="charging-station-11" xmlns="http://www.w3.org/2000/svg" width="11px" height="11px" viewBox="0 0 11 11">
<path d="M9.5,3H9V1.5C9,1.2239,8.7761,1,8.5,1S8,1.2239,8,1.5V3c0,0.5523,0.4477,1,1,1v4.25C9,8.3881,8.8881,8.5,8.75,8.5&#xA;&#x9;S8.5,8.3881,8.5,8.25V6.5C8.5,5.6716,7.8284,5,7,5V2c0-0.5523-0.4477-1-1-1H2C1.4477,1,1,1.4477,1,2v7c0,0.5523,0.4477,1,1,1h4&#xA;&#x9;c0.5523,0,1-0.4477,1-1V6c0.2761,0,0.5,0.2239,0.5,0.5v1.75c0,0.6904,0.5596,1.25,1.25,1.25S10,8.9404,10,8.25V3.5&#xA;&#x9;C10,3.2239,9.7761,3,9.5,3z M3.5,8.75H3L4,6H1.75L4.5,2.25H5L4,5h2.25L3.5,8.75z"/>
</svg>

Before

Width:  |  Height:  |  Size: 635 B

View File

@ -43,7 +43,6 @@
#define I_RDOCAL 17017 #define I_RDOCAL 17017
#define I_WTWDIS 17064 #define I_WTWDIS 17064
#define I_CATBRT 17066 #define I_CATBRT 17066
#define I_CATBUN 17067
#define I_HUNITS 17103 #define I_HUNITS 17103
#endif // ENC_ATTRIBUTES_H #endif // ENC_ATTRIBUTES_H

View File

@ -70,10 +70,10 @@ static QMap<uint,uint> orderMapInit()
map.insert(TYPE(I_TRNBSN), 32); map.insert(TYPE(I_TRNBSN), 32);
map.insert(TYPE(HRBFAC), 33); map.insert(TYPE(HRBFAC), 33);
map.insert(TYPE(I_HRBFAC), 33); map.insert(TYPE(I_HRBFAC), 33);
map.insert(TYPE(RADRFL), 34); map.insert(TYPE(PILPNT), 34);
map.insert(TYPE(PILPNT), 35); map.insert(TYPE(ACHBRT), 35);
map.insert(TYPE(ACHBRT), 36); map.insert(TYPE(I_ACHBRT), 35);
map.insert(TYPE(I_ACHBRT), 36); map.insert(TYPE(RADRFL), 36);
map.insert(TYPE(CRANES), 37); map.insert(TYPE(CRANES), 37);
map.insert(TYPE(I_CRANES), 37); map.insert(TYPE(I_CRANES), 37);
map.insert(TYPE(I_WTWGAG), 38); map.insert(TYPE(I_WTWGAG), 38);
@ -81,10 +81,9 @@ static QMap<uint,uint> orderMapInit()
map.insert(TYPE(SLCONS), 40); map.insert(TYPE(SLCONS), 40);
map.insert(TYPE(LNDMRK), 41); map.insert(TYPE(LNDMRK), 41);
map.insert(TYPE(SILTNK), 42); map.insert(TYPE(SILTNK), 42);
map.insert(TYPE(I_BUNSTA), 43); map.insert(TYPE(LNDELV), 43);
map.insert(TYPE(LNDELV), 44); map.insert(TYPE(SMCFAC), 44);
map.insert(TYPE(SMCFAC), 45); map.insert(TYPE(BUISGL), 45);
map.insert(TYPE(BUISGL), 46);
map.insert(TYPE(I_DISMAR), 0xFFFFFFFE); map.insert(TYPE(I_DISMAR), 0xFFFFFFFE);
map.insert(TYPE(SOUNDG), 0xFFFFFFFF); map.insert(TYPE(SOUNDG), 0xFFFFFFFF);
@ -374,8 +373,6 @@ MapData::Point::Point(uint type, const Coordinates &c, const Attributes &attr,
subtype = I_CATACH; subtype = I_CATACH;
else if (type == MARKUL) else if (type == MARKUL)
subtype = CATMFA; subtype = CATMFA;
else if (type == I_BUNSTA)
subtype = I_CATBUN;
QList<QByteArray> list(_attr.value(subtype).split(',')); QList<QByteArray> list(_attr.value(subtype).split(','));
std::sort(list.begin(), list.end()); std::sort(list.begin(), list.end());

View File

@ -122,7 +122,6 @@
#define I_GATCON 17031 #define I_GATCON 17031
#define I_SLCONS 17032 #define I_SLCONS 17032
#define I_WTWAXS 17051 #define I_WTWAXS 17051
#define I_BUNSTA 17054
#define I_TERMNL 17064 #define I_TERMNL 17064
#define I_TRNBSN 17065 #define I_TRNBSN 17065
#define I_WTWGAG 17067 #define I_WTWGAG 17067

View File

@ -435,13 +435,6 @@ void Style::pointStyle(qreal ratio)
_points[SUBTYPE(I_RESARE, 22)] = _points[SUBTYPE(RESARE, 22)]; _points[SUBTYPE(I_RESARE, 22)] = _points[SUBTYPE(RESARE, 22)];
_points[SUBTYPE(I_RESARE, 23)] = _points[SUBTYPE(RESARE, 23)]; _points[SUBTYPE(I_RESARE, 23)] = _points[SUBTYPE(RESARE, 23)];
_points[SUBTYPE(I_BUNSTA, 1)] = Point(svg2img(":/POI/fuel-11.svg", ratio),
Small);
_points[SUBTYPE(I_BUNSTA, 2)] = Point(svg2img(":/POI/drinking-water-11.svg",
ratio), Small);
_points[SUBTYPE(I_BUNSTA, 4)] = Point(svg2img(":/POI/charging-station-11.svg",
ratio), Small);
_points[SUBTYPE(SMCFAC, 7)] = Point(svg2img(":/POI/restaurant-11.svg", _points[SUBTYPE(SMCFAC, 7)] = Point(svg2img(":/POI/restaurant-11.svg",
ratio), Small); ratio), Small);
_points[SUBTYPE(SMCFAC, 11)] = Point(svg2img(":/POI/pharmacy-11.svg", _points[SUBTYPE(SMCFAC, 11)] = Point(svg2img(":/POI/pharmacy-11.svg",
@ -450,8 +443,6 @@ void Style::pointStyle(qreal ratio)
ratio), Small); ratio), Small);
_points[SUBTYPE(SMCFAC, 13)] = Point(svg2img(":/POI/fuel-11.svg", ratio), _points[SUBTYPE(SMCFAC, 13)] = Point(svg2img(":/POI/fuel-11.svg", ratio),
Small); Small);
_points[SUBTYPE(SMCFAC, 14)] = Point(svg2img(":/POI/charging-station-11.svg",
ratio), Small);
_points[SUBTYPE(SMCFAC, 18)] = Point(svg2img(":/POI/toilet-11.svg", ratio), _points[SUBTYPE(SMCFAC, 18)] = Point(svg2img(":/POI/toilet-11.svg", ratio),
Small); Small);
_points[SUBTYPE(SMCFAC, 20)] = Point(svg2img(":/POI/telephone-11.svg", _points[SUBTYPE(SMCFAC, 20)] = Point(svg2img(":/POI/telephone-11.svg",