您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用java實現根據一個經緯度查詢附近的樓盤信息”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用java實現根據一個經緯度查詢附近的樓盤信息”吧!
先算出該點周圍的矩形的四個點,然后使用經緯度去直接匹配數據庫中的記錄。
/** * 根據傳入的經緯度和半徑范圍確定附近的經緯度范圍 * * @param longitude 經度 * @param latitude 緯度 * @param distance 距離 多少千米 * @return */ public static Location getNearbyLocation(double longitude, double latitude, double distance) { boolean b = LocationUtil.checkItude(longitude + "", latitude + ""); if (!b) { return null; } //先計算查詢點的經緯度范圍 double r = 6371;//地球半徑千米 double dlng = 2 * Math.asin(Math.sin(distance / (2 * r)) / Math.cos(latitude * Math.PI / 180)); dlng = dlng * 180 / Math.PI;//角度轉為弧度 double dlat = distance / r; dlat = dlat * 180 / Math.PI; double minlat = latitude - dlat; double maxlat = latitude + dlat; double minlng = longitude - dlng; double maxlng = longitude + dlng; Location location = new Location(); location.setLatitude(latitude); location.setLongitude(longitude); location.setMaxLatitude(maxlat + ""); location.setMinLatitude(minlat + ""); location.setMaxLongitude(maxlng + ""); location.setMinLongitude(minlng + ""); return location; }
/** * 經緯度校驗 * 經度longitude: (?:[0-9]|[1-9][0-9]|1[0-7][0-9]|180)\\.([0-9]{6}) * 緯度latitude: (?:[0-9]|[1-8][0-9]|90)\\.([0-9]{6}) * * @return */ public static boolean checkItude(String longitude, String latitude) { String reglo = "((?:[0-9]|[1-9][0-9]|1[0-7][0-9])\\.([0-9]{0,6}))|((?:180)\\.([0]{0,6}))"; String regla = "((?:[0-9]|[1-8][0-9])\\.([0-9]{0,6}))|((?:90)\\.([0]{0,6}))"; longitude = longitude.trim(); latitude = latitude.trim(); return longitude.matches(reglo) == true ? latitude.matches(regla) : false; }
/** * 求兩點之間的距離 * @param lng1 A點經度 * @param lat1 A點緯度 * @param lng2 B點經度 * @param lat2 B點緯度 * @return 兩點距離 */ public static double getDistance(double lng1, double lat1, double lng2, double lat2) { double EARTH_RADIUS = 6371; double radiansAX = Math.toRadians(lng1); // A經弧度 double radiansAY = Math.toRadians(lat1); // A緯弧度 double radiansBX = Math.toRadians(lng2); // B經弧度 double radiansBY = Math.toRadians(lat2); // B緯弧度 // 公式中“cosβ1cosβ2cos(α1-α2)+sinβ1sinβ2”的部分,得到∠AOB的cos值 double cos = Math.cos(radiansAY) * Math.cos(radiansBY) * Math.cos(radiansAX - radiansBX) + Math.sin(radiansAY) * Math.sin(radiansBY); double acos = Math.acos(cos); // 反余弦值 return EARTH_RADIUS * acos; // 最終結果 }
拿到4個確定范圍的經緯度就可以去數據庫查詢了,由于數據庫經緯度存的是一個字段需要切割下字段(使用的是Mysql),在 原本的條件下拼接上范圍條件就完成!
substring( location, 1, LOCATE ( ',', location ) - 1 ) >= #{minLongitude} AND substring( location, 1, LOCATE ( ',', location ) - 1 ) <= #{maxLongitude} AND substring( location, LOCATE ( ',', location ) + 1, LENGTH ( a.location ) - 1 ) >= #{minLatitude} AND substring( location, LOCATE ( ',', location ) + 1, LENGTH ( a.location ) - 1 ) <= #{maxLatitude}
因為得到的結果是個正方形方位內的數據,想要在地圖上顯示,會發現超過了地圖上圓圈外也有數據,這時候就需要再做一下處理。
//判斷兩點之間的距離是否大于半徑,大于的刪除 for (int i = 0; i < 之前查詢結果的len; i++) { double distance = LocationUtil.getDistance(longitude, latitude, longitude1, latitude1); if (distance > kilometer) { list.remove(i); i--; len--; } }
感謝各位的閱讀,以上就是“怎么用java實現根據一個經緯度查詢附近的樓盤信息”的內容了,經過本文的學習后,相信大家對怎么用java實現根據一個經緯度查詢附近的樓盤信息這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。