Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/jsp/includes/wms_header_inc.jsp @ 982:cd9414538f10
Added possibility to switch to FullScreen-Mode of the MapClient.
gnv/trunk@1161 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 07 Jun 2010 09:54:47 +0000 |
parents | |
children | d3e0f505f50c |
comparison
equal
deleted
inserted
replaced
981:10bee74ab915 | 982:cd9414538f10 |
---|---|
1 <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %> | |
2 <%@page import="de.intevation.gnv.action.MapClientStandaloneAction"%> | |
3 <% | |
4 boolean standalone = request.getAttribute(MapClientStandaloneAction.MAPCLIENTSTANDALONE_KEY) != null; | |
5 %> | |
6 | |
7 <head> | |
8 <title> | |
9 <bean:message key="gnviewer.app.title"/> | |
10 </title> | |
11 <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> | |
12 <meta http-equiv="Content-Script-Type" content="text/javascript"/> | |
13 <meta http-equiv="Content-Style-Type" content="text/css"/> | |
14 <meta http-equiv="Expires" content="Mon, 01 Jan 1990 00:00:01 GMT"/> | |
15 <meta http-equiv="pragma" content="no-cache"/> | |
16 <meta http-equiv="cache-control" content="no-cache"/> | |
17 <meta name="robots" content="noindex"/> | |
18 | |
19 <link rel="stylesheet" type="text/css" href="scripts/ext/ext-2.3.0/resources/css/ext-all.css"></link> | |
20 <link rel="stylesheet" type="text/css" href="scripts/geoext/geoext-0.6/resources/css/geoext-all.css"></link> | |
21 <link rel="stylesheet" type="text/css" href="scripts/openlayers/OpenLayers-2.9/theme/default/style.css"></link> | |
22 <link rel="stylesheet" type="text/css" href="styles/gnv.css"/> | |
23 <link rel="stylesheet" type="text/css" href="styles/ol_style.css"/> | |
24 | |
25 <script type="text/javascript" src="scripts/ext/ext-2.3.0/adapter/ext/ext-base.js"></script> | |
26 <script type="text/javascript" src="scripts/ext/ext-2.3.0/ext-all.js"></script> | |
27 <script type="text/javascript" src="scripts/openlayers/OpenLayers-2.9/OpenLayers.js"></script> | |
28 <script type="text/javascript" src="scripts/geoext/geoext-0.6/script/GeoExt.js"></script> | |
29 <script type="text/javascript" src="scripts/olutils.js"></script> | |
30 <script type="text/javascript" src="<%=response.encodeURL("scripts/layers.jsp?uid="+System.currentTimeMillis())%>"></script> | |
31 <script type="text/javascript" src="<%=response.encodeURL("scripts/viewport.jsp?uid="+System.currentTimeMillis()+"&"+MapClientStandaloneAction.MAPCLIENTSTANDALONE_KEY+"="+standalone)%>"></script> | |
32 | |
33 <!-- save necessary variables here --> | |
34 <script type="text/javascript"> | |
35 var options, layer, extent, map, mapPanel, infoControls; | |
36 var controls,layers, mouseLoc, grid; | |
37 var infoActive = false; | |
38 </script> | |
39 </head> |