Eurozone VAT Gap
by amcharts
HTML
<script type="text/javascript" src="http://www.amcharts.com/lib/3/ammap.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/3/maps/js/usa2High.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/3/themes/none.js"></script>
<div id="chartdiv"></div>
<div id="legenddiv"></div>
CSS
body {
font-family: Verdana;
font-size: 12px;
padding: 10px;
}
#chartdiv {
width : 100%;
height : 500px;
}
#legenddiv {
width : 100%;
}
JavaScript
// svg path for target icon
var targetSVG = "M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z";
var map = AmCharts.makeChart("chartdiv", {
type: "map",
"theme": "none",
pathToImages: "http://www.amcharts.com/lib/3/images/",
titles: [{
text: "Minimum Wages by State — 9/1/14",
size: 15
}],
balloon: {
maxWidth: 200,
textAlign: "left"
},
dataProvider: {
map: "usa2High",
zoomLevel: 0.8,
images: [{
svgPath: targetSVG,
title: "Westfield Valley Fair Mall",
latitude: 37.354108,
longitude: -121.955236
}],
areas: [{
id: "US-AL",
color: "#323a8c",
customData: "No state minimum wage law."
}, {
id: "US-AK",
color: "#50944b",
customData: "$7.75"
}, {
id: "US-AZ",
color: "#50944b",
customData: "$7.90"
}, {
id: "US-AR",
color: "#ad97c6",
customData: "$6.25"
}, {
id: "US-CA",
color: "#50944b",
customData: "$9.00, effective July 1, 2014"
}, {
id: "US-CO",
color: "#50944b",
customData: "$8.00"
}, {
id: "US-CT",
color: "#50944b",
customData: "$8.70"
}, {
id: "US-DE",
color: "#50944b",
customData: "$7.75, effective June 1, 2014"
}, {
id: "US-DC",
color: "#50944b",
customData: "$9.50, effective July 1, 2014"
}, {
id: "US-FL",
color: "#50944b",
customData: "$7.93"
}, {
id: "US-GA",
color: "#ad97c6",
customData: "$5.15"
}, {
id: "US-HI",
color: "#50944b",
customData: "$7.25"
}, {
id: "US-ID",
color: "#00acec",
customData: "$7.25"
}, {
id: "US-IL",
color: "#50944b",
...