view gnv/src/main/webapp/WEB-INF/jsp/includes/display_wms_basic_informations.jsp @ 1013:e2c4e9886dc3

Syncronized size of the headline of fullscreen-mode of the map-client to the size of the headline of the web-client. gnv/trunk@1232 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 28 Jun 2010 15:24:44 +0000
parents a433a9174cd2
children 28a0628b11b0
line wrap: on
line source
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@page import="de.intevation.gnv.action.sessionmodel.SessionModel"%>
<%@page import="de.intevation.gnv.artifactdatabase.objects.map.MapService"%>
<%@page import="de.intevation.gnv.action.sessionmodel.SessionModelFactory"%>
<%
SessionModel sm = SessionModelFactory.getInstance().getSessionModel(request);
MapService localMapService = sm.getLocalMapService();
Collection<Layer> layer = localMapService.getLayer(); 
%>

<%@page import="java.util.Collection"%>
<%@page import="de.intevation.gnv.artifactdatabase.objects.map.Layer"%>
<%@page import="java.util.Iterator"%><div id="wms">
    <table>
        <tr>
            <td class="parameter"><bean:message key="gnviewer.wms.server.path"/>:</td>
            <td class="wmsvalue"><%=localMapService.getURL()%>?SERVICE=WMS&amp;REQUEST=GetCapabilities</td>
        </tr>
        <tr>
            <td class="parameter"><bean:message key="gnviewer.wms.layer.ttl"/>:</td>
            <td class="wmsvalue"><%=localMapService.getTtl()%></td>
        </tr>
    </table>
</div>

http://dive4elements.wald.intevation.org