libosmscout
0.1
|
#include <LookupModule.h>
Classes | |
class | ObjectInfo |
Public Types | |
enum | AdminRegionLevel { NA1 = 1, Country = 2, Territory = 3, State = 4, NA5 = 5, Region = 6, District = 7, Town = 8, Neighbourhood = 9 } |
Common sense of administrative region levels. More... | |
Public Slots | |
void | onDatabaseLoaded (QString dbPath, QList< osmscout::TileRef > tiles) |
void | onLoadJobFinished (QMap< QString, QMap< osmscout::TileKey, osmscout::TileRef >> tiles) |
void | requestLocationDescription (const osmscout::GeoCoord location) |
Start retrieving place information based on objects on or near the location. More... | |
void | requestObjects (const LocationEntry &, bool reverseLookupAddresses) |
void | requestObjectsOnView (const MapViewStruct &, const QRectF &filterRectangle) |
void | requestRegionLookup (const osmscout::GeoCoord location) |
Start retrieving list of place admin regions. More... | |
Signals | |
void | initialisationFinished (const osmscout::GeoBox &response) |
void | locationAdminRegionFinished (const osmscout::GeoCoord location) |
void | locationAdminRegions (const osmscout::GeoCoord location, QList< AdminRegionInfoRef > adminRegionList) |
void | locationDescription (const osmscout::GeoCoord location, const QString database, const osmscout::LocationDescription description, const QList< AdminRegionInfoRef > regions) |
void | locationDescriptionFinished (const osmscout::GeoCoord location) |
void | objectsLoaded (const LocationEntry &, const QList< LookupModule::ObjectInfo > &objects) |
void | viewObjectsLoaded (const MapViewStruct &, const QList< LookupModule::ObjectInfo > &objects) |
Public Member Functions | |
LookupModule (QThread *thread, DBThreadRef dbThread) | |
~LookupModule () | |
Static Public Member Functions | |
static QStringList | AdminRegionNames (const QList< AdminRegionInfoRef > ®ionList, bool useAltNames) |
Helper method that returns list of unique admin region names. More... | |
static QStringList | IndexedAdminRegionNames (const QList< AdminRegionInfoRef > ®ionList, bool useAltNames) |
Helper method that returns names of admin region in indexed array. More... | |
Friends | |
class | SearchLocationsRunnable |
class | SearchRunnable |
Common sense of administrative region levels.
Note that levels may have different meaning in various countries... https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dadministrative
Enumerator | |
---|---|
NA1 | |
Country | |
Territory | |
State | |
NA5 | |
Region | |
District | |
Town | |
Neighbourhood |
osmscout::LookupModule::LookupModule | ( | QThread * | thread, |
DBThreadRef | dbThread | ||
) |
osmscout::LookupModule::~LookupModule | ( | ) |
|
static |
Helper method that returns list of unique admin region names.
When region list contains two (following) administrative regions with the same name (for example Prague "district", Prague "city"), it will return such name just once.
regionList |
Referenced by osmscout::MapObjectInfoModel::data(), osmscout::NearPOIModel::data(), osmscout::LocationListModel::data(), and osmscout::LocationInfoModel::onLocationAdminRegions().
|
static |
Helper method that returns names of admin region in indexed array.
Array length is 12. When some level is not present, empty string is used. Level 2 are counties. Levels > 2 are country specific. See https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dadministrative for meaning of individual levels.
regionList | |
useAltNames |
Referenced by osmscout::LocationListModel::data().
|
signal |
|
signal |
|
signal |
|
signal |
Referenced by osmscout::LocationInfoModel::LocationInfoModel().
|
signal |
Referenced by osmscout::LocationInfoModel::LocationInfoModel().
|
signal |
Referenced by osmscout::MapObjectInfoModel::MapObjectInfoModel().
|
slot |
Referenced by requestObjectsOnView().
|
slot |
Referenced by requestObjectsOnView().
|
slot |
Start retrieving place information based on objects on or near the location.
LookupModule then emits locationDescription signals followed by locationDescriptionFinished.
User of this function should use Qt::QueuedConnection for invoking this slot, operation may generate IO load and may tooks long time.
location |
References osmscout::LocationDescription::GetAtAddressDescription(), osmscout::LocationDescription::GetAtPOIDescription(), and osmscout::GeoBox::Includes().
Referenced by osmscout::LocationInfoModel::LocationInfoModel().
|
slot |
|
slot |
References osmscout::DBLoadJob::databaseLoaded(), osmscout::DBLoadJob::finished(), onDatabaseLoaded(), onLoadJobFinished(), osmscout::DBLoadJob::Run(), osmscout::MercatorProjection::Set(), and osmscout::MercatorProjection::SetLinearInterpolationUsage().
Referenced by osmscout::MapObjectInfoModel::MapObjectInfoModel().
|
slot |
Start retrieving list of place admin regions.
LookupModule then emits locationAdminRegions signals followed by locationAdminRegionFinished.
User of this function should use Qt::QueuedConnection for invoking this slot, operation may generate IO load and may tooks long time.
location |
References osmscout::GeoBox::Includes().
Referenced by osmscout::LocationInfoModel::LocationInfoModel(), and osmscout::LocationListModel::LocationListModel().
|
signal |
Referenced by osmscout::MapObjectInfoModel::MapObjectInfoModel().
|
friend |
|
friend |