isMapSceneObjectVisible method
- MapSceneObject obj
Get the given map scene object visibility in current view.
Parameters
- IN obj The MapSceneObject
Returns
- True if the object is visible, false otherwise.
Throws
- An exception if it fails.
Implementation
bool isMapSceneObjectVisible(final MapSceneObject obj) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'isMapSceneObjectVisible',
args: obj,
);
return resultString['result'];
}