landmarkCount property
Get the number of landmarks in the session
Returns
- The number of landmarks
Throws
- An exception if it fails
Implementation
int get landmarkCount {
final OperationResult resultString = objectMethod(
_pointerId,
'LandmarkBrowseSession',
'getLandmarkCount',
);
return resultString['result'];
}