1. getCoordinateRange(lat, lng) {  
  2.       let that = this;  
  3.       const distance = 3;  // 3公里  
  4.       const radLatitude = that.degreesToRadians(lat);  
  5.       const radLongitude = that.degreesToRadians(lng);  
  6.       const radDistance = distance / 6371;  

  7.       // 计算圆的边界经纬度  
  8.       const minLatitude = radLatitude - radDistance;  
  9.       const maxLatitude = radLatitude + radDistance;  
  10.       const minLongitude = radLongitude - Math.asin(Math.sin(radDistance) / Math.cos(radLatitude));  
  11.       const maxLongitude = radLongitude + Math.asin(Math.sin(radDistance) / Math.cos(radLatitude));  

  12.       // 将其转换为角度并输出结果  
  13.       const minLatitudeDeg = minLatitude * 180 / Math.PI;  
  14.       const maxLatitudeDeg = maxLatitude * 180 / Math.PI;  
  15.       const minLongitudeDeg = minLongitude * 180 / Math.PI;  
  16.       const maxLongitudeDeg = maxLongitude * 180 / Math.PI;  

  17. }  

  18. degreesToRadians(degrees) {  
  19.       return degrees * Math.PI / 180;  
  20. },