#import #import "MGLStyleLayer.h" #import "MGLTypes.h" @class MGLSource; NS_ASSUME_NONNULL_BEGIN /** A version number identifying the default version of the suite of default styles provided by Mapbox. This version number may be passed into one of the “StyleURLWithVersion” class methods of MGLStyle. The value of this constant generally corresponds to the latest released version as of the date on which this SDK was published. You can use this constant to ascertain the style used by `MGLMapView` and `MGLTilePyramidOfflineRegion` when no style URL is specified. Consult the Mapbox Styles API documentation for the most up-to-date style versioning information. @warning The value of this constant may change in a future release of the SDK. If you use any feature that depends on a specific aspect of a default style – for instance, the minimum zoom level that includes roads – you may use the current value of this constant or the underlying style URL, but do not use the constant itself. Such details may change significantly from version to version. */ static const NSInteger MGLStyleDefaultVersion = 9; /** The proxy object for the current map style for customization purposes and a set of convenience methods for creating style URLs of default styles provided by Mapbox. Learn more about Mapbox default styles. */ @interface MGLStyle : NSObject #pragma mark Default Style URLs /** Returns the URL to version 8 of the Mapbox Streets style. Streets is a general-purpose style with detailed road and transit networks. `MGLMapView` and `MGLTilePyramidOfflineRegion` use Mapbox Streets when no style is specified explicitly. */ + (NSURL *)streetsStyleURL __attribute__((deprecated("Use -streetsStyleURLWithVersion:."))); /** Returns the URL to the given version of the Mapbox Streets style. Streets is a general-purpose style with detailed road and transit networks. `MGLMapView` and `MGLTilePyramidOfflineRegion` use Mapbox Streets when no style is specified explicitly. @param version The style’s latest released version. As of publication, the current version is `9`. */ + (NSURL *)streetsStyleURLWithVersion:(NSInteger)version; /** Returns the URL to version 8 of the Mapbox Emerald style. Emerald is a tactile style with subtle textures and dramatic hillshading. */ + (NSURL *)emeraldStyleURL __attribute__((deprecated("Create an NSURL object with the string “mapbox://styles/mapbox/emerald-v8”."))); /** Returns the URL to the given version of the Mapbox Outdoors style. Outdoors is a general-purpose style tailored to outdoor activities. @param version The style’s latest released version. As of publication, the current version is `9`. */ + (NSURL *)outdoorsStyleURLWithVersion:(NSInteger)version; /** Returns the URL to version 8 of the Mapbox Light style. Light is a subtle, light-colored backdrop for data visualizations. */ + (NSURL *)lightStyleURL __attribute__((deprecated("Use -lightStyleURLWithVersion:."))); /** Returns the URL to the given version of the Mapbox Light style. Light is a subtle, light-colored backdrop for data visualizations. @param version The style’s latest released version. As of publication, the current version is `9`. */ + (NSURL *)lightStyleURLWithVersion:(NSInteger)version; /** Returns the URL to version 8 of the Mapbox Dark style. Dark is a subtle, dark-colored backdrop for data visualizations. */ + (NSURL *)darkStyleURL __attribute__((deprecated("Use -darkStyleURLWithVersion:."))); /** Returns the URL to the given version of the Mapbox Dark style. Dark is a subtle, dark-colored backdrop for data visualizations. @param version The style’s latest released version. As of publication, the current version is `9`. */ + (NSURL *)darkStyleURLWithVersion:(NSInteger)version; /** Returns the URL to version 8 of the Mapbox Satellite style. Satellite is high-resolution satellite and aerial imagery. */ + (NSURL *)satelliteStyleURL __attribute__((deprecated("Use -satelliteStyleURLWithVersion:."))); /** Returns the URL to the given version of the Mapbox Satellite style. Satellite is high-resolution satellite and aerial imagery. @param version The style’s latest released version. As of publication, the current version is `9`. */ + (NSURL *)satelliteStyleURLWithVersion:(NSInteger)version; /** Returns the URL to version 8 of the Mapbox Satellite Streets style. Satellite Streets combines the high-resolution satellite and aerial imagery of Mapbox Satellite with unobtrusive labels and translucent roads from Mapbox Streets. */ + (NSURL *)hybridStyleURL __attribute__((deprecated("Use -satelliteStreetsStyleURLWithVersion:."))); /** Returns the URL to the given version of the Mapbox Satellite Streets style. Satellite Streets combines the high-resolution satellite and aerial imagery of Mapbox Satellite with unobtrusive labels and translucent roads from Mapbox Streets. @param version The style’s latest released version. As of publication, the current version is `9`. */ + (NSURL *)satelliteStreetsStyleURLWithVersion:(NSInteger)version; /** The name of the style. You can customize the style’s name in Mapbox Studio. */ @property (readonly, copy, nullable) NSString *name; #pragma mark Runtime Styling /** Returns a layer that conforms to `MGLStyleLayer` if any layer with the given identifier was found. @return An instance of a concrete subclass of `MGLStyleLayer` associated with the given identifier. */ - (nullable MGLStyleLayer *)layerWithIdentifier:(NSString *)identifier; /** Returns a source if any source with the given identifier was found. @return An instance of a concrete subclass of `MGLSource` associated with the given identifier. */ - (nullable MGLSource *)sourceWithIdentifier:(NSString *)identifier; /** Adds a new layer on top of existing layers. @param layer The layer object to add to the map view. This object must be an instance of a concrete subclass of `MGLStyleLayer`. */ - (void)addLayer:(MGLStyleLayer *)layer; /** Inserts a new layer below another layer. @param layer Layer to be inserted. @param belowLayer A layer that's already on the map view. */ - (void)insertLayer:(MGLStyleLayer *)layer belowLayer:(MGLStyleLayer *)otherLayer; /** Removes a layer from the map view. @param layer The layer object to remove from the map view. This object must conform to the `MGLStyleLayer` protocol. */ - (void)removeLayer:(MGLStyleLayer *)layer; /** Adds a new source to the map view. @param source The source to add to the map view. */ - (void)addSource:(MGLSource *)source; /** Removes a source from the map view. @param source The source to remove. */ - (void)removeSource:(MGLSource *)source; /** Currently active style classes, represented as an array of string identifiers. */ @property (nonatomic) NS_ARRAY_OF(NSString *) *styleClasses; /** Returns a Boolean value indicating whether the style class with the given identifier is currently active. @param styleClass The style class to query for. @return Whether the style class is currently active. */ - (BOOL)hasStyleClass:(NSString *)styleClass; /** Activates the style class with the given identifier. @param styleClass The style class to activate. */ - (void)addStyleClass:(NSString *)styleClass; /** Deactivates the style class with the given identifier. @param styleClass The style class to deactivate. */ - (void)removeStyleClass:(NSString *)styleClass; /** Adds or overrides an image used by the style’s layers. To use an image in a style layer, give it a unique name using this method, then set the `iconImage` property of an `MGLSymbolStyleLayer` object to that name. @param image The image for the name. @param name The name of the image to set to the style. */ - (void)setImage:(MGLImage *)image forName:(NSString *)name; /** Removes a name and its associated image from the style. @param name The name of the image to remove. */ - (void)removeImageForName:(NSString *)name; @end NS_ASSUME_NONNULL_END