Cartographic Boundary Entity
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
bounding Box Southwest
the Geolocation of the southwest BoundingBox.
bounding Box Northeast
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).
Link copied to clipboard
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
Link copied to clipboard