AnchorLocation

open_in_new

Provides an anchor within the model to attach other information.

GraphQL Schema definition

  • type AnchorLocation implements LayeredElement {
  • floor: ModelFloor
  • id: ID!
  • # 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!
  • layer: ModelLayer
  • model: Model!
  • # A list of the IDs of other anchors that are recommended for
  • # navigation from this point.
  • #
  • # This will often be the set of anchors visible from this one but
  • # may be limited to a subset for large models or edited to include
  • # obstructed anchors when needed.
  • neighbors: [ID!]
  • # 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
  • # The available variants for the
  • # panoramic image locations.
  • panoImageVariants: [String!]
  • # A list of all the panoramic imags associated with this location.
  • panos: [PanoramicImageLocation!]
  • position: Point
  • room: ModelRoom
  • # A set of tags that may be given to this
  • # location.
  • tags: [String!]
  • }