mapStyleId property
Get the current view style content id. See ContentStoreItem.id.
If no style is set the function returns 0.
Returns
- The current view style content id
Implementation
int get mapStyleId {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'getMapStyleId',
dependencyId: _mapPointerId,
);
return resultString['result'];
}