partCount property
The number of parts contained in this marker.
Returns
- An integer representing how many parts (lists of coordinates) this marker has.
Implementation
int get partCount {
final OperationResult resultString = objectMethod(
_pointerId,
'Marker',
'getPartCount',
);
return resultString['result'];
}