Changeset 4034 in osm for applications
- Timestamp:
- 2007-08-09T00:36:35+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ywms/src/org/openstreetmap/josm/plugins/ywms/ImageLoader.java
r4017 r4034 82 82 URI request = new URI("file:///page" + wmsUrl); 83 83 String query = request.getQuery().toLowerCase(); 84 yahooUrl = new URI( "file", null, Util.getPluginDir() + "ymap.html", query, null); 84 yahooUrl = new File(Util.getPluginDir(), "ymap.html").toURI(); 85 yahooUrl = new URI( yahooUrl.toString() + "?" + query); 85 86 86 87 // Parse query to find original bounding box and dimensions
Note:
See TracChangeset
for help on using the changeset viewer.