getSketches method
- MarkerType type
Sketches collection access.
Parameters
- IN type The sketch type, see MarkerType for values
Returns
- The MarkerSketches collection reference
Implementation
MarkerSketches getSketches(MarkerType type) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewMarkerCollections',
'sketches',
args: type.id,
dependencyId: _mapPointerId,
);
return MarkerSketches.init(resultString['result'], 0);
}