-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (20 loc) · 873 Bytes
/
index.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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Google Maps Polygon Coordinates Tool</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<body onload="initialize()">
<h3>Drag or re-shape for coordinates to display below</h3>
<h3><a href="http://codepen.io/jhawes/blog/creating-a-real-estate-polygon-tool">See blog post</a></h3>
<div id="map-canvas"></div>
<div class="lngLat"><span class="one">Lat</span><span class="two">,Lng</span></div>
</body>
<button id="clipboard-btn" onclick="copyToClipboard(document.getElementById('info').innerHTML)">Copy to Clipboard</button>
<textarea id="info"></textarea>
<script src='https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false'></script>
<script src="js/index.js"></script>
</body>
</html>