1#ifndef OSMSCOUT_POISERVICE_H
2#define OSMSCOUT_POISERVICE_H
51 const TypeInfoSet& nodeTypes,
52 std::vector<NodeRef>& nodes,
53 const TypeInfoSet& wayTypes,
54 std::vector<WayRef>& ways,
55 const TypeInfoSet& areaTypes,
56 std::vector<AreaRef>& areas)
const;
59 const Distance& maxDistance,
60 const TypeInfoSet& nodeTypes,
61 std::vector<NodeRef>& nodes,
62 const TypeInfoSet& wayTypes,
63 std::vector<WayRef>& ways,
64 const TypeInfoSet& areaTypes,
65 std::vector<AreaRef>& areas)
const;
#define OSMSCOUT_API
Definition CoreImportExport.h:45
POIService(const DatabaseRef &database)
void GetPOIsInArea(const GeoBox &boundingBox, const TypeInfoSet &nodeTypes, std::vector< NodeRef > &nodes, const TypeInfoSet &wayTypes, std::vector< WayRef > &ways, const TypeInfoSet &areaTypes, std::vector< AreaRef > &areas) const
void GetPOIsInRadius(const GeoCoord &location, const Distance &maxDistance, const TypeInfoSet &nodeTypes, std::vector< NodeRef > &nodes, const TypeInfoSet &wayTypes, std::vector< WayRef > &ways, const TypeInfoSet &areaTypes, std::vector< AreaRef > &areas) const
std::shared_ptr< POIService > POIServiceRef
Definition POIService.h:70
std::shared_ptr< Database > DatabaseRef
Reference counted reference to an Database instance.
Definition Database.h:555