修复地图卡顿问题

This commit is contained in:
qiji4215
2023-07-18 10:11:34 +08:00
parent 6210f41b69
commit 694ad106d7
5 changed files with 313 additions and 155 deletions

View File

@@ -1329,9 +1329,9 @@ public class GeometryTools {
}
public static boolean isCheckError(double lon, double lat) {
/* if(lon==0&&lat==0){
if(lon==0||lat==0){
return true;
}*/
}
if (lon > 180 || lon < -180 || lat > 90 || lat < -90) {
return true;