| 12345678910111213141516171819202122 |
- //
- // Constans.swift
- // Runner
- //
- // Created by Groot on 2025/5/13.
- //
- import Foundation
- struct MapKitConstans {
- // 位置更新事件通道名称
- static let locationUpdateEventChannelName: String = "atmob_map_location_event_channel"
-
- // 通用方法通道
- static let commonMethodChannelName: String = "atmob_map_method_channel"
- // 地图相关通道名称
- static let mapViewMethodChannelName: String = "com.atmob.flutter_map/map_view_"
-
- // 地图视图ID
- static let mapViewId: String = "com.atmob.flutter.map"
- }
|