-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmtrmap.html
37 lines (35 loc) · 959 Bytes
/
mtrmap.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MTR Report to Google Maps</title>
<link rel="stylesheet" href="styles.css">
</head>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 1em;
}
textarea {
width: 100%;
resize: vertical;
padding: 0.5em;
}
</style>
<body>
<div class="container">
<h1>MTR Report to Google Maps</h1>
<form action="mtrmap.php" method="post">
<label for="mtrReport">Paste your MTR report here:</label>
<textarea name="mtrReport" id="mtrReport" rows="10" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap&callback=initMap" async defer></script>
</body>
</html>