getCollectionAt method
- int index
Get collection at index.
Parameters
- IN index The collection index
Returns
- The MarkerCollection object
Throws
- An exception if it fails.
Implementation
MarkerCollection getCollectionAt(final int index) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewMarkerCollections',
'getCollectionAt',
args: index,
);
return MarkerCollection.init(resultString['result'], _mapId);
}