url-processor/public/get.html
Harry Bond af7c84cbff improve UI style
Signed-off-by: Harry Bond <endim8@pm.me>
2022-04-19 23:02:27 +02:00

100 lines
3.9 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="apple-itunes-app" content="app-id=1567437057">
<meta name="description" content="Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced OpenStreetMap data and curated with love by MAPS.ME founders.">
<meta itemprop="name" content="Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced OpenStreetMap data and curated with love by MAPS.ME founders.">
<meta itemprop="description" content="Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced OpenStreetMap data and curated with love by MAPS.ME founders.">
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png">
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#449f33">
<title>Download and Install Organic Maps</title>
<script type="text/javascript">
const defaultUrl = 'https://organicmaps.app/';
const githubUrl = 'https://github.com/organicmaps/organicmaps#organic-maps';
const appStoreUrl = 'https://apps.apple.com/app/id1567437057';
const googlePlayUrl = 'https://play.google.com/store/apps/details?id=app.organicmaps';
const appGalleryUrl = 'https://appgallery.huawei.com/#/app/C104325611';
const fdroidUrl = 'https://f-droid.org/en/packages/app.organicmaps/';
const isiOS = navigator.platform.substr(0, 2) === 'iP' || // iPhone, iPad, iPod, including simulators.
(navigator.userAgent.includes('Mac') && 'ontouchend' in document); // iPad on iOS 13+.
const isAndroid = !isiOS && /(android)/i.test(navigator.userAgent);
const isDesktop = !isiOS && !isAndroid;
let redirectUrl = defaultUrl;
const path = new URL(window.location.href).pathname.toLowerCase();
if (isAndroid) {
if (navigator.userAgent.includes('Huawei')) redirectUrl = appGalleryUrl;
else if (pathname === '/get') redirectUrl = googlePlayUrl;
} else if (isiOS) {
redirectUrl = appStoreUrl;
}
window.open(redirectUrl,'_self');
</script>
<style>
html,
body {
width: 100%;
margin: 0;
padding: 0;
background-color: black;
color: white;
}
p {
margin: 1rem;
}
a,
a:link,
a:visited {
color: limegreen;
}
a:hover,
a:active {
color: lime;
}
</style>
</head>
<body>
<p>
<a href="https://organicmaps.app">Organic Maps</a> is an Android & iOS offline maps app
for travelers, tourists, hikers, and cyclists based on top of crowd-sourced
<a href="https://openstreetmap.org">OpenStreetMap</a> data and curated with love by <strong>MAPS.ME</strong> founders.
</p>
<p>
<a href="https://play.google.com/store/apps/details?id=app.organicmaps">
<img src="https://raw.githubusercontent.com/organicmaps/organicmaps/master/docs/badges/google-play.png" width="180">
</a>
<a href="https://f-droid.org/en/packages/app.organicmaps/">
<img src="https://raw.githubusercontent.com/organicmaps/organicmaps/master/docs/badges/fdroid.png" width="180">
</a>
<a href="https://appgallery.huawei.com/#/app/C104325611">
<img src="https://raw.githubusercontent.com/organicmaps/organicmaps/master/docs/badges/huawei-appgallery.png" width="180">
</a>
<a href="https://apps.apple.com/app/id1567437057">
<img src="https://raw.githubusercontent.com/organicmaps/organicmaps/master/docs/badges/apple-appstore.png" width="180">
</a>
</p>
</body>
</html>