AWFGeographicObject

Objective-C

@interface AWFGeographicObject : AWFWeatherObject

Swift

class 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

    AWFPlace

    Declaration

    Objective-C

    @property (nonatomic, strong, 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

    AWFRelativeTo

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) AWFRelativeTo *relativeTo;

    Swift

    var relativeTo: AWFRelativeTo? { get set }