getCollectionAt method

MarkerCollection getCollectionAt(
  1. int index
)

Get collection at index.

Parameters

  • IN index The collection index

Returns

Implementation

MarkerCollection getCollectionAt(final int index) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewMarkerCollections',
    'getCollectionAt',
    args: index,
    dependencyId: _mapPointerId,
  );

  return MarkerCollection.init(resultString['result'], _mapId);
}