MapAmapViewOnlyKeyword.swift 597 B

12345678910111213141516171819202122
  1. //
  2. // MapAmapViewOnlyKeyword.swift
  3. // map_amap_ios
  4. //
  5. // Created by 诺诺诺的言 on 2025/7/22.
  6. //
  7. import Foundation
  8. struct MapAmapViewOnlyKeyword {
  9. // 位置更新事件通道名称
  10. static let locationUpdateEventChannelName: String = "atmob_map_location_event_channel"
  11. // 通用方法通道
  12. static let commonMethodChannelName: String = "atmob_map_method_channel"
  13. // 地图相关通道名称
  14. static let mapViewMethodChannelName: String = "com.atmob.flutter_map/map_view_"
  15. // 地图视图ID
  16. static let mapViewId: String = "com.atmob.flutter.map"
  17. }