From 22b3834caa5fe3ae91cf957124a3f1ad1d165cee Mon Sep 17 00:00:00 2001 From: Jesse Bounds Date: Wed, 4 Jan 2017 07:35:25 -0800 Subject: [ios, macos] Add support for data-driven property functions --- platform/darwin/src/MGLLineStyleLayer.h | 64 ++++++++++++++++----------------- 1 file changed, 32 insertions(+), 32 deletions(-) (limited to 'platform/darwin/src/MGLLineStyleLayer.h') diff --git a/platform/darwin/src/MGLLineStyleLayer.h b/platform/darwin/src/MGLLineStyleLayer.h index d8c8f6a466..26eb310d8e 100644 --- a/platform/darwin/src/MGLLineStyleLayer.h +++ b/platform/darwin/src/MGLLineStyleLayer.h @@ -77,7 +77,7 @@ typedef NS_ENUM(NSUInteger, MGLLineTranslationAnchor) { /** An `MGLLineStyleLayer` is a style layer that renders one or more stroked polylines on the map. - + Use a line style layer to configure the visual appearance of polyline or multipolyline features in vector tiles loaded by an `MGLVectorSource` object or `MGLPolyline`, `MGLPolylineFeature`, `MGLMultiPolyline`, or @@ -111,7 +111,7 @@ MGL_EXPORT /** The display of line endings. - + The default value of this property is an `MGLStyleValue` object containing an `NSValue` object containing `MGLLineCapButt`. Set this property to `nil` to reset it to the default value. @@ -120,7 +120,7 @@ MGL_EXPORT /** The display of lines when joining. - + The default value of this property is an `MGLStyleValue` object containing an `NSValue` object containing `MGLLineJoinMiter`. Set this property to `nil` to reset it to the default value. @@ -129,11 +129,11 @@ MGL_EXPORT /** Used to automatically convert miter joins to bevel joins for sharp angles. - + The default value of this property is an `MGLStyleValue` object containing an `NSNumber` object containing the float `2`. Set this property to `nil` to reset it to the default value. - + This property is only applied to the style if `lineJoin` is set to an `MGLStyleValue` object containing an `NSValue` object containing `MGLLineJoinMiter`. Otherwise, it is ignored. @@ -142,11 +142,11 @@ MGL_EXPORT /** Used to automatically convert round joins to miter joins for shallow angles. - + The default value of this property is an `MGLStyleValue` object containing an `NSNumber` object containing the float `1.05`. Set this property to `nil` to reset it to the default value. - + This property is only applied to the style if `lineJoin` is set to an `MGLStyleValue` object containing an `NSValue` object containing `MGLLineJoinRound`. Otherwise, it is ignored. @@ -157,9 +157,9 @@ MGL_EXPORT /** Blur applied to the line, in points. - + This property is measured in points. - + The default value of this property is an `MGLStyleValue` object containing an `NSNumber` object containing the float `0`. Set this property to `nil` to reset it to the default value. @@ -169,11 +169,11 @@ MGL_EXPORT #if TARGET_OS_IPHONE /** The color with which the line will be drawn. - + The default value of this property is an `MGLStyleValue` object containing `UIColor.blackColor`. Set this property to `nil` to reset it to the default value. - + This property is only applied to the style if `linePattern` is set to `nil`. Otherwise, it is ignored. */ @@ -181,11 +181,11 @@ MGL_EXPORT #else /** The color with which the line will be drawn. - + The default value of this property is an `MGLStyleValue` object containing `NSColor.blackColor`. Set this property to `nil` to reset it to the default value. - + This property is only applied to the style if `linePattern` is set to `nil`. Otherwise, it is ignored. */ @@ -196,12 +196,12 @@ MGL_EXPORT Specifies the lengths of the alternating dashes and gaps that form the dash pattern. The lengths are later scaled by the line width. To convert a dash length to points, multiply the length by the current line width. - + This property is measured in line widths. - + This property is only applied to the style if `linePattern` is set to `nil`. Otherwise, it is ignored. - + This attribute corresponds to the line-dasharray layout property in the Mapbox Style Specification. @@ -213,9 +213,9 @@ MGL_EXPORT /** Draws a line casing outside of a line's actual path. Value indicates the width of the inner gap. - + This property is measured in points. - + The default value of this property is an `MGLStyleValue` object containing an `NSNumber` object containing the float `0`. Set this property to `nil` to reset it to the default value. @@ -227,9 +227,9 @@ MGL_EXPORT the right, relative to the direction of the line, and a negative value to the left. For polygon features, a positive value results in an inset, and a negative value results in an outset. - + This property is measured in points. - + The default value of this property is an `MGLStyleValue` object containing an `NSNumber` object containing the float `0`. Set this property to `nil` to reset it to the default value. @@ -238,7 +238,7 @@ MGL_EXPORT /** The opacity at which the line will be drawn. - + The default value of this property is an `MGLStyleValue` object containing an `NSNumber` object containing the float `1`. Set this property to `nil` to reset it to the default value. @@ -254,13 +254,13 @@ MGL_EXPORT #if TARGET_OS_IPHONE /** The geometry's offset. - + This property is measured in points. - + The default value of this property is an `MGLStyleValue` object containing an `NSValue` object containing a `CGVector` struct set to 0 points rightward and 0 points downward. Set this property to `nil` to reset it to the default value. - + This attribute corresponds to the line-translate layout property in the Mapbox Style Specification. @@ -269,13 +269,13 @@ MGL_EXPORT #else /** The geometry's offset. - + This property is measured in points. - + The default value of this property is an `MGLStyleValue` object containing an `NSValue` object containing a `CGVector` struct set to 0 points rightward and 0 points upward. Set this property to `nil` to reset it to the default value. - + This attribute corresponds to the line-translate layout property in the Mapbox Style Specification. @@ -287,14 +287,14 @@ MGL_EXPORT /** Controls the translation reference point. - + The default value of this property is an `MGLStyleValue` object containing an `NSValue` object containing `MGLLineTranslationAnchorMap`. Set this property to `nil` to reset it to the default value. - + This property is only applied to the style if `lineTranslation` is non-`nil`. Otherwise, it is ignored. - + This attribute corresponds to the line-translate-anchor layout property in the Mapbox Style Specification. @@ -305,9 +305,9 @@ MGL_EXPORT /** Stroke thickness. - + This property is measured in points. - + The default value of this property is an `MGLStyleValue` object containing an `NSNumber` object containing the float `1`. Set this property to `nil` to reset it to the default value. -- cgit v1.2.1