OBJECT
ModelRoom
A room within the model, this acts as a container for other information.
link GraphQL Schema definition
- type ModelRoom {
- : ID!
- # Cortex generated classifiers for the room.
- : [String]
- # Estimate of the dimensions of the room.
- #
- # Arguments
- # units: undefined
- (: Units): Dimension
- # The primary floor this room is located on.
- : ModelFloor
- # Locations of interest within a room. This is generally used to render
- # waypoints to navigate through a model.
- #
- # Arguments
- # ids: If specified only locations with the given ids will be
- # included.
- # If the same id is repeated the location will only appear in the result list
- # once.
- # If no location with a given id exists there will be no corresponding entry in
- # the list.
- # tags: If specified only locations that contain all the
- # specified tags will be included.
- (: [String!], : [String!]): [AnchorLocation!]!
- # Locations within the room that have a panoramic image associated with them.
- # The location is the position of the camera showing the panorama and is usually
- # associated with an anchor location that should be used for navigation.
- #
- # Arguments
- # ids: If specified only locations with the given ids will be
- # included.
- # If the same id is repeated the location will only appear in the result list
- # once.
- # If no location with a given id exists there will be no corresponding entry in
- # the list.
- # variants: If specified only return locations that match one of
- # the specified variants.
- (: [String!], : [String!]): [PanoramicImageLocation!]!
- }
link Require by
- AnchorLocationProvides an anchor within the model to attach other information.
- ModelA digital twin, metadata and access to assets associated with a 3D model of a space.
- ModelFloorRepresents a floor within the model. This is generally used as a navigation helper as well as a container for rooms, locations and annotations.