mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-19 19:59:11 +02:00
Compare commits
2 Commits
f2ae75d7f5
...
001fa34cdd
Author | SHA1 | Date | |
---|---|---|---|
001fa34cdd | |||
a97dc3b6c2 |
@ -173,9 +173,13 @@ static bool polygonCb(const MapData::Poly *polygon, void *context)
|
|||||||
static bool polygonPointCb(const MapData::Poly *polygon, void *context)
|
static bool polygonPointCb(const MapData::Poly *polygon, void *context)
|
||||||
{
|
{
|
||||||
QList<MapData::Point> *points = (QList<MapData::Point>*)context;
|
QList<MapData::Point> *points = (QList<MapData::Point>*)context;
|
||||||
if (!(polygon->type()>>16 == BUISGL && polygon->label().isEmpty()))
|
uint baseType = polygon->type()>>16;
|
||||||
|
|
||||||
|
if (!polygon->label().isEmpty() || baseType == TSSLPT || baseType == RCTLPT
|
||||||
|
|| baseType == I_TRNBSN || polygon->type() == SUBTYPE(I_BERTHS, 6))
|
||||||
points->append(MapData::Point(polygon->type(), polygon->bounds().center(),
|
points->append(MapData::Point(polygon->type(), polygon->bounds().center(),
|
||||||
polygon->label(), polygon->param()));
|
polygon->label(), polygon->param()));
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user