AWFGeographicObject
@interface AWFGeographicObject : AWFWeatherObject
An AWFGeographicObject
object is an AWFWeatherObject
subclass that represents data for a specific geographical location. The geographical location can
either be a coordinate or a place and is represented by an AWFPlace
instance.
-
Location and place information associated with this object.
See
AWFPlaceDeclaration
Objective-C
@property (readwrite, strong, nonatomic, nullable) AWFPlace *place;
Swift
var place: AWFPlace? { get set }
-
An object representing the actual location used for the request and its geographical position relative to this object.
See
AWFRelativeToDeclaration
Objective-C
@property (readwrite, strong, nonatomic, nullable) AWFRelativeTo *relativeTo;
Swift
var relativeTo: AWFRelativeTo? { get set }