Changeset 16294 in osm for applications/editors/josm/plugins/livegps
- Timestamp:
- 2009-07-03T23:35:00+02:00 (17 years ago)
- Location:
- applications/editors/josm/plugins/livegps
- Files:
-
- 2 edited
-
build.xml (modified) (1 diff)
-
src/livegps/LiveGpsLayer.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/build.xml
r16290 r16294 26 26 <attribute name="Plugin-Description" value="Support live GPS input (moving dot) through a connection to gpsd server."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/LiveGPS"/> 28 <attribute name="Plugin-Mainversion" value="172 2"/>28 <attribute name="Plugin-Mainversion" value="1725"/> 29 29 <attribute name="Plugin-Stage" value="50"/> 30 30 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java
r16290 r16294 74 74 { 75 75 if (lastPoint != null) 76 Main.map.mapView.zoomTo(lastPoint. eastNorth);76 Main.map.mapView.zoomTo(lastPoint.getCoor()); 77 77 } 78 78 … … 116 116 if (lastPoint != null) 117 117 { 118 Point screen = mv.getPoint(lastPoint. eastNorth);118 Point screen = mv.getPoint(lastPoint.getCoor()); 119 119 g.setColor(Main.pref.getColor(KEY_LIVEGPS_COLOR, Color.RED)); 120 120 g.drawOval(screen.x-10, screen.y-10,20,20);
Note:
See TracChangeset
for help on using the changeset viewer.
