-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
executable file
·103 lines (88 loc) · 5.04 KB
/
test.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
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
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163484557-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-163484557-2');
</script>
<title>Mapa lokacija centara za COVID PCR testiranje u Republici Hrvatskoj</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta property="og:title" content="Mapa lokacija centara za COVID PCR testiranje u Republici Hrvatskoj">
<meta property="og:site_name" content="koronatestiranje.com">
<meta property="og:url" content="https://koronatestiranje.com/">
<meta property="og:description" content="Ovaj projekt pokazuje lokacije centara za COVID testiranje PCR testom u RH. Ovo je neovisan projekt i nije povezan s Vladom Republike Hrvatske.">
<meta property="og:type" content="article">
<meta property="og:image" content="https://github.com/mejs/koronatestiranje/raw/master/img/map.png">
<meta charset="UTF-8">
<link rel = "stylesheet"
type = "text/css"
href = "style.css" />
</head>
</head>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="navbar" id=myNavbar>
<a href="https://koronatestiranje.com" class="active">Mapa</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdVL_-kXc9spQkppk17abcPTB24p8GuyOZ3WYcdFubcXLJPHA/viewform?usp=sf_link" target="_blank">Prijavi novi info</a>
<button id="myBtn">O projektu</button>
<a href="https://github.com/mejs/koronatestiranje" target="_blank">GitHub</a>
<a href="https://koronatestiranje.com/en" class="EN"> EN</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<!-- The Modal -->
<div class="modal" id="myModal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Ovaj projekt pokazuje lokacije centara za COVID testiranje PCR testom u RH. Ovo je neovisan projekt i nije povezan s Vladom RH.<p>
<p>Izvor za lokacije je <a href="https://koronavirus.hr/svi-testni-centri-u-republici-hrvatskoj/763" target="_blank">Službena stranica Vlade za pravodobne informacije o koronavirusu</a>, osim u slučajevima kad lokacije nisu dostupne na službenoj stranici, ali su neovisno potvrđene. U tom slučaju, izvor je web, email ili info telefon institucije. Ova mapa je informativne prirode i ne garantiramo točnost podataka; preporučamo da kontaktirate testne centre čak i kada naručivanje nije obavezno.</p>
<p><a class="info" href="https://medium.com/@vladimirvince/o-koronatestiranje-com-mapi-covid-testnih-centara-u-rh-d7bd3bce14eb" target="_blank">Medium post o projektu</a> | <a class="info" href="https://github.com/mejs/koronatestiranje" target="_blank">GitHub repository</a> | <a href="https://twitter.com/koronatestiran1" target="_blank">Twitter</a></p>
<p><img src="img/green.png"> Moguće testiranje na zahtjev (uz plaćanje)
<p><img src="img/orange.png"> Obavezna uputnica
<p>Ako želite sudjelovati u projektu i pomoći s verificiranjem informacija, pošaljite mail na vladimirvince at gmail.com ili DM na Twitteru <a href="https://twitter.com/mejs" style="display: inline;" target="_blank">@mejs</a> i dodat ćemo vas u projektni Slack.
<p> <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br /><a href="https://vladovince.com" target="_blank">Vlado Vince</a> 2020.</p>
</div>
</div>
<div class="content">
<iframe allowfullscreen scrollwheel='true' src="https://umap.openstreetmap.fr/en/map/lokacije-centara-za-covid-testiranje-testna-mapa_491448?scaleControl=false&miniMap=false&scrollWheelZoom=true&zoomControl=true&allowEdit=false&moreControl=false&searchControl=false&tilelayersControl=false&embedControl=false&datalayersControl=false&onLoadPanel=undefined&captionBar=false"></iframe>
</div>
<script>
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
function myFunction() {
var x = document.getElementById("myNavbar");
if (x.className === "navbar") {
x.className += " responsive";
} else {
x.className = "navbar";
}
}
</script>
</body>
</html>