Ignore:
Timestamp:
2009-08-01T10:24:16+02:00 (15 years ago)
Author:
guggis
Message:

added missing files from first checkin
HTTP parameter action=getmap now optional

Location:
applications/editors/josm/wmsadapter/orthofotos-bern
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/wmsadapter/orthofotos-bern/README.txt

    r16723 r16752  
    3030  you have to retrieve from the WMS server of Bern using your preferred web
    3131  browser (see below in section Usage).
    32 
    33 o currently, tiles for orthofotos of Bern overlap considerably.
    34  
     32   
    3533
    3634INSTALLATION
     
    5149  - add an entry with
    5250       menu name = Orthofotos Bern
    53        WMS-URL   = http://localhost:8787/orthofotos-bern?action=getmap
    54        
    55    
     51       WMS-URL   = http://localhost:8787/orthofotos-bern?    !!! Note the trailing '?' !!!
     52
     53             
    5654
    5755USAGE
  • applications/editors/josm/wmsadapter/orthofotos-bern/VERSION.txt

    r16723 r16752  
    11
    2 Built-On: 2009-07-29 19:04:09
    3 Build-ID: 15                   
     2Built-On: 2009-08-01 10:02:24
     3Build-ID: 22                   
    44               
  • applications/editors/josm/wmsadapter/orthofotos-bern/src/ch/guggis/josm/bern/servlet/OrthofotoBernWMSAdapter.java

    r16723 r16752  
    489489
    490490                String action = req.getParameter("action");
     491                if (action == null && req.getParameter("bbox") != null) {
     492                        action = "getmap";
     493                }
     494                logger.info("action is <" + action + ">");
    491495                if ("ping".equals(action)) {
    492496                        handlePing(req, resp);
Note: See TracChangeset for help on using the changeset viewer.