-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasGPSmap.html
More file actions
39 lines (30 loc) · 1.28 KB
/
Copy pathasGPSmap.html
File metadata and controls
39 lines (30 loc) · 1.28 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
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>asGPS - AfterShot Pro: map window</title>
<meta charset="UTF-8"></meta>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"></meta>
<meta name="apple-mobile-web-app-capable" content="yes"></meta>
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map_canvas { height: 100%; width: 100% }
</style>
<script type="text/javascript" src="qrc:///html/gup.js"></script>
<script type="text/javascript">
var lang = gup ("language");
var region = gup ("region");
var toolsMap = (gup('toolsMap') == "true") ? true : false;
var js = "http://maps.googleapis.com/maps/api/js?v=3&libraries=geometry,places,weather,panoramio&sensor=false";
if (lang !== "") js += "\&language=" + lang;
if (region !== "") js += "\®ion=" + region;
document.write('<script txpe="text/javascript" src="' + js + '"><\/script>');
</script>
<script type="text/javascript" src="qrc:///html/asGPS.js"></script>
<script type="text/javascript" src="qrc:///html/trackView.js"></script>
<script type="text/javascript" src="qrc:///OpenLayers/OpenLayers/OpenLayers.js"></script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%;"></div>
</body>
</html>