편의를 위해 모든 인수가 숫자인 경우 varargs를 사용할 수 있습니다. 이를 통해 짝수 개의 인수가 주어지면 EPSG:4326 MultiPoints를 만들 수 있습니다(예: ee.Geometry.MultiPoint(aLng, aLat, bLng, bLat, ...)).
사용
반환 값
ee.Geometry.MultiPoint(coords, proj)
Geometry.MultiPoint
인수
유형
세부정보
coords
List<Geometry>|List<List<Number>>|List<Number>
각각 포인트의 GeoJSON 'coordinates' 형식인 포인트 목록, 지정된 투영의 x,y 좌표 목록 또는 포인트를 설명하는 ee.Geometry입니다.
proj
투영(선택사항)
이 도형의 투영입니다. 지정하지 않으면 입력 ee.Geometry의 투영이 기본값으로 설정되며, ee.Geometry 입력이 없는 경우 EPSG:4326이 기본값으로 설정됩니다.
[[["이해하기 쉬움","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-08(UTC)"],[[["Creates a MultiPoint Geometry, representing a collection of points."],["Accepts a list of points, which can be GeoJSON coordinates, coordinate pairs, or ee.Geometry points."],["Optionally allows specifying the projection of the geometry, defaulting to the input's projection or EPSG:4326."],["Supports a simplified construction using varargs for EPSG:4326 MultiPoints with alternating longitude and latitude values."]]],[]]