GPKGMapShapeTypes

Objective-C

@interface GPKGMapShapeTypes : NSObject

/**
 *  Get the name of the shape type
 *
 *  @param shapeType shape type
 *
 *  @return shape type name
 */
+(NSString *) name: (enum GPKGMapShapeType) shapeType;

/**
 *  Get the map shape type of the name
 *
 *  @param name shape type name
 *
 *  @return shape type
 */
+(enum GPKGMapShapeType) fromName: (NSString *) name;

@end

Swift

class GPKGMapShapeTypes : NSObject

Undocumented