-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
38 lines (35 loc) · 1.27 KB
/
map.html
File metadata and controls
38 lines (35 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<html>
<head>
<title>Geolocation</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<script src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script type="text/javascript">
emailjs.init("IuV_lWzTUPfkTmdol");
</script>
<link rel="stylesheet" type="text/css" href="map/map.css" />
<script type="module" src="map/map.js"></script>
</head>
<body>
<div id="map"></div>
<button id="emailButton" class="custom-map-control-button">Send Location via Email</button>
<!--
The `defer` attribute causes the callback to execute after the full HTML
document has been parsed. For non-blocking uses, avoiding race conditions,
and consistent behavior across browsers, consider loading using Promises.
See https://developers.google.com/maps/documentation/javascript/load-maps-js-api
for more information.
-->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyApfq9oJlL0Y_w3q4O_hMX8Sr4nCjv2Nno&callback=initMap&v=weekly"
defer
></script>
</body>
</html>