AnchorLocation

open_in_new

Provides an anchor within the model to attach other information.

GraphQL Schema definition

  • type AnchorLocation {
  • id: ID!
  • model: Model!
  • position: Point
  • floor: ModelFloor
  • room: ModelRoom
  • # The anchor's label visible in showcase/workshop.
  • #
  • # @deprecated This has been moved to panoramic image location. It will now return
  • # the value of PanoramicImageLocation::label.
  • label: String!
  • # A list of the IDs of other anchors visible from this panoramic image.
  • neighbors: [ID!]
  • # A set of tags that may be given to this
  • # location.
  • tags: [String!]
  • # The available variants for the
  • # panoramic image locations.
  • panoImageVariants: [String!]
  • # Gets a single PanoramicImageLocation from the list of
  • # available locations. If variant is not specified
  • # it will be 'default'.
  • #
  • # Arguments
  • # variant: undefined
  • pano(variant: String): PanoramicImageLocation
  • # A list of all the panoramic imags associated with this location.
  • panos: [PanoramicImageLocation!]
  • }