mapStylePath property

String get mapStylePath

Get the current map view style

Returns

  • The current map view style path

Throws

  • An exception if it fails.

Implementation

String get mapStylePath {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getMapStylePath',
  );

  return resultString['result'];
}