Ignore:
Timestamp:
2009-07-03T23:35:00+02:00 (17 years ago)
Author:
stoecker
Message:

fixes for JOSM 1725 - utilsplugin JumpToAction still missing

Location:
applications/editors/josm/plugins/livegps
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/livegps/build.xml

    r16290 r16294  
    2626                <attribute name="Plugin-Description" value="Support live GPS input (moving dot) through a connection to gpsd server."/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/LiveGPS"/>
    28                 <attribute name="Plugin-Mainversion" value="1722"/>
     28                <attribute name="Plugin-Mainversion" value="1725"/>
    2929                <attribute name="Plugin-Stage" value="50"/>
    3030                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java

    r16290 r16294  
    7474    {
    7575        if (lastPoint != null)
    76             Main.map.mapView.zoomTo(lastPoint.eastNorth);
     76            Main.map.mapView.zoomTo(lastPoint.getCoor());
    7777    }
    7878
     
    116116            if (lastPoint != null)
    117117            {
    118                 Point screen = mv.getPoint(lastPoint.eastNorth);
     118                Point screen = mv.getPoint(lastPoint.getCoor());
    119119                g.setColor(Main.pref.getColor(KEY_LIVEGPS_COLOR, Color.RED));
    120120                g.drawOval(screen.x-10, screen.y-10,20,20);
Note: See TracChangeset for help on using the changeset viewer.