Changeset 18942 in osm for applications
- Timestamp:
- 2009-12-04T18:51:12+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r18078 r18942 7 7 <target name="dist" depends="compile"> 8 8 <mkdir dir="../dist"/> 9 <ant antfile="build.xml" target="dist" dir="agpifoj"/>10 9 <ant antfile="build.xml" target="dist" dir="cadastre-fr"/> 11 10 <ant antfile="build.xml" target="dist" dir="colorscheme"/> … … 49 48 </target> 50 49 <target name="clean"> 51 <ant antfile="build.xml" target="clean" dir="agpifoj"/>52 50 <ant antfile="build.xml" target="clean" dir="cadastre-fr"/> 53 51 <ant antfile="build.xml" target="clean" dir="colorscheme"/> -
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Grabber.java
r17556 r18942 29 29 double eastSize = b.max.east() - b.min.east(); 30 30 double northSize = b.max.north() - b.min.north(); 31 31 32 32 double eastCoef = WMSPlugin.overlapEast / 100.0; 33 33 double northCoef = WMSPlugin.overlapNorth / 100.0; 34 35 this.b = new ProjectionBounds( new EastNorth(b.min.east(), 34 35 this.b = new ProjectionBounds( new EastNorth(b.min.east(), 36 36 b.min.north()), 37 37 new EastNorth(b.max.east() + eastCoef * eastSize, 38 b.max.north() + northCoef * northSize)); 38 b.max.north() + northCoef * northSize)); 39 39 } else 40 40 this.b = b;
Note:
See TracChangeset
for help on using the changeset viewer.