-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript" src="jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="map.js"></script>
<link rel="stylesheet" href="map.css" />
<script>
$(document).ready(function () {
var data = [
{ name: 'izmir', x: 27.145878, y: 38.429399, html: "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>" },
{ name: 'istanbul', x: 29.061618, y: 41.105254, html: "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>" },
{ name: 'kars', x: 43.090693, y: 40.595234, html: "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>" },
{ name: 'ankara', x: 32.856155, y: 39.931502, html: "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>" },
{ name: 'gaziantep', x: 37.8332, y: 37.06622, html: "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>" },
];
map.setData(data);
});
</script>
</head>
<body>
<div id="mapArea">
<img id="map" src="map.png" />
<div id="icons">
</div>
</div>
</body>
</html>