CPosLmNearestCriteria Class Reference

#include <mw/EPos_CPosLmNearestCriteria.h>

Link against: eposlmsearchlib.lib

class CPosLmNearestCriteria : public CPosLmSearchCriteria

Inherits from

Detailed Description

Criterion for finding the landmarks which are closest to a certain coordinate, called "center coordinate".

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.

Since
S60 3.0

Constructor & Destructor Documentation

~CPosLmNearestCriteria ( )

~CPosLmNearestCriteria()[virtual]

Destructor.

Member Function Documentation

GetCoordinate ( TCoordinate & )

IMPORT_C voidGetCoordinate(TCoordinate &aCoordinate)const

Returns the center coordinate of the search.

ParameterDescription
aCoordinateOn return, contains the center coordinate.

MaxDistance ( )

IMPORT_C TReal32MaxDistance()const

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.

Returns: The maximum distance or NaN if the distance is unlimited.

NewLC ( const TCoordinate &, TBool )

IMPORT_C CPosLmNearestCriteria *NewLC(const TCoordinate &aCoordinate,
TBoolaUseCoverageRadius = EFalse
)[static]

Two-phased constructor.

Latitude and longitude must be set in the coordinate (not NaN). Altitude is ignored.

panic
"Landmarks Client"-EPosNaNCoordinate Latitude and/or longitude is NaN.
ParameterDescription
aCoordinateThe center coordinate of the landmark search.
aUseCoverageRadiusETrue if coverage radius should be considered in the search.

SetCoordinate ( const TCoordinate & )

IMPORT_C voidSetCoordinate(const TCoordinate &aCoordinate)

Set the center coordinate of the search.

Latitude and longitude must be set in the coordinate (not NaN). Altitude is ignored.

panic
"Landmarks Client"-EPosNaNCoordinate Latitude and/or longitude is NaN.
ParameterDescription
aCoordinateThe center coordinate of the landmarks search.

SetMaxDistance ( TReal32 )

IMPORT_C voidSetMaxDistance(TReal32aMaxDistance)

Set a maximum distance for the search.

Only landmarks, which are closer to the center coordinate than the maximum distance are considered matches.

ParameterDescription
aMaxDistanceThe maximum distance or NaN if the distance should be unlimited.

SetUseCoverageRadius ( TBool )

IMPORT_C voidSetUseCoverageRadius(TBoolaUseCoverageRadius)

Set if coverage radius should be considered in the search.

ParameterDescription
aUseCoverageRadiusETrue if coverage radius should be considered in the search. EFalse otherwise.

UseCoverageRadius ( )

IMPORT_C TBoolUseCoverageRadius()const

Returns if coverage radius is considered in the search.

Returns: ETrue if coverage radius is considered in the search. EFalse otherwise.