-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
29 lines (29 loc) · 1.11 KB
/
example.html
File metadata and controls
29 lines (29 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<title>ASP Integrated Map</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=[GOOGLE PUBLIC API KEY]&sensor=false" type="text/javascript"></script>
<script src="js/mapInitSeismicCombo.js" type="text/javascript"></script>
<script src="js/basemap_v3.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jsrender/0.9.84/jsrender.min.js" type="text/javascript"></script>
<style type="text/css">
#mapc {
background-color: '#fff';
background-position: 'center center';
border: '1px solid #039';
cursor: 'default';
width: 750px;
height: 650px;
}
</style>
<link rel="stylesheet" type="text/css" href="css/mapv3.css">
<link rel="stylesheet" type="text/css" href="css/mapStyling.css">
</head>
<body>
<div id="content">
<h2>ASP Integrated Map Interface -- BETA -- </h2>
<div id="mapc"></div>
</div>
</body>
</html>