Ignore:
Timestamp:
2008-02-18T18:27:12+01:00 (16 years ago)
Author:
david
Message:

much improved audio handling: threaded audio, controls, sync with waypoints

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/WebMarker.java

    r298 r547  
    2323        public URL webUrl;
    2424
    25         public static WebMarker create (LatLon ll, String url) {
     25        public static WebMarker create (LatLon ll, String url, double offset) {
    2626                try {
    27                         return new WebMarker(ll, new URL(url));
     27                        return new WebMarker(ll, new URL(url), offset);
    2828                } catch (Exception ex) {
    2929                        return null;
     
    3131        }
    3232
    33         private WebMarker(LatLon ll, URL webUrl) {
    34                 super(ll, "web.png");
     33        private WebMarker(LatLon ll, URL webUrl, double offset) {
     34                super(ll, "web.png", offset);
    3535                this.webUrl = webUrl;
    3636        }
Note: See TracChangeset for help on using the changeset viewer.