SITIndoorRouteStep Class Reference
Inherits from | NSObject |
---|---|
Declared in | SITIndoorRouteStep.h |
indoorPoint
A SITIndoorPoint of a SITIndoorBuilding
@property (nonatomic, strong) SITIndoorPoint *indoorPoint
Declared In
SITIndoorRouteStep.h
cost
The distance to the next step
@property (nonatomic, strong) NSNumber *cost
Declared In
SITIndoorRouteStep.h
destination
The SITIndoorPoint where this steps ends
@property (nonatomic, strong) SITIndoorPoint *destination
Declared In
SITIndoorRouteStep.h
– initWithIndoorPoint:cost:
Initializer to create SITIndoorRouteStep objects
- (instancetype)initWithIndoorPoint:(SITIndoorPoint *)indoorPoint cost:(NSNumber *)cost
Parameters
indoorPoint |
SITIndoorPoint object |
---|---|
cost |
Distance to the next step |
Discussion
You should not use this class directly. Instead you should use the ones returned when computing routes (methods on class SITGraph).
Declared In
SITIndoorRouteStep.h
– initWithIndoorPoint:destination:cost:
Designated initializer to create SITIndoorRouteStep objects
- (instancetype)initWithIndoorPoint:(SITIndoorPoint *)indoorPoint destination:(SITIndoorPoint *)destination cost:(NSNumber *)cost
Parameters
indoorPoint |
SITIndoorPoint object |
---|---|
destination |
SITIndoorPoint object |
cost |
Distance to the next step |
Discussion
You should not use this class directly. Instead you should use the ones returned when computing routes (methods on class SITGraph).
Declared In
SITIndoorRouteStep.h