X-Git-Url: https://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2Fgui%2Fmap%2FMapSourceLibrary.java;h=b82fd4e7a23e197a80120eb6d2b2e0c7a854f409;hb=88f2c3647ed9e055090484f01a959d4581f85e7d;hp=425df6a6cd72b1c1cebe5d417c4469339939a08e;hpb=4d5796d02a15808311c09448d79e6e7d1de9d636;p=GpsPrune.git diff --git a/tim/prune/gui/map/MapSourceLibrary.java b/tim/prune/gui/map/MapSourceLibrary.java index 425df6a..b82fd4e 100644 --- a/tim/prune/gui/map/MapSourceLibrary.java +++ b/tim/prune/gui/map/MapSourceLibrary.java @@ -40,15 +40,13 @@ public abstract class MapSourceLibrary { _sourceList.add(new OsmMapSource("Mapnik", "http://[abc].tile.openstreetmap.org/")); _sourceList.add(new OsmMapSource("Cyclemap", "http://[abc].tile.opencyclemap.org/cycle/")); - _sourceList.add(new OsmMapSource("Reitkarte", "http://wanderreitkarte.de/hills/", - "http://topo2.wanderreitkarte.de/topo/", 18)); + _sourceList.add(new OsmMapSource("Reitkarte", "http://topo[234].wanderreitkarte.de/topo/")); _sourceList.add(new MffMapSource("Mapsforfree", "http://maps-for-free.com/layer/relief/", "jpg", "http://maps-for-free.com/layer/water/", "gif", 11)); _sourceList.add(new OsmMapSource("Hikebikemap", "http://toolserver.org/tiles/hikebike/", "http://toolserver.org/~cmarqu/hill/", 18)); _sourceList.add(new OsmMapSource("Openseamap", "http://tile.openstreetmap.org/", "http://tiles.openseamap.org/seamark/", 18)); - _sourceList.add(new CloudmadeMapSource("Pale Dawn", "998", 18)); } /** @@ -65,7 +63,6 @@ public abstract class MapSourceLibrary { String sourceString = configString.substring(0, splitPos); MapSource source = OsmMapSource.fromConfig(sourceString); - if (source == null) {source = CloudmadeMapSource.fromConfig(sourceString);} if (source != null) { _sourceList.add(source); }