API published in: S60 3rd Ed
Link against: eposlmsearchlib.lib eposlmmultidbsearch.lib
Required Capabilities
None
Exceptions
The capability ReadUserData is required in:
CPosLandmarkSearch::StartLandmarkSearchL( const CPosLmSearchCriteria & aCriteria, TBool aSearchOnlyPreviousMatches = EFalse );
CPosLandmarkSearch::StartLandmarkSearchL( const CPosLmSearchCriteria & aCriteria, const TPosLmSortPref & aSortPref, TBool aSearchOnlyPreviousMatches = EFalse );
CPosLandmarkSearch::StartCategorySearchL( const CPosLmSearchCriteria & aCriteria, CPosLmCategoryManager::TCategorySortPref aSortPref, TBool aSearchOnlyPreviousMatches = EFalse );
CPosLmMultiDbSearch::StartLandmarkSearchL( const CPosLmSearchCriteria & aCriteria, TBool aSearchOnlyPreviousMatches = EFalse );
CPosLmMultiDbSearch::StartLandmarkSearchL( const CPosLmSearchCriteria & aCriteria, const TPosLmSortPref & aSortPref, TBool aSearchOnlyPreviousMatches = EFalse );
CPosLmMultiDbSearch::StartCategorySearchL( const CPosLmSearchCriteria & aCriteria, CPosLmCategoryManager::TCategorySortPref aSortPref, TBool aSearchOnlyPreviousMatches = EFalse );
Other Information
The capability NetworkServices is required to work with remote databases.
#include <epos_cposlmnearestcriteria.h>
Inherits CPosLmSearchCriteria.
When using CPosLmNearestCriteria, the matches returned in the search are sorted in ascending distance order if the client does not specify other sort preferences.
By default, this search returns all landmarks in the database, except those which have no coordinates. It is recommended to specify a maximum distance to narrow down the search. This is done by SetMaxDistance.
The client can specify if the coverage radius should be used. If coverage radius is used, the distance to the landmark coverage area border is used instead of the distance to the landmark coverage area center. If the source coordinate is inside the landmark coverage area, the distance is considered zero. By default, the coverage radius is not used.
This criterion is only valid when searching for landmarks, i.e. if it is passed to CPosLandmarkSearch::StartCategorySearchL
, the function will fail with error code KErrArgument
.
Public Member Functions |
|
virtual | ~CPosLmNearestCriteria () |
Destructor. |
|
IMPORT_C void | GetCoordinate (TCoordinate &aCoordinate) const |
Returns the center coordinate of the search. |
|
IMPORT_C void | SetCoordinate (const TCoordinate &aCoordinate) |
Set the center coordinate of the search. |
|
IMPORT_C TBool | UseCoverageRadius () const |
Returns if coverage radius is considered in the search. |
|
IMPORT_C void | SetUseCoverageRadius (TBool aUseCoverageRadius) |
Set if coverage radius should be considered in the search. |
|
IMPORT_C TReal32 | MaxDistance () const |
Returns whether the search should be limited to landmarks which are closer than a maximum distance. |
|
IMPORT_C void | SetMaxDistance (TReal32 aMaxDistance) |
Set a maximum distance for the search. |
|
Static Public Member Functions |
|
static IMPORT_C CPosLmNearestCriteria * | NewLC (const TCoordinate &aCoordinate, TBool aUseCoverageRadius=EFalse) |
Two-phased constructor. |
|
Destructor. |
|
Returns the center coordinate of the search.
|
|
Returns whether the search should be limited to landmarks which are closer than a maximum distance. By default the maximum distance is set to NaN which means that the distance is unlimited.
|
|
Two-phased constructor. Latitude and longitude must be set in the coordinate (not NaN). Altitude is ignored.
|
|
Set the center coordinate of the search. Latitude and longitude must be set in the coordinate (not NaN). Altitude is ignored.
|
|
Set a maximum distance for the search. Only landmarks, which are closer to the center coordinate than the maximum distance are considered matches.
|
|
Set if coverage radius should be considered in the search.
|
|
Returns if coverage radius is considered in the search.
|