Changeset 12778 in osm for applications/editors/josm/plugins/slippymap
- Timestamp:
- 2009-01-01T18:28:53+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapLayer.java
r10775 r12778 35 35 /** 36 36 * Class that displays a slippy map layer. 37 * 37 * 38 38 * @author Frederik Ramm <frederik@remote.org> 39 * 39 * 40 40 */ 41 41 public class SlippyMapLayer extends Layer implements ImageObserver, … … 57 57 { 58 58 super(tr("Slippy Map")); 59 59 background = true; 60 60 61 61 clearTileStorage(); … … 468 468 /* 469 469 * (non-Javadoc) 470 * 470 * 471 471 * @see org.openstreetmap.josm.data.Preferences.PreferenceChangedListener#preferenceChanged(java.lang.String, 472 472 * java.lang.String) -
applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapPlugin.java
r12104 r12778 8 8 /** 9 9 * Main class for the slippy map plugin. 10 * 10 * 11 11 * @author Frederik Ramm <frederik@remote.org> 12 * 12 * 13 13 */ 14 14 public class SlippyMapPlugin extends Plugin … … 21 21 public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) 22 22 { 23 24 25 26 27 23 if (newFrame != null){ 24 SlippyMapLayer smlayer; 25 smlayer = new SlippyMapLayer(); 26 Main.main.addLayer(smlayer); 27 } 28 28 } 29 29 30 30 /* 31 31 * (non-Javadoc) 32 * 32 * 33 33 * @see org.openstreetmap.josm.plugins.Plugin#getPreferenceSetting() 34 34 */ -
applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapPreferenceSetting.java
r12588 r12778 20 20 /** 21 21 * Preference Dialog for Slippy Map Tiles 22 * 22 * 23 23 * @author Hakan Tandogan <hakan@gurkensalat.com> 24 * 24 * 25 25 */ 26 26 public class SlippyMapPreferenceSetting implements PreferenceSetting -
applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapPreferences.java
r5691 r12778 5 5 /** 6 6 * Preferences for Slippy Map Tiles 7 * 7 * 8 8 * @author Hakan Tandogan <hakan@gurkensalat.com> 9 * 9 * 10 10 */ 11 11 public class SlippyMapPreferences … … 14 14 15 15 public static String PREFERENCE_TILE_URL = PREFERENCE_PREFIX + ".tile_url"; 16 16 17 17 public static String getMapUrl() 18 18 { -
applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapTile.java
r10120 r12778 13 13 /** 14 14 * Class that contains information about one single slippy map tile. 15 * 15 * 16 16 * @author Frederik Ramm <frederik@remote.org> 17 * 17 * 18 18 */ 19 19 public class SlippyMapTile
Note:
See TracChangeset
for help on using the changeset viewer.