-
Notifications
You must be signed in to change notification settings - Fork 68
/
index.html
44 lines (40 loc) · 2.56 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>CoinMap</title>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.css" />
<link href="MarkerCluster.css" rel="stylesheet" type="text/css" />
<link href="MarkerCluster.Default.css" rel="stylesheet" type="text/css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.ie.css" />
<link href="MarkerCluster.Default.ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
<script src="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js"></script>
<script src="leaflet.markercluster.js"></script>
<script src="Permalink.js"></script>
<script src="Permalink.Line.js"></script>
<script src="Permalink.Marker.js"></script>
<script src="Permalink.Layer.js"></script>
<script src="coinmap.js"></script>
<script src="coinmap-icons.js"></script>
<script src="coinmap-data.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" href="bitcoin.png" />
<meta name="bitcoin" content="1BnpG4jddgNXsQBQjsU8BS3F1Ubm9XgVah" />
<meta name="keywords" content="coinmap,map,bitcoin,openstreetmap" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body onload="coinmap()">
<div id="map"></div>
<div id="footer">
Click this <a href="http://www.youtube.com/watch?v=FLpe8YDf8P0&hd=1" target="_blank">short instructional video</a> to see how to add a new place that accepts Bitcoins ...<br/>
... or go directly to <a href="http://www.openstreetmap.org/edit" target="_blank">OpenStreetMap editor</a> and add <strong>payment:bitcoin=yes</strong> tag to your venue.<br/>
Donations are welcome at <a href="bitcoin:1BnpG4jddgNXsQBQjsU8BS3F1Ubm9XgVah">1BnpG4jddgNXsQBQjsU8BS3F1Ubm9XgVah</a><br/>
Venue data are updated every 15 minutes. Currently there are <span id="count"><b>0</b></span> places on the map.<br/>
Official <a href="https://bitcointalk.org/index.php?topic=175900">BitcoinTalk thread</a> | Source code available from <a href="https://github.com/prusnak/coinmap" target="_blank">Github</a><br/>
</div>
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-15639638-7', 'coinmap.org');ga('send', 'pageview');</script>
</body>
</html>