-
Notifications
You must be signed in to change notification settings - Fork 1
/
map.html
63 lines (52 loc) · 1.51 KB
/
map.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!--Google map-->
<!--title>Get Assistance</title>
<style>
.map-container{
overflow:hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}
.map-container iframe{
left:0;
top:0;
height:50%;
width:100%;
position:absolute;
}
</style>
<div id="map-container-google-1" class="z-depth-1-half map-container" style="height: 100px">
<iframe src="https://maps.google.com/maps?q=manhatan&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0"
style="border:0" allowfullscreen></iframe>
</div>
<!--Google Maps-->
<!--input type="button" id='script' name="scriptbutton" value=" Run Script " onclick="goPython()">
<script>
function goPython(){
$.ajax({
url: "code.py",
context: document.body
}).done(function() {
alert('finished python script');
});
}
</script-->
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="button" id='script' name="scriptbutton" value=" Run Script " onclick="goPython()">
<script src="http://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script>
function goPython(){
$.ajax({
url: "code.py",
context: document.body
}).done(function() {
alert('finished python script');;
});
}
</script>
</body>
</html>