setCoords method

void setCoords(
  1. Iterable<NLatLng> coords
)

다각형의 지점들을 지정합니다. 다각형의 기본 조건을 따라, 점이 3개 이상 있어야 합니다.

Implementation

void setCoords(Iterable<NLatLng> coords) {
  assert(coords.length >= 3);
  _coords = coords;
  _set(_coordsName, coords);
}