1 |
3032
|
perry
|
<%@ taglib uri="/WEB-INF/taglibs-xtags.tld" prefix="xtags" %>
|
2 |
|
|
<%
|
3 |
|
|
/* Get the WFS GetFeature request and the XSL Stylesheet
|
4 |
|
|
* If not specified, use the defaults
|
5 |
|
|
*/
|
6 |
|
|
String xml = request.getParameter("wfsurl");
|
7 |
|
|
if (xml == null)
|
8 |
|
|
{
|
9 |
|
|
xml = "wfs.xml";
|
10 |
|
|
}
|
11 |
|
|
|
12 |
|
|
String xsl = request.getParameter("xsl");
|
13 |
|
|
if (xsl == null)
|
14 |
|
|
{
|
15 |
|
|
xsl = "wfs.xsl";
|
16 |
|
|
}
|
17 |
|
|
|
18 |
|
|
%>
|
19 |
|
|
|
20 |
|
|
<html>
|
21 |
|
|
<head>
|
22 |
|
|
<title> Map Query </title>
|
23 |
|
|
<style>
|
24 |
|
|
ul { font-size: 12pt; list-style-type: none; padding:1px; padding-left:16px; }
|
25 |
|
|
a { color: darkblue }
|
26 |
|
|
.title { font-size: 16pt; width:100%; color:darkblue; border: 1px black solid;
|
27 |
|
|
text-align:center; padding: 1px; }
|
28 |
|
|
</style>
|
29 |
|
|
</head>
|
30 |
|
|
<body>
|
31 |
|
|
<div class="title"> Map Query </div>
|
32 |
|
|
<xtags:style xml="<%=xml%>" xsl="<%=xsl%>"/>
|
33 |
|
|
</body>
|
34 |
|
|
</html>
|