- Timestamp:
- 2010-12-01T07:29:36+01:00 (14 years ago)
- 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. 1 2 package org.openstreetmap.josm.gui.bbox; 2 3 … … 5 6 import java.awt.Graphics; 6 7 import java.awt.Graphics2D; 8 import java.awt.Image; 7 9 import java.awt.Point; 8 10 import java.awt.Rectangle; … … 62 64 @Override public String getTileUrl(int zoom, int tilex, int tiley) { return source.getTileUrl(zoom, tilex, tiley); } 63 65 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(); } 65 75 } 66 76 -
Property svn:eol-style
set to
Note:
See TracChangeset
for help on using the changeset viewer.