> For the complete documentation index, see [llms.txt](https://docs.medable.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.medable.com/cortex-api/objects-definition/object-properties/geometry.md).

# Geometry

Property Type: `geometry`

Geometry types store longitude latitude coordinates. There are two sub-types of Geo:

1. **Point** \[x, y]\
   Two floats that represent a point (on a map or otherwise)
2. **Multi-Point** \[ Point, Point, Point, ...]\
   an array of Points

Geometry types become very handy when you later want to check if a given x-y coordinate lies within the bounds of pre-defined area. For more info on this, see Geospatial Operators.

### Property Options

| Name    | Type   | Default | Description                                                                                       |
| ------- | ------ | ------- | ------------------------------------------------------------------------------------------------- |
| geoType | string | "Point" | "Point" or "MultiPoint" stringEnum that defines what kind of coordinate data this prop will hold. |
