Subversion Repositories php-qbpwcf

Rev

Rev 23 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23 liveuser 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
<html>
3
 
4
    <head>
5
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6
        <title>amMap example</title>
7
 
8
        <link rel="stylesheet" href="../ammap/ammap.css" type="text/css">
9
        <script src="../ammap/ammap.js" type="text/javascript"></script>
10
        <!-- check ammap/maps/js/ folder to see all available countries -->
11
        <!-- map file should be included after ammap.js -->
12
		<script src="../ammap/maps/js/japanLow.js" type="text/javascript"></script>
13
        <script>
14
			var map = AmCharts.makeChart("mapdiv", {
15
				type: "map",
16
 
17
 
18
 
19
				balloon: {
20
					color: "#000000"
21
				},
22
 
23
				dataProvider: {
24
					map: "japanLow",
25
					getAreasFromMap: true
26
				},
27
 
28
				areasSettings: {
29
					autoZoom: true,
30
					selectedColor: "#CC0000"
31
				},
32
 
33
				smallMap: {}
34
			});
35
        </script>
36
    </head>
37
 
38
    <body>
39
        <div id="mapdiv" style="width: 800px; background-color:#EEEEEE; height: 500px;"></div>
40
    </body>
41
 
42
</html>