SITFloor

@interface SITFloor : SITBuildingResource

Floor of a building.

  • Deprecated

    Deprecated, use floor instead

    Numeric value representing the ground level. This value can be negative to designate floors below the ground floor @deprecated Use floor property instead {@link #floor}

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) NSInteger level;
  • String containing the name of the floor.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) NSString *_Nonnull name;
  • Numeric value representating the ground level. This value can be negative to designate floors below the ground floor

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) NSInteger floor;
  • Scale of the floor image in px/meters

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) double scale;
  • Vertical altitude of the floor inside the building (in meters)

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) double altitude;
  • URL where the floorplan can be downloaded

    See

    Use -fetchMapFromFloor:withCompletion: instead of retrieving the image directly, as this will store the image on cache, so it’s available to you later on.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) SITURL *_Nonnull mapURL;