feat: fix gps map projection and update map config

This commit is contained in:
2026-03-23 10:05:41 +08:00
parent a4c426df8b
commit 51740761f5
11 changed files with 214 additions and 55 deletions

View File

@@ -89,6 +89,7 @@ export class LocationController {
startBackgroundLocation(): void {
wx.startLocationUpdateBackground({
type: 'wgs84',
success: () => {
this.bindLocationListener()
this.listening = true
@@ -149,3 +150,4 @@ export class LocationController {
wx.onLocationChange(this.boundLocationHandler)
}
}