northFixedFlag property
Get the North-fixed flag value.
Returns
True if the view is aligned to North, false otherwise.
Implementation
bool get northFixedFlag {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'getNorthFixedFlag',
dependencyId: _mapPointerId,
);
return resultString['result'];
}
Set the North-fixed flag value.
Parameters
isNorthFixed: True to lock the view to North, false otherwise.
Implementation
set northFixedFlag(final bool isNorthFixed) {
objectMethod(
_pointerId,
'MapViewPreferences',
'setNorthFixedFlag',
args: isNorthFixed,
dependencyId: _mapPointerId,
);
}