getSketches method

MarkerSketches getSketches(
  1. MarkerType type
)

Sketches collection access.

Parameters

  • IN type The sketch type, see MarkerType for values

Returns

Implementation

MarkerSketches getSketches(MarkerType type) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewMarkerCollections',
    'sketches',
    args: type.id,
    dependencyId: _mapPointerId,
  );

  return MarkerSketches.init(resultString['result'], 0);
}