mirror of
https://github.com/xweiba/location-spoofer.git
synced 2026-09-21 22:30:46 +08:00
fix: 搜索结果坐标打印到日志
This commit is contained in:
@@ -789,7 +789,7 @@ struct MapHomeView: View {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
searchResults = (response?.mapItems ?? []).prefix(6).map { item in
|
searchResults = (response?.mapItems ?? []).prefix(6).map { item in
|
||||||
SearchLocationResult(
|
let r = SearchLocationResult(
|
||||||
name: item.name ?? "未命名",
|
name: item.name ?? "未命名",
|
||||||
subtitle: [item.placemark.locality, item.placemark.subLocality, item.placemark.thoroughfare]
|
subtitle: [item.placemark.locality, item.placemark.subLocality, item.placemark.thoroughfare]
|
||||||
.compactMap { $0 }
|
.compactMap { $0 }
|
||||||
@@ -797,6 +797,11 @@ struct MapHomeView: View {
|
|||||||
.joined(separator: " · "),
|
.joined(separator: " · "),
|
||||||
coordinate: item.placemark.coordinate
|
coordinate: item.placemark.coordinate
|
||||||
)
|
)
|
||||||
|
RuntimeLogger.info("APP", "搜索", "结果: \(r.name)", details: [
|
||||||
|
"lat": String(r.coordinate.latitude),
|
||||||
|
"lon": String(r.coordinate.longitude)
|
||||||
|
])
|
||||||
|
return r
|
||||||
}
|
}
|
||||||
if searchResults.isEmpty { searchError = "没有找到相关地点" }
|
if searchResults.isEmpty { searchError = "没有找到相关地点" }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user