Un'area visibile di latitudine e longitudine, rappresentata da due punti diagonalmente opposti a low e high. Un'area visibile è considerata una regione chiusa, ovvero include il proprio confine. I limiti di latitudine devono essere compresi tra -90 e 90 gradi inclusi, mentre i limiti di longitudine devono essere compresi tra -180 e 180 gradi inclusi. Ecco alcuni casi:
Se low = high, l'area visibile è composta da quel singolo punto.
Se low.longitude > high.longitude, l'intervallo di longitudine viene invertito (l'area visibile attraversa la linea di longitudine di 180 gradi).
Se low.longitude = -180 gradi e high.longitude = 180 gradi, l'area visibile include tutte le longitudini.
Se low.longitude = 180 gradi e high.longitude = -180 gradi, l'intervallo di longitudine è vuoto.
Se low.latitude > high.latitude, l'intervallo di latitudine è vuoto.
È necessario compilare entrambi i campi low e high e la casella rappresentata non può essere vuota (come specificato dalle definizioni precedenti). Un'area visibile vuota causerà un errore.
Ad esempio, questa area visibile include completamente New York:
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2024-06-26 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"]]