Description
The IndexableGeometry
type is a union of all the geometry types that can be indexed.
Attributes
Attribute | Type | Description |
---|---|---|
point | LatLng | The indexable point. |
line_strip | LineStrip | The indexable linestrip. |
polygon | Polygon | The indexable polygon. |
multi_polygon | MultiPolygon | The 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";
}