Ignore:
Timestamp:
2010-12-12T01:47:03+01:00 (13 years ago)
Author:
Upliner
Message:

Added imagery plugin to josm core. Imagery plugin is union of wmsplugin and slippymap plugins. It includes code by Tim Waters, Petr Dlouhý, Frederik Ramm and others. Also enables the remotecontol which was integrated in [3707].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/RequestProcessor.java

    r3707 r3715  
    1616
    1717import org.openstreetmap.josm.io.remotecontrol.handler.AddNodeHandler;
     18import org.openstreetmap.josm.io.remotecontrol.handler.ImageryHandler;
    1819import org.openstreetmap.josm.io.remotecontrol.handler.ImportHandler;
    1920import org.openstreetmap.josm.io.remotecontrol.handler.LoadAndZoomHandler;
     
    112113        addRequestHandlerClass(LoadAndZoomHandler.command2,
    113114                LoadAndZoomHandler.class, true);
     115        addRequestHandlerClass(ImageryHandler.command, ImageryHandler.class, true);
    114116        addRequestHandlerClass(AddNodeHandler.command, AddNodeHandler.class, true);
    115117        addRequestHandlerClass(ImportHandler.command, ImportHandler.class, true);
Note: See TracChangeset for help on using the changeset viewer.