-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·78 lines (70 loc) · 3.99 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
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
<html>
<head>
<title>Hex Map of Thailand</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no" />
<!-- for Google -->
<meta name="description" content="พิมพ์ชื่อจังหวัด แล้วแสดงเป็นแผนที่รูปหกเหลี่ยมไปอวดเพื่อนได้เลย!" />
<meta name="keywords" content="hexmap, map, visualization, choropleth, thailand, แผนที่, จังหวัด, รูปหกเหลี่ยม, ประเทศไทย, ไทย" />
<meta name="author" content="Boonmee Lab" />
<!-- for Facebook -->
<meta property="og:title" content="Hex Map of Thailand" />
<meta property="og:type" content="article" />
<meta property="og:image" content="http://puripant.github.io/thailand-hex-map/thumbnail.png" />
<meta property="og:url" content="http://puripant.github.io/thailand-hex-map/" />
<meta property="og:description" content="พิมพ์ชื่อจังหวัด แล้วแสดงเป็นแผนที่รูปหกเหลี่ยมไปอวดเพื่อนได้เลย!" />
<!-- for Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Hex Map of Thailand" />
<meta name="twitter:description" content="พิมพ์ชื่อจังหวัด แล้วแสดงเป็นแผนที่รูปหกเหลี่ยมไปอวดเพื่อนได้เลย!" />
<meta name="twitter:image" content="http://puripant.github.io/thailand-hex-map/thumbnail.png" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.10/semantic.min.css">
<link href="main.css" rel="stylesheet">
</head>
<body>
<div id="input" class="ui form">
<label for="csv-file" class="fluid ui vertical animated basic button">
<div class="hidden content">
<i class="upload icon"></i>
</div>
<div class="visible content">อัพโหลดไฟล์ CSV …</div>
</label>
<input type="file" id="csv-file" style="display: none">
<!-- <div class="ui horizontal divider">หรือ</div> -->
<!-- <div class="field"> -->
<textarea readonly id="csv" rows="2" placeholder="ค่าจาก CSV …" onkeypress="onKeyPress();"></textarea>
<!-- </div> -->
<div class="ui horizontal divider">หรือ</div>
<select id="provinces" class="ui fluid search dropdown" multiple="">
<option value="">เลือกจังหวัด …</option>
</select>
<div class="ui horizontal divider">หรือ</div>
<p class="center">คลิกบนแผนที่เลย!</p>
</div>
<div id="result"></div>
<div class="center" id="credit">
<a href="" download="map.png" onclick="download_canvas(this)">
<div class="fluid ui pink vertical animated basic button" tabindex="0">
<div class="hidden content">ดาวน์โหลดแผนที่เป็นภาพ</div>
<div class="visible content">
<i class="download icon"></i>
</div>
</div>
</a>
<br />
โค้ดที่ <a href="/~https://github.com/puripant/thailand-hex-map">GitHub</a>
สร้างสรรค์โดย
<div class="logo boonmeelab"><a href="https://www.facebook.com/BoonmeeLab/"><span></span></a></div>
</div>
<!-- Adapted from https://gist.github.com/michellechandra/0b2ce4923dc9b5809922 -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/topojson@3"></script>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.10/semantic.min.js"></script>
<script src="papaparse.min.js"></script>
<script src="main.js"></script>
</body>
</html>