16 lines
262 B
Swift
16 lines
262 B
Swift
//
|
|
// MapPinStyle.swift
|
|
// Earthquake Network
|
|
//
|
|
// Created by Andrea Busi on 28/02/25.
|
|
// Copyright © 2025 Earthquake Network. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum MapPinStyle: Int, CaseIterable {
|
|
case circle
|
|
case light
|
|
case full
|
|
}
|