coordinates property
Get the coordinates as a collection in GeoJSON format
Implementation
List<List<List<num>>> get coordinates => _coordinates;
Update the coordinates list for the polygon, the coordinates must be in GeoJSON format
Implementation
set coordinates(List<List<List<num>>> coordinates) {
_coordinates = coordinates;
_clearCache();
}