coordinates property

List<List<List<num>>> get coordinates

Get the coordinates as a collection in GeoJSON format

Implementation

List<List<List<num>>> get coordinates => _coordinates;
set coordinates (List<List<List<num>>> 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();
}