//
//  MarkPosition.swift
//  react-native-image-marker
//
//  Created by Jimmydaddy on 2023/7/13.
//

enum MarkerPositionEnum: NSString {
    case topLeft = "topLeft"
    case topCenter = "topCenter"
    case topRight = "topRight"
    case bottomLeft = "bottomLeft"
    case bottomCenter = "bottomCenter"
    case bottomRight = "bottomRight"
    case center = "center"
    case none = "none"
}
