GPKGMapPointOptions
Objective-C
@interface GPKGMapPointOptions : NSObject <NSMutableCopying>Swift
class GPKGMapPointOptions : NSObject, NSMutableCopyingMap Point options including style and atributes
- 
                  
                  Pin tint color DeclarationObjective-C @property (nonatomic) int *pinTintColor;Swift var pinTintColor: CIColor! { get set }
- 
                  
                  Deprecated Use pinTintColor instead Standard pin annotation color @deprecated within MKPinAnnotationView, use pinTintColor instead DeclarationObjective-C @property (nonatomic) MKPinAnnotationColor pinColor;Swift var pinColor: MKPinAnnotationColor { get set }
- 
                  
                  Icon image, replacing the use of a pin color DeclarationObjective-C @property (nonatomic, strong) UIImage *imageSwift var image: CIImage! { get set }
- 
                  
                  Image center offset when drawing the image icon DeclarationObjective-C @property (nonatomic) CGPoint imageCenterOffset;Swift var imageCenterOffset: CGPoint { get set }
- 
                  
                  True if the icon is draggable DeclarationObjective-C @property (nonatomic) BOOL draggable;Swift var draggable: Bool { get set }
- 
                  
                  Map point initializer for callbacks DeclarationObjective-C @property (nonatomic, strong) NSObject<GPKGMapPointInitializer> *initializer;Swift var initializer: (any GPKGMapPointInitializer)! { get set }
- 
                  
                  Initialize DeclarationObjective-C - (id)init;Swift init!()Return Valuenew map point options 
- 
                  
                  Pin the image so the middle bottom of the image is drawn at the location DeclarationObjective-C - (void)pinImage;Swift func pinImage()
- 
                  
                  Center the image so it is drawn with the center at the location DeclarationObjective-C - (void)centerImage;Swift func centerImage()
- 
                  
                  Set the image so that is drawn according to the anchor values DeclarationObjective-C - (void)anchorWithU:(double)anchorU andV:(double)anchorV;Swift func anchor(withU anchorU: Double, andV anchorV: Double)ParametersanchorUUV Mapping horizontal anchor distance inclusively between 0.0 and 1.0 from the left edge, when null assume 0.5 (middle of icon) anchorVUV Mapping vertical anchor distance inclusively between 0.0 and 1.0 from the top edge, when null assume 1.0 (bottom of icon) 
 View on GitHub
View on GitHub GPKGMapPointOptions Class Reference
        GPKGMapPointOptions Class Reference