CartographicBoundaryEntity

data class CartographicBoundaryEntity(val id: Long = 0, val administrativeUnitNameCartographicBoundariesID: Long, val administrativeLevel: String, var boundingBoxSouthwest: GeoLocationEntity, var boundingBoxNortheast: GeoLocationEntity, val zIndex: Float)

The class representation of the entity 'CartographicBoundary' from the database. This entity stores information about cartographic boundaries associated with administrative units.

Parameters

boundingBoxSouthwest

the Geolocation of the southwest BoundingBox.

boundingBoxNortheast

the Geolocation of the northeast BoundingBox.

Constructors

Link copied to clipboard
constructor(id: Long = 0, administrativeUnitNameCartographicBoundariesID: Long, administrativeLevel: String, boundingBoxSouthwest: GeoLocationEntity, boundingBoxNortheast: GeoLocationEntity, zIndex: Float)

Properties

Link copied to clipboard

the administrative level of this unit (e.g., state, county, city).

the id of the AdministrativeUnitName entity. When the AdministrativeUnitName will be retrieved from the database the CartographicBoundary entity associated with it will come together

Link copied to clipboard
val id: Long = 0

(Long, auto-generated) the unique identifier for the cartographic boundary within the database.

Link copied to clipboard

the layer order on the map where the boundary should be drawn (higher zIndex means drawn on top of others).