MBXMapboxCommonSettings.h 807 B

123456789101112131415161718192021
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Set of common keys that can be used to configure all Mapbox SDKs. */
  4. NS_SWIFT_NAME(MapboxCommonSettings)
  5. __attribute__((visibility ("default")))
  6. @interface MBXMapboxCommonSettings : NSObject
  7. /**
  8. * The key that defines a language to be used by Mapbox SDKs.
  9. * The value of the key must be a string that is a valid IETF BCP-47 language tag (eg. "en-US").
  10. */
  11. @property (nonatomic, class, readonly) NSString * Language;
  12. /**
  13. * The key that defines a worldview to be used by the Mapbox SDKs.
  14. * The value of the key must be a string that is a valid ISO 3166-1 alpha-2 country code (eg. "US").
  15. */
  16. @property (nonatomic, class, readonly) NSString * Worldview;
  17. @end