source: geomoose2/trunk/htdocs/geomoose.html

Last change on this file was 999, checked in by jimk, 11 years ago

Update OpenLayers from 2.11 to 2.12

OpenLayers 2.12 removes the OpenLayers.Layer.Yahoo class
which required removing the Yahoo layer type from the GeoMoose
MapSource, sample mapbook, and updating documentation.

File size: 3.9 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4 <title>GeoMOOSE 2.6.1</title>
5
6 <meta name="crawl_key" content="06a9c7a2a53faadc417db597a5e48844"/>
7 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
8 <!--
9 Copyright (c) 2009-2012, Dan "Ducky" Little & GeoMOOSE.org
10
11 Permission is hereby granted, free of charge, to any person obtaining a copy
12 of this software and associated documentation files (the "Software"), to deal
13 in the Software without restriction, including without limitation the rights
14 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 copies of the Software, and to permit persons to whom the Software is
16 furnished to do so, subject to the following conditions:
17
18 The above copyright notice and this permission notice shall be included in
19 all copies or substantial portions of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 THE SOFTWARE.
28 -->
29
30
31 <link type="text/css" rel="stylesheet" href="css/common.css"/>
32 <link type="text/css" rel="stylesheet" href="css/catalog.css"/>
33 <link type="text/css" rel="stylesheet" href="css/tools.css"/>
34 <link type="text/css" rel="stylesheet" href="css/sprite.css"/>
35
36 <link type="text/css" rel="stylesheet" href="css/user_tools.css"/>
37 <link type="text/css" rel="stylesheet" href="css/user_catalog.css"/>
38 <link type="text/css" rel="stylesheet" href="build/dijit/themes/tundra/tundra.css"/>
39
40 <!--
41 This is where your skin is defined.
42 For an example, comment out the line containing "green.css" and
43 uncomment "blue.css".
44 -->
45<!-- <link type="text/css" rel="stylesheet" href="skins/green/green.css"/>-->
46<!-- <link type="text/css" rel="stylesheet" href="skins/blue/blue.css"/> -->
47<!-- <link type="text/css" rel="stylesheet" href="skins/red/red.css"/> -->
48 <link type="text/css" rel="stylesheet" href="skins/grey/grey.css"/>
49
50
51 <!-- This is the projection library -->
52 <script type="text/javascript" src="build/proj4js-compressed.js"></script>
53
54 <!--
55 Include your projection file below.
56 -->
57 <script type="text/javascript" src="projections/EPSG26915.js"></script>
58 <script type="text/javascript" src="projections/EPSG3857.js"></script>
59
60 <!-- these are the mapping libraries -->
61 <!-- webmerc-libs -->
62 <!--
63 -->
64 <script type="text/javascript" src='http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1'></script>
65 <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false&v=3.6"></script>
66 <!--
67 -->
68 <!-- end webmerc-libs -->
69
70 <script type="text/javascript" src="build/OpenLayers.js"></script>
71 <!--
72 -->
73 <script type="text/javascript" src="geomoose/config.js"></script>
74
75 <script type="text/javascript" src="geomoose/geomoose.js"></script>
76 <script type="text/javascript" src="build/dojo/dojo.js"></script>
77
78 <script type="text/javascript" src="geomoose/main.js"></script>
79
80 <style type="text/css">
81 html,body,#main {
82 width: 100%; height:100%;
83 }
84
85 #main {
86 position: absolute;
87 top: 0; left: 0;
88 }
89 </style>
90
91 <script type="text/javascript" src="extensions/MeasureWithBearing.js"></script>
92</head>
93<body class="tundra">
94
95<div id="main">
96 <div id="header">
97 <span id="logo"></span>
98 <div id="menubar"></div>
99 <div id="toolbar"></div>
100 </div>
101
102 <div id="middle" region="center">
103 <div id="map">
104 <div id="mapContainer"></div>
105 </div>
106
107 <div id="control-panel">
108 <div id="tabs"></div>
109 </div>
110 </div>
111
112 <div id="footer">
113 <span id="footer_logo"></span>
114 <span id="copyright"><a href="http://www.geomoose.org" target="_blank" class="geomoose_link">GeoMOOSE 2.6.1</a></span>
115 </div>
116</div>
117
118</body>
119</html>
Note: See TracBrowser for help on using the repository browser.