summaryrefslogtreecommitdiff
path: root/include/mbgl/ios/MGLMapView.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/ios/MGLMapView.h')
-rw-r--r--include/mbgl/ios/MGLMapView.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/mbgl/ios/MGLMapView.h b/include/mbgl/ios/MGLMapView.h
index 88d75088bf..7c757ba93c 100644
--- a/include/mbgl/ios/MGLMapView.h
+++ b/include/mbgl/ios/MGLMapView.h
@@ -179,13 +179,17 @@ IB_DESIGNABLE
/** Currently active style classes, represented as an array of string identifiers. */
@property (nonatomic) NSArray *styleClasses;
-/** Returns a Boolean value indicating whether the style class with the given identifier is currently active. */
+/** 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. */
+/** 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. */
+/** Deactivates the style class with the given identifier.
+ @param styleClass The style class to deactivate. */
- (void)removeStyleClass:(NSString *)styleClass;
#pragma mark - Annotating the Map