You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
793 B
39 lines
793 B
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<script src="https://d3js.org/d3.v7.min.js" charset="utf-8"></script>
|
|
<script src="https://cdn.rawgit.com/mahuntington/mapping-demo/master/map_data.js" charset="utf-8"></script>
|
|
</head>
|
|
<body>
|
|
<svg></svg>
|
|
<form>
|
|
Top Left:
|
|
<input type="text" placeholder="latitude"/>
|
|
<input type="text" placeholder="longitude"/>
|
|
<br/>
|
|
Bottom Right:
|
|
<input type="text" placeholder="latitude"/>
|
|
<input type="text" placeholder="longitude"/>
|
|
|
|
<input type="submit"/>
|
|
</form>
|
|
<table border="1">
|
|
<tr>
|
|
<th>lat</th>
|
|
<th>lng</th>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
<script src="app.js" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|