Mercurial > dive4elements > river
diff flys-client/src/main/java/de/intevation/flys/client/shared/MapUtils.java @ 5777:e95427ed80e5
Merged
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Sun, 21 Apr 2013 10:46:59 +0200 |
parents | f8409fbe3b88 |
children |
line wrap: on
line diff
--- a/flys-client/src/main/java/de/intevation/flys/client/shared/MapUtils.java Sun Apr 21 10:46:06 2013 +0200 +++ b/flys-client/src/main/java/de/intevation/flys/client/shared/MapUtils.java Sun Apr 21 10:46:59 2013 +0200 @@ -13,18 +13,29 @@ private MapUtils() { } + public static String getLegendGraphicUrl(String server, String layer) { + return getLegendGraphicUrl(server, layer, -1); + } - public static String getLegendGraphicUrl(String server, String layer) { + public static String getLegendGraphicUrl(String server, String layer, int dpi) { if (server == null || layer == null) { return null; } + if (server.contains("osm.intevation.de")) { + // GetLegend is not implemented at osm.intevation.de + // This avoids an error in the print log + return null; + } server = server.indexOf("?") >= 0 ? server : server + "?"; String url = GET_LEGEND_GRAPHIC_TEMPLATE; url = url.replace("${SERVER}", server); url = url.replace("${LAYER}", layer); url = url + "×tamp=" + new Date().getTime(); + if (dpi != -1) { + url+="&legend_options=dpi:" + dpi; + } return url; }