updateLandmark method
- Landmark landmark
Update the information about a landmark.
This updates only the information about a landmark and does not modify the categories the landmark belongs to. The landmark instance passed in as the parameter must be an instance that belongs to this landmark store. Calling this method updates the timestamp of the landmark.
Parameters
- IN landmark The landmark to be updated.
Throws
- An exception if it fails.
Implementation
void updateLandmark(final Landmark landmark) {
objectMethod(
_pointerId,
'LandmarkStore',
'updateLandmark',
args: landmark.pointerId,
);
}