Changeset 37 in josm for src/org/openstreetmap
- Timestamp:
- 2006-01-01T21:20:50+01:00 (19 years ago)
- Location:
- src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/actions/DownloadAction.java
r35 r37 62 62 dlg.add(new JLabel("Bounding box"), GBC.eol()); 63 63 64 dlg.add(new JLabel("min lat"), GBC.std().insets(10,0,5,0)); 65 dlg.add(latlon[0], GBC.std()); 64 66 dlg.add(new JLabel("min lon"), GBC.std().insets(10,0,5,0)); 65 dlg.add(latlon[0], GBC.std());66 dlg.add(new JLabel("min lat"), GBC.std().insets(10,0,5,0));67 67 dlg.add(latlon[1], GBC.eol()); 68 dlg.add(new JLabel("max lat"), GBC.std().insets(10,0,5,0)); 69 dlg.add(latlon[2], GBC.std()); 68 70 dlg.add(new JLabel("max lon"), GBC.std().insets(10,0,5,0)); 69 dlg.add(latlon[2], GBC.std());70 dlg.add(new JLabel("max lat"), GBC.std().insets(10,0,5,0));71 71 dlg.add(latlon[3], GBC.eop()); 72 72 -
src/org/openstreetmap/josm/io/OsmServerReader.java
r35 r37 78 78 */ 79 79 public DataSet parseOsm() throws JDOMException, IOException { 80 long start = System.currentTimeMillis(); 80 81 Reader r = getReader(Main.pref.osmDataServer+"/map?bbox="+lon1+","+lat1+","+lon2+","+lat2); 82 System.out.println(System.currentTimeMillis() - start); 81 83 if (r == null) 82 84 return null;
Note:
See TracChangeset
for help on using the changeset viewer.