Changeset 3687 in josm


Ignore:
Timestamp:
Dec 1, 2010 7:29:36 AM (2 years ago)
Author:
bastiK
Message:

adapt to new jmapviewer interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/bbox/SlippyMapBBoxChooser.java

    • Property svn:eol-style set to native
    r3602 r3687  
     1// License: GPL. See LICENSE file for details. 
    12package org.openstreetmap.josm.gui.bbox; 
    23 
     
    56import java.awt.Graphics; 
    67import java.awt.Graphics2D; 
     8import java.awt.Image; 
    79import java.awt.Point; 
    810import java.awt.Rectangle; 
     
    6264        @Override public String getTileUrl(int zoom, int tilex, int tiley) { return source.getTileUrl(zoom, tilex, tiley); } 
    6365 
    64  
     66        @Override public Image getAttributionImage() { return source.getAttributionImage(); } 
     67  
     68        @Override public String getAttributionText(int zoom, LatLon topLeft, LatLon botRight) { return source.getAttributionText(zoom, topLeft, botRight); } 
     69 
     70        @Override public boolean requiresAttribution() { return source.requiresAttribution(); } 
     71 
     72        @Override public String getAttributionLinkURL() { return source.getAttributionLinkURL(); } 
     73 
     74        @Override public String getTermsOfUseURL() { return source.getTermsOfUseURL(); } 
    6575    } 
    6676 
Note: See TracChangeset for help on using the changeset viewer.