Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

搜索不到地点,坐标格式错误 #15

Open
404-BugNotFound opened this issue Jan 3, 2025 · 6 comments
Open

搜索不到地点,坐标格式错误 #15

404-BugNotFound opened this issue Jan 3, 2025 · 6 comments

Comments

@404-BugNotFound
Copy link

搜索可以正常提示关联地点,点击关联地址无法正确显示目标地址(不是显示海域就是空白),直接添加该地经纬度也显示格式错误,切换网络尝试都是一样的结果,这是什么问题呀0.o
微信图片_20250103104023

@fuqiuluo
Copy link
Owner

fuqiuluo commented Jan 3, 2025

逗号用英文的,试试看?

@fuqiuluo
Copy link
Owner

fuqiuluo commented Jan 3, 2025

搜索可以正常提示关联地点,点击关联地址无法正确显示目标地址(不是显示海域就是空白),直接添加该地经纬度也显示格式错误,切换网络尝试都是一样的结果,这是什么问题呀0.o 微信图片_20250103104023

额,Portal使用的坐标系是GCJ02,请确定您输入的是GCJ02坐标系的坐标

@404-BugNotFound
Copy link
Author

我这个坐标不是自己输入的,是模块自己生成的,说一下我的具体步骤:

  1. 设备:一加ace竞速版
  2. 系统:安卓14
  3. 点击搜索,输入"海口”,会智能提示“海口美兰国际机场”,点击“海口美兰国际机场”,无法正确显示该地点的地图信息,此时我就想地点显示不出来,可能只是显示bug?实际坐标已经更改到“海口美兰国际机场”?随即我就点击下方的⬆️按钮,选择添加坐标的按钮,就弹出我上图的内容了,提示坐标错误...,这个坐标其实是自动生成的,不是我输入的

@fuqiuluo
Copy link
Owner

fuqiuluo commented Jan 3, 2025

我这个坐标不是自己输入的,是模块自己生成的,说一下我的具体步骤:

  1. 设备:一加ace竞速版
  2. 系统:安卓14
  3. 点击搜索,输入"海口”,会智能提示“海口美兰国际机场”,点击“海口美兰国际机场”,无法正确显示该地点的地图信息,此时我就想地点显示不出来,可能只是显示bug?实际坐标已经更改到“海口美兰国际机场”?随即我就点击下方的⬆️按钮,选择添加坐标的按钮,就弹出我上图的内容了,提示坐标错误...,这个坐标其实是自动生成的,不是我输入的

我知道了,看来是输出的经纬度顺序反了,

fun checkLatLon(lat: Double?, lon: Double?): Boolean {
            return (lat != null && lon != null) && lat in -90.0..90.0 && lon in -180.0..180.0
        }

在输入框,把lat和lon反着填就好了

@fuqiuluo
Copy link
Owner

fuqiuluo commented Jan 3, 2025

就是逗号旁边两个数字换个顺序,这个是一个bug

@404-BugNotFound
Copy link
Author

大佬,这个后面有空的时候可以修下吗,还有目标地址的地图显示,最好的话还是希望可以正常使用,大佬幸苦

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants