Package io.realm.kotlin.types.geo

Types

Distance
Link copied to clipboard
data class Distance

This class represents a distance following the surface of the earth. It can be used in geospatial queries like those represented by a GeoCircle.

GeoBox
Link copied to clipboard
interface GeoBox

This class represents a rectangle on the surface of a the earth. It cannot be persisted - i.e you can't declare a Realm property that is of type GeoBox. It can only be used as a query argument for a geospatial query like this:

GeoCircle
Link copied to clipboard
interface GeoCircle

This class represents a circle on the surface of the earth. It cannot be persisted - i.e you can't declare a Realm property that is of type GeoCircle. It can be only used as a query argument for a geospatial query like this:

GeoPoint
Link copied to clipboard
interface GeoPoint

This class represent a point on earth in geographical coordinates: latitude and longitude.

GeoPolygon
Link copied to clipboard
interface GeoPolygon

This class represents a polygon on the surface of the earth. It cannot be persisted - i.e you can't declare a Realm property that is of type GeoPolygon. It can be only used as a query argument for a geospatial query.