Lista obiektów LineString lub, w przypadku pojedynczego obiektu LineString, lista obiektów Point lub par liczb w kolejności x,y.
crs
Prognoza, domyślnie: null
Układ odniesienia współrzędnych. Domyślnie jest to projekcja danych wejściowych, w której liczby są traktowane jako EPSG:4326.
geodesic
Wartość logiczna, domyślnie: null
W przypadku wartości false (fałsz) krawędzie są proste w projekcji. Jeśli ma wartość true, krawędzie są zakrzywione, aby podążać najkrótszą ścieżką na powierzchni Ziemi. Domyślnie jest to stan geodezyjny danych wejściowych lub wartość „prawda”, jeśli dane wejściowe są liczbami.
maxError
ErrorMargin, domyślnie: null
Maksymalny błąd, gdy geometria wejściowa musi zostać ponownie przekształcona na wyraźnie żądane przekształcenie wyniku lub stan geodezyjny.
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 2025-07-26 UTC."],[[["Creates a MultiLineString geometry from a list of LineStrings or Points."],["Accepts `coordinates`, `crs`, `geodesic`, and `maxError` as inputs to define the MultiLineString."],["The `crs` parameter specifies the coordinate reference system, defaulting to EPSG:4326 if numbers are provided."],["The `geodesic` parameter determines if edges are straight or follow the Earth's curvature, with a default based on input type."]]],["The function `MultiLineString` creates a geometry object from a list of coordinates. It takes `coordinates` defining the LineStrings, and optionally, the `crs` (coordinate reference system), `geodesic` (true for curved edges, false for straight), and `maxError` (for reprojection errors). The function returns a `Geometry` object representing the constructed MultiLineString. `coordinates` can be a list of LineStrings, points or a list of number pairs in x,y order.\n"]]