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
        <!-- map file should be included after ammap.js -->
11
		<script src="../ammap/maps/js/worldLow.js" type="text/javascript"></script>
12
        <script>
13
			AmCharts.makeChart("mapdiv", {
14
 
15
				type: "map",
16
 
17
 
18
				dataProvider: {
19
					map: "worldLow",
20
					getAreasFromMap: true
21
				},
22
 
23
				areasSettings: {
24
					autoZoom: true,
25
					selectedColor: "#CC0000"
26
				},
27
 
28
				smallMap: {}
29
			});
30
 
31
        </script>
32
    </head>
33
 
34
    <body>
35
        <div id="mapdiv" style="width: 100%; background-color:#EEEEEE; height: 500px;"></div>
36
    </body>
37
 
38
</html>