좌표의 좌표 참조 시스템입니다. 기본값은 입력의 투영이며, 여기서 숫자는 EPSG:4326으로 간주됩니다.
geodesic
불리언, 기본값: null
false인 경우 모서리가 투영에서 직선입니다. true인 경우 모서리가 지구 표면에서 가장 짧은 경로를 따라 곡선으로 표시됩니다. 기본값은 입력의 측지선 상태입니다. 입력이 숫자인 경우 기본값은 true입니다.
maxError
ErrorMargin, 기본값: null
입력 형상을 명시적으로 요청된 결과 투영 또는 최단 거리 상태로 다시 투영해야 할 때의 최대 오류입니다.
evenOdd
불리언, 기본값: true
true인 경우 다각형 내부는 짝수/홀수 규칙에 따라 결정됩니다. 무한대의 점에 도달하기 위해 홀수 개의 모서리를 교차하는 경우 점이 내부에 있습니다. 그렇지 않으면 다각형은 왼쪽 내부 규칙을 사용합니다. 이 규칙에서는 지정된 순서로 꼭짓점을 따라 이동할 때 셸의 가장자리의 왼쪽에 내부가 있습니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-26(UTC)"],[[["Creates a MultiPolygon geometry from a list of Polygons, or a list of Points/coordinate pairs for a single polygon."],["Allows specification of coordinate reference system (`crs`), geodesic behavior, maximum error for reprojection, and polygon interior calculation method."],["Defaults to using the projection and geodesic state of the input coordinates, assuming EPSG:4326 for numeric inputs if unspecified."],["Offers control over polygon interiors using the even/odd rule (default) or the left-inside rule."]]],["The `MultiPolygon` constructor creates a geometry from a list of polygon coordinates. Input `coordinates` define either multiple polygons or a single polygon via points or number pairs. Optional parameters include `crs` for coordinate system, `geodesic` to determine edge curvature, `maxError` for reprojection precision, and `evenOdd` for polygon interior determination. This function returns a `Geometry` object, and default values are available for `crs`, `geodesic`, `maxError`, and `evenOdd`.\n"]]