소스 검색

修复经纬度定位异常问题

woody 1 년 전
부모
커밋
bc565ed9a7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      framework-location/src/main/java/com/chelvc/framework/location/support/TencentLocationHandler.java

+ 1 - 1
framework-location/src/main/java/com/chelvc/framework/location/support/TencentLocationHandler.java

@@ -108,6 +108,6 @@ public class TencentLocationHandler implements LocationHandler {
 
     @Override
     public Address location2address(double longitude, double latitude) {
-        return this.location2address(longitude + "," + latitude);
+        return this.location2address(latitude + "," + longitude);
     }
 }