Changeset 8929 in josm for trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java
- Timestamp:
- 2015-10-22T16:20:56+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java
r8926 r8929 114 114 /** 115 115 * Returns the name of the download task to be displayed in the {@link ProgressMonitor}. 116 * @return task name 116 117 */ 117 118 protected String getTaskName() { … … 121 122 /** 122 123 * Builds the request part for the bounding box. 124 * @param lon1 left 125 * @param lat1 bottom 126 * @param lon2 right 127 * @param lat2 top 128 * @return "map?bbox=left,bottom,right,top" 123 129 */ 124 130 protected String getRequestForBbox(double lon1, double lat1, double lon2, double lat2) { … … 128 134 /** 129 135 * Parse the given input source and return the dataset. 136 * @param source input stream 137 * @param progressMonitor progress monitor 138 * @return dataset 130 139 * @throws IllegalDataException if an error was found while parsing the OSM data 131 140 *
Note:
See TracChangeset
for help on using the changeset viewer.