- Timestamp:
- 2009-11-10T18:18:50+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/QuadBuckets.java
r2427 r2430 1091 1091 return false; 1092 1092 } 1093 public BBox search_to_bbox(LatLon point, double radius)1093 public static BBox search_to_bbox(LatLon point, double radius) 1094 1094 { 1095 1095 BBox bbox = new BBox(point.lon() - radius, point.lat() - radius, 1096 point.lon() + radius, point.lat() + radius);1096 point.lon() + radius, point.lat() + radius); 1097 1097 if (debug) { 1098 1098 out("search bbox before sanity: " + bbox);
Note:
See TracChangeset
for help on using the changeset viewer.