mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-21 04:39:10 +02:00
Compare commits
No commits in common. "b64065e076bc8ee712dc6ff1420a4d71bab0a68c" and "4a0b7ec83eddb169adbf9bd2f54907210f1a50c7" have entirely different histories.
b64065e076
...
4a0b7ec83e
@ -712,7 +712,7 @@
|
||||
<location filename="../src/GUI/gui.cpp" line="907"/>
|
||||
<location filename="../src/GUI/gui.cpp" line="925"/>
|
||||
<source>CRS directory:</source>
|
||||
<translation>CRS könyvtár:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="913"/>
|
||||
|
@ -962,7 +962,7 @@
|
||||
<location filename="../src/GUI/gui.cpp" line="907"/>
|
||||
<location filename="../src/GUI/gui.cpp" line="925"/>
|
||||
<source>CRS directory:</source>
|
||||
<translation>CRS-mapp:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="915"/>
|
||||
|
@ -712,7 +712,7 @@
|
||||
<location filename="../src/GUI/gui.cpp" line="907"/>
|
||||
<location filename="../src/GUI/gui.cpp" line="925"/>
|
||||
<source>CRS directory:</source>
|
||||
<translation>CRS dizini:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/GUI/gui.cpp" line="913"/>
|
||||
|
@ -866,7 +866,7 @@
|
||||
<location filename="../src/GUI/gui.cpp" line="907"/>
|
||||
<location filename="../src/GUI/gui.cpp" line="925"/>
|
||||
<source>CRS directory:</source>
|
||||
<translation>CRS 目录:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>GCS/PCS directory:</source>
|
||||
|
@ -41,9 +41,11 @@ static double distance(const Coordinates &c1, const Coordinates &c2)
|
||||
return hypot(c1.lon() - c2.lon(), c1.lat() - c2.lat());
|
||||
}
|
||||
|
||||
static bool isClosed(const QVector<Coordinates> &poly)
|
||||
static bool isClosed(const Polygon &poly)
|
||||
{
|
||||
return (distance(poly.first(), poly.last()) < 0.000000001);
|
||||
if (poly.isEmpty() || poly.first().isEmpty())
|
||||
return false;
|
||||
return (distance(poly.first().first(), poly.first().last()) < 0.000000001);
|
||||
}
|
||||
|
||||
static bool readSingleDelta(SubFile &subfile, const Coordinates &c,
|
||||
@ -620,20 +622,20 @@ bool MapData::readPaths(const VectorTile *tile, int zoom, QList<Path> *list)
|
||||
return false;
|
||||
}
|
||||
if (flags & 0x08) {
|
||||
if (!subfile.readVUInt32(blocks) || !blocks)
|
||||
if (!subfile.readVUInt32(blocks))
|
||||
return false;
|
||||
} else
|
||||
blocks = 1;
|
||||
|
||||
Q_ASSERT(blocks);
|
||||
for (unsigned j = 0; j < blocks; j++) {
|
||||
if (!readPolygonPath(subfile, tile->pos, flags & 0x04, p.poly))
|
||||
return false;
|
||||
}
|
||||
const QVector<Coordinates> &outline = p.poly.first();
|
||||
p.closed = isClosed(outline);
|
||||
p.closed = isClosed(p.poly);
|
||||
if (flags & 0x10)
|
||||
p.labelPos = Coordinates(outline.first().lon() + MD(lon),
|
||||
outline.first().lat() + MD(lat));
|
||||
p.labelPos = Coordinates(p.poly.first().first().lon() + MD(lon),
|
||||
p.poly.first().first().lat() + MD(lat));
|
||||
|
||||
list->append(p);
|
||||
}
|
||||
|
@ -62,12 +62,13 @@ private:
|
||||
class RenderInstruction
|
||||
{
|
||||
public:
|
||||
RenderInstruction() : _render(0), _path(0), _point(0) {}
|
||||
RenderInstruction() : _pathRender(0), _circleRender(0), _path(0),
|
||||
_point(0) {}
|
||||
RenderInstruction(const Style::PathRender *render, PainterPath *path)
|
||||
: _render(render), _path(path), _point(0) {}
|
||||
: _pathRender(render), _circleRender(0), _path(path), _point(0) {}
|
||||
RenderInstruction(const Style::CircleRender *render,
|
||||
const MapData::Point *point) : _render(render), _path(0),
|
||||
_point(point) {}
|
||||
const MapData::Point *point) : _pathRender(0), _circleRender(render),
|
||||
_path(0), _point(point) {}
|
||||
|
||||
bool operator<(const RenderInstruction &other) const
|
||||
{
|
||||
@ -77,10 +78,8 @@ private:
|
||||
return (layer() < other.layer());
|
||||
}
|
||||
|
||||
const Style::PathRender *pathRender() const
|
||||
{return static_cast<const Style::PathRender*>(_render);}
|
||||
const Style::CircleRender *circleRender() const
|
||||
{return static_cast<const Style::CircleRender*>(_render);}
|
||||
const Style::PathRender *pathRender() const {return _pathRender;}
|
||||
const Style::CircleRender *circleRender() const {return _circleRender;}
|
||||
PainterPath *path() const {return _path;}
|
||||
const MapData::Point *point() const {return _point;}
|
||||
|
||||
@ -88,12 +87,11 @@ private:
|
||||
int layer() const {return _path ? _path->path->layer : _point->layer;}
|
||||
int zOrder() const
|
||||
{
|
||||
return _path
|
||||
? static_cast<const Style::PathRender*>(_render)->zOrder()
|
||||
: static_cast<const Style::CircleRender*>(_render)->zOrder();
|
||||
return _pathRender ? _pathRender->zOrder() : _circleRender->zOrder();
|
||||
}
|
||||
|
||||
const Style::Render *_render;
|
||||
const Style::PathRender *_pathRender;
|
||||
const Style::CircleRender *_circleRender;
|
||||
PainterPath *_path;
|
||||
const MapData::Point *_point;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user