Floorplan

open_in_new

A floorplan, often formatted as an image, although other options may be available.

GraphQL Schema definition

  • type Floorplan implements Asset {
  • # The floor associated with with this floorplan.
  • # This will not be set if the asset includes all the floors in the model.
  • floor: ModelFloor
  • # Additional information about the style of this floorplan.
  • flags: [FloorplanFlag!]!
  • # A key indicating the source of the floorplan
  • provider: String!
  • # The height of the floorplan image in pixels, may not be available for all
  • # floorplans.
  • height: Int
  • # The width of the floorplan image in pixels, may not be available for all
  • # floorplans.
  • width: Int
  • # The pixels per meter resolution of the floorplan image, may not be available for
  • # all floorplans.
  • resolution: Float
  • # The location of the leftmost/bottommost pixel of the floorplan in the 3D model's
  • # coordinate system.
  • # The floorplan is aligned to the 3D model, so image U (left to right) of
  • # floorplan corresponds to x in the 3D model,
  • # and image V (bottom to top) in floorplan corresponds to y in the 3D model.
  • # Origin may not be available for all floorplans.
  • origin: Point2D
  • model: Model
  • id: ID
  • status: AssetStatus
  • filename: String
  • format: String!
  • url: String
  • downloadUrl: String
  • # If populated, the url is only valid until the time given
  • validUntil: DateTime
  • }