[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["The `geodesic()` method determines whether polygon edges are rendered as straight lines or curved to follow the Earth's curvature."],["When set to `false`, edges appear straight in the projection; when `true`, edges are curved, representing the shortest path on the Earth's surface."],["This method applies to `Polygon` geometries and returns a boolean value indicating the geodesic setting."],["You can use this method to visually represent and accurately measure distances on a geographic scale."]]],["The `Polygon.geodesic()` method determines if a polygon's edges are curved to follow the Earth's surface's shortest path. It returns a Boolean value: `true` indicates curved edges, `false` indicates straight edges. This method is applied to a `Geometry` object representing a polygon. Examples in JavaScript and Python show defining a polygon, applying `geodesic()`, and printing/displaying the Boolean result. The code also provides map visualization to show polygon.\n"]]