-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (87 loc) · 4.45 KB
/
index.html
File metadata and controls
96 lines (87 loc) · 4.45 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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="manifest" href="/manifest.json" />
<link rel="icon" type="image/png" href="/icon.png" />
<link rel="apple-touch-icon" href="/icon.png" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<!-- Primary Meta Tags -->
<title>MapParser | Google Maps Route Parser</title>
<meta name="title" content="MapParser | Google Maps Route Parser" />
<meta name="description"
content="Effortlessly parse Google Maps directions into CSV and KML files. Save your trips, visualize routes on OpenStreetMap or Google Maps, and organize your travel itineraries." />
<meta name="keywords"
content="Google maps parser, route parser, maps to csv, maps to kml, trip planner, route visualizer, travel organizer" />
<meta name="author" content="MapParser Team" />
<meta name="creator" content="Changzhi Ai" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://mapparser.travel-tracker.org/" />
<meta property="og:title" content="MapParser | Google Maps Route Parser" />
<meta property="og:description"
content="Extract locations from Google Maps links and export to CSV/KML. The ultimate tool for travelers and digital nomads." />
<meta property="og:image" content="https://mapparser.travel-tracker.org/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://mapparser.travel-tracker.org/" />
<meta property="twitter:title" content="MapParser | Google Maps Route Parser" />
<meta property="twitter:description" content="Convert Google Maps routes to CSV/KML and visualize them instantly." />
<meta property="twitter:image" content="https://mapparser.travel-tracker.org/og-image.png" />
<!-- Canonical -->
<link rel="canonical" href="https://mapparser.travel-tracker.org/" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#4f46e5" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<!-- Preconnect to external services for performance -->
<link rel="preconnect" href="https://nominatim.openstreetmap.org" />
<link rel="preconnect" href="https://router.project-osrm.org" />
<link rel="preconnect" href="https://www.google-analytics.com" crossorigin />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "MapParser",
"url": "https://mapparser.travel-tracker.org/",
"description": "Parse Google Maps directions into CSV and KML files effortlessly. Save your trips, visualize routes on OpenStreetMap or Google Maps, and organize your travel itineraries.",
"applicationCategory": "TravelApplication",
"genre": "Travel Tool",
"downloadUrl": "https://mapparser.travel-tracker.org/download",
"browserRequirements": "Requires JavaScript",
"softwareVersion": "1.0.3",
"operatingSystem": "Web, iOS, Android",
"author": {
"@type": "Organization",
"name": "MapParser Team"
},
"creator": {
"@type": "Person",
"name": "Changzhi Ai"
}
}
</script>
</head>
<body>
<div id="root"></div>
<!-- SEO: Link list for crawlers to discover SPA routes -->
<nav
style="position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;">
<a href="/">MapParser Home - Google Maps Route Parser</a>
<a href="/my-trips">My Saved Trips & Travel Routes</a>
<a href="/login">Sign In - Access Your MapParser Account</a>
<a href="/create-account">Create Account - Join MapParser</a>
<a href="/reset">Reset Password - Recover Your Account</a>
<a href="/profile">User Profile - Manage Your Settings</a>
<a href="/map-view">Interactive Route Map - OpenStreetMap Viewer</a>
<a href="/google-map-view">Google Maps Route Viewer</a>
<a href="/download">Download MapParser Mobile App - iOS and Android</a>
<a href="/about">About MapParser - Learn More</a>
<a href="/privacy">Privacy Policy</a>
<a href="/delete-account">Delete Account Information</a>
</nav>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>