Changeset 18597 in osm for applications/editors/josm/plugins/openlayers
- Timestamp:
- 2009-11-14T20:01:49+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/openlayers
- Files:
-
- 2 edited
-
build.xml (modified) (1 diff)
-
src/org/openstreetmap/josm/plugins/openLayers/OpenLayersLayer.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openlayers/build.xml
r16803 r18597 37 37 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 38 38 <attribute name="Plugin-Description" value="Displays an OpenLayers background image" /> 39 <attribute name="Plugin-Mainversion" value=" 1893"/>39 <attribute name="Plugin-Mainversion" value="2450"/> 40 40 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 41 41 </manifest> -
applications/editors/josm/plugins/openlayers/src/org/openstreetmap/josm/plugins/openLayers/OpenLayersLayer.java
r16803 r18597 1 1 package org.openstreetmap.josm.plugins.openLayers; 2 2 3 import java.awt.*; 3 import java.awt.Component; 4 import java.awt.Dimension; 5 import java.awt.Graphics2D; 4 6 import java.beans.PropertyChangeEvent; 5 7 import java.beans.PropertyChangeListener; 6 8 7 import javax.swing.*; 9 import javax.swing.Icon; 10 import javax.swing.JMenuItem; 11 import javax.swing.JSeparator; 8 12 9 13 import org.mozilla.javascript.NativeArray; 10 14 import org.openstreetmap.josm.Main; 11 15 import org.openstreetmap.josm.actions.RenameLayerAction; 16 import org.openstreetmap.josm.data.Bounds; 12 17 import org.openstreetmap.josm.data.Preferences.PreferenceChangedListener; 13 18 import org.openstreetmap.josm.data.coor.LatLon; … … 51 56 */ 52 57 @Override 53 public void paint(Graphics g, MapView mv) { 58 public void paint(Graphics2D g, MapView mv, Bounds bounds) { 54 59 setSize(Main.map.mapView.getSize()); 55 60 browser.paint(g);
Note:
See TracChangeset
for help on using the changeset viewer.
