Project

General

Profile

1
<%@page contentType="text/html"%>
2

    
3
<!--
4
Description: A Browser based Web Map Server Client based on javascript and XSL
5
             libraries from http://mapbuilder.sourceforge.net .
6
Licence:     LGPL as per: http://www.gnu.org/copyleft/lesser.html
7

    
8
$Id: complete.jsp 2124 2006-06-12 22:30:12Z lderezinski $
9
$Name$
10
-->
11
<%
12
  request.setAttribute("mbConfigUrl", "/demo/complete/completeConfig.xml");
13
%>
14

    
15

    
16
<html>
17
  <head>
18
    <title>Mapbuilder Demo</title>
19

    
20
    <link rel="stylesheet" href="<%= request.getContextPath() %>/lib/skin/default/mapStyle.css" type="text/css">
21

    
22
  <jsp:include page="/MapbuilderHead.jsp" flush="true"/>
23

    
24
  </head>
25

    
26
  <body onload="mbDoLoad()">
27
    <!-- Layout mapbuilder widgets and HTML -->
28
    <h1><a href="http://mapbuilder.sourceforge.net">Community Map Builder</a> Demo</h1>
29
    <table>
30
      <tr>
31
        <td valign="top" style="padding:6px;width:180">
32
        <div id="locatorMap" >  </div>
33
        </td>
34
        <td>
35
          <h2 id="mapTitle"></h2>
36
          <div id="mainMapPane"></div>
37
        </td>
38
      </tr>
39
      <tr>
40
        <td/>
41
        <td valign="top">
42
          <table width="100%">
43
            <tr>
44
              <td align="left">
45
                <div id="mainButtonBar"/>
46
              </td>
47
              <td align="center" id="mapScaleText"/>
48
              <td align="right" id="cursorTrack" />
49
            </tr>
50
          </table>
51
        </td>
52
      </tr>
53
      <tr>
54
        <td id="legend"/>
55
        <td id="collectionList"/>
56
      </tr>
57
      <tr>
58
        <td id="locationsSelect"/>
59
        <td id="ntsLookupForm"/>
60
      </tr>
61
      <tr>
62
        <td id="urlInput"/>
63
        <td id="abstract"/>
64
      </tr>
65
      <tr>
66
        <td id="saveModel"/>
67
        <td id="wmsCapabilitiesImport"/>
68
      </tr>
69
      <tr>
70
        <td/>
71
        <td id="aoiForm"/>
72
      </tr>
73
      <tr>
74
        <td id="featureList"/>
75
        <td id="transactionResponse"/>
76
      </tr>
77
      <tr>
78
        <td colspan="2">
79
          <div id="eventLog"/>
80
        </td>
81
      </tr>
82
    </table>
83
    <br/>
84
    <p align="right"><a href="http://mapbuilder.sourceforge.net">Community Map Builder</a><br/>$Name$</p>
85

    
86
  </body>
87
</html>
(1-1/3)