Chế độ xem vĩ độ-kinh độ, được biểu thị dưới dạng hai điểm low và high đối diện nhau theo đường chéo. Khung nhìn được coi là một vùng kín, tức là bao gồm cả ranh giới. Giới hạn vĩ độ phải nằm trong khoảng từ -90 đến 90 độ, và giới hạn kinh độ phải nằm trong khoảng từ -180 đến 180 độ. Có nhiều trường hợp như sau:
Nếu low = high, khung nhìn sẽ bao gồm một điểm duy nhất đó.
Nếu low.longitude > high.longitude, thì dải kinh độ sẽ bị đảo ngược (khung nhìn sẽ cắt ngang đường kinh độ 180 độ).
Nếu low.longitude = -180 độ và high.longitude = 180 độ, thì khung nhìn sẽ bao gồm tất cả kinh độ.
Nếu low.longitude = 180 độ và high.longitude = -180 độ, thì phạm vi kinh độ sẽ trống.
Nếu low.latitude > high.latitude, thì phạm vi vĩ độ sẽ trống.
Bạn phải điền cả low và high, đồng thời hộp được biểu thị không được để trống (như đã chỉ định trong các định nghĩa ở trên). Chế độ xem trống sẽ dẫn đến lỗi.
Ví dụ: khung nhìn này bao gồm toàn bộ thành phố New York:
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2025-04-29 UTC."],[[["A Viewport is defined by two points, `low` and `high`, representing the Southwest and Northeast corners respectively, forming a rectangular area on a map."],["Latitude ranges from -90 to +90 degrees, while longitude ranges from -180 to +180 degrees, inclusive."],["Specific conditions, like inverted longitude or empty latitude ranges, are defined for special viewport scenarios."],["Both `low` and `high` points are mandatory, and the resulting viewport must represent a valid, non-empty area to avoid errors."]]],["A viewport, defined by `low` and `high` latitude-longitude points, represents a closed geographical region. Both `low` and `high` points are mandatory. The longitude range inverts if `low.longitude` exceeds `high.longitude`. Specific cases include single-point viewports if `low` equals `high`, full longitude coverage if the longitude ranges from -180 to 180, and empty ranges if the `low` point exceedes `high` respectively in longitude or latitude. An empty viewport is considered an error.\n"]]