-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample_cruise.php
More file actions
33 lines (33 loc) · 1.26 KB
/
Copy pathexample_cruise.php
File metadata and controls
33 lines (33 loc) · 1.26 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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>ASP Cruise Map Interface</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/maplabel.js"></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>
<script type="text/javascript">
var entry_id = <?php echo json_encode($_GET['cruiseln']); ?>;
</script>
<script src="js/mapInitSeismicComboGeojson.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 Cruise Map Interface</h2>
<div id="mapc" class="utig" ></div>
</div>
</body>
</html>