Description

The IndexableGeometry type is a union of all the geometry types that can be indexed.

Attributes

AttributeTypeDescription
pointLatLngThe indexable point.
line_stripLineStripThe indexable linestrip.
polygonPolygonThe indexable polygon.
multi_polygonMultiPolygonThe indexable multi polygon.

Proto Definition

message IndexableGeometry {
  oneof geometry {
    LatLng point = 1;
    LineStrip line_strip = 2;
    Polygon polygon = 3;
    MultiPolygon multi_polygon = 6;
  }
  reserved 4, 5, 7;
  reserved "multi_point", "multi_line", "multi_geometry";
}