Files
comaps/iphone/Maps/Classes/CarPlay/CPConstants.swift
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
2025-05-08 21:10:51 +07:00

39 lines
1.0 KiB
Swift

import Foundation
struct CPConstants {
struct TemplateKey {
static let map = "map_type"
static let alert = "alert_type"
static let list = "list_type"
}
struct TemplateType {
static let main = "main"
static let navigation = "navigation"
static let preview = "preview"
static let previewAccepted = "preview_accepted"
static let previewSettings = "preview_settings"
static let redirectRoute = "redirect_route"
static let restoreRoute = "restore_route"
static let downloadMap = "download_map"
}
struct ListItemType {
static let history = "history"
static let bookmarks = "bookmarks"
static let bookmarkLists = "bookmark_lists"
static let searchResults = "search_results"
}
struct Maneuvers {
static let primary = "primary"
static let secondary = "secondary"
}
struct Trip {
static let start = "start_point"
static let end = "end_point"
static let errorCode = "error_code"
static let missedCountries = "countries"
}
}