MGLTextAnchor
enum MGLTextAnchor : NSUInteger {}
Part of the text placed closest to the anchor.
Values of this type are used in the MGLSymbolStyleLayer.textAnchor
property.
-
The center of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorCenter
Swift
case center = 0
-
The left side of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorLeft
Swift
case left = 1
-
The right side of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorRight
Swift
case right = 2
-
The top of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorTop
Swift
case top = 3
-
The bottom of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorBottom
Swift
case bottom = 4
-
The top left corner of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorTopLeft
Swift
case topLeft = 5
-
The top right corner of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorTopRight
Swift
case topRight = 6
-
The bottom left corner of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorBottomLeft
Swift
case bottomLeft = 7
-
The bottom right corner of the text is placed closest to the anchor.
Declaration
Objective-C
MGLTextAnchorBottomRight
Swift
case bottomRight = 8