-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 855 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hanoi interactive Map</title>
<style type="text/css">
.heaven-on-earth {
fill: yellow;
}
</style>
<script src="svg-pan-zoom.min.js"></script>
</head>
<body>
<div id="container" style="width: 550px; height: 400px; border:none; ">
<!-- Raphaël JS Map Here -->
</div>
<h3 id="region-name"></h3>
<script src="raphael-min.js"></script>
<script src="map.js"></script>
<script>
window.onload = function() {
svgPanZoom('svg', {
zoomEnabled: true,
controlIconsEnabled: true,
dblClickZoomEnabled: true,
mouseWheelZoomEnabled: true,
preventMouseEventsDefault: true,
zoomScaleSensitivity: 0.1,
contain: true,
center: true,
minZoom: 1
}).zoomAtPointBy(3.8, {x: 383, y: 183});
};
</script>
</body>
</html>