新增国内经纬度转换

This commit is contained in:
yezhiqiu
2026-03-10 17:46:23 +08:00
parent 8b128e58cb
commit f5001f3349
14 changed files with 424 additions and 206 deletions

View File

@@ -34,6 +34,7 @@ import androidx.annotation.StringDef
MMKVKey.MealType,
MMKVKey.isExistNewInvite,
MMKVKey.OnlyGoogleMap,
MMKVKey.isGpsToGCJ02,
MMKVKey.MapType,
MMKVKey.ShowFence,
MMKVKey.isCrash,
@@ -81,6 +82,8 @@ annotation class MMKVKey {
//只使用谷歌地图
const val OnlyGoogleMap = "onlyGoogleMap"
//是否gps坐标转换火星坐标
const val isGpsToGCJ02 = "gpsToGCJ02"
const val MapShowDefaultLat = "mapDefaultLat"
const val MapShowDefaultLon = "mapDefaultLon"
@@ -95,12 +98,14 @@ annotation class MMKVKey {
//套餐类型
const val MealType = "mealType"
//套餐是否可用
const val AvailableOrder = "availableOrder"
//是否分享的
const val Shared = "shared"
const val isCrash = "isCrash"
//首次检查蓝牙是否开关
const val isFirstCheckBleOpen = "isFirstCheckBleOpen"
}