Description

The LatLngBBox type represents a bounding box in 2D WGS84 Lat/Long space. The bounding box is represented by the top-left and bottom-right corners. It is possible to represent a bounding box that crosses the 180th meridian by specifying the top-left corner with a longitude greater than the bottom-right corner.

Attributes

AttributeTypeDescription
top_leftLatLngThe top-left corner of the bounding box.
bottom_rightLatLngThe bottom-right corner of the bounding box.

Proto Definition

message LatLngBBox {
  LatLng top_left = 1; 
  LatLng bottom_right = 2; 
}