1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
package tim.prune.gui.map;
import tim.prune.I18nManager;
/**
* Class to provide a map source for all OSM-like sources
* (eg mapnik, opencyclemap, openpistemap etc).
* These can be single-layer or double-layer sources with png tiles
*/
public class OsmMapSource extends MapSource
{
/** Name for this source */
private String _name = null;
/** Base urls */
private String[] _baseUrls = null;
/** Site names */
private String[] _siteNames = null;
/** Maximum zoom level */
private int _maxZoom = 0;
/**
* Constructor giving single name and url
* @param inName source name
* @param inUrl base url
*/
public OsmMapSource(String inName, String inUrl)
{
this(inName, inUrl, null, 18);
}
/**
* Constructor giving name, urls and maximum zoom
* @param inName source name
* @param inUrl1 base layer url
* @param inUrl2 upper layer url
* @param inMaxZoom maximum zoom level
*/
public OsmMapSource(String inName, String inUrl1, String inUrl2, int inMaxZoom)
{
_name = inName;
if (_name == null || _name.trim().equals("")) {_name = I18nManager.getText("mapsource.unknown");}
_baseUrls = new String[2];
_baseUrls[0] = fixBaseUrl(inUrl1);
_baseUrls[1] = fixBaseUrl(inUrl2);
_siteNames = new String[2];
_siteNames[0] = fixSiteName(_baseUrls[0]);
_siteNames[1] = fixSiteName(_baseUrls[1]);
// Swap layers if second layer given without first
if (_baseUrls[0] == null && _baseUrls[1] != null)
{
_baseUrls[0] = _baseUrls[1];
_siteNames[0] = _siteNames[1];
_baseUrls[1] = _siteNames[1] = null;
}
_maxZoom = inMaxZoom;
}
/**
* Construct a new map source from its config string
* @param inConfigString string from Config, separated by semicolons
* @return new map source, or null if not parseable
*/
public static OsmMapSource fromConfig(String inConfigString)
{
OsmMapSource source = null;
if (inConfigString.startsWith("o:"))
{
String[] items = inConfigString.substring(2).split(";");
try {
if (items.length == 3) {
source = new OsmMapSource(items[0], items[1], null, Integer.parseInt(items[2]));
}
else if (items.length == 4) {
source = new OsmMapSource(items[0], items[1], items[2], Integer.parseInt(items[3]));
}
} catch (NumberFormatException nfe) {}
}
return source;
}
/**
* @return name
*/
public String getName() {
return _name;
}
/** Number of layers */
public int getNumLayers() {
return _baseUrls[1] == null?1:2;
}
/** Base url for this source */
public String getBaseUrl(int inLayerNum) {
return _baseUrls[inLayerNum];
}
/** site name without protocol or www. */
public String getSiteName(int inLayerNum) {
return _siteNames[inLayerNum];
}
/**
* Make the URL to get the specified tile
*/
public String makeURL(int inLayerNum, int inZoom, int inX, int inY)
{
return _baseUrls[inLayerNum] + inZoom + "/" + inX + "/" + inY + getFileExtension(inLayerNum);
}
/** file extension is always png */
public final String getFileExtension(int inLayerNum) {
return ".png";
}
/**
* @return maximum zoom level
*/
public final int getMaxZoomLevel()
{
return _maxZoom;
}
/**
* @return semicolon-separated list of all fields
*/
public String getConfigString()
{
return "o:" + getName() + ";" + getSiteStrings() + getMaxZoomLevel();
}
}
|