Changeset 24221 in osm for applications/editors/josm
- Timestamp:
- 2010-11-14T17:36:38+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/wmsplugin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/.classpath
r22779 r24221 3 3 <classpathentry kind="src" path="src"/> 4 4 <classpathentry including="images/" kind="src" path=""/> 5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK 6"/>6 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 7 6 <classpathentry combineaccessrules="false" kind="src" path="/remotecontrol"/> 7 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 8 8 <classpathentry kind="output" path="build"/> 9 9 </classpath> -
applications/editors/josm/plugins/wmsplugin/build.xml
r23207 r24221 28 28 29 29 30 <property name="commit.message" value=" fixed josm bug 4671 - wms url for sicily has changed" />30 <property name="commit.message" value="Add getDx() and getDy() methods to WMSLayer to enable other plugins to determine WMS layer shift, see #5565" /> 31 31 <property name="plugin.main.version" value="3530" /> 32 32 -
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSLayer.java
r23207 r24221 265 265 } 266 266 267 public double getDx() { 268 return dx; 269 } 270 271 public double getDy() { 272 return dy; 273 } 274 267 275 public int getImageXIndex(double coord) { 268 276 return (int)Math.floor( ((coord - dx) * info.pixelPerDegree) / imageSize);
Note:
See TracChangeset
for help on using the changeset viewer.