This month's report will be prepared.
TodayAn email will be sent to the customer.
TodayThe meeting will be held.
YesterdayConversation with users.
YesterdayPayment refund will be made to the customer.
20 min agoPayment form will be activated.
20 min agoSigned in with a different device.
YesterdayYour billing information is not active.
YesterdayYour subscription has expired.
TodayYour storage space is running low
TodayJQVMap is a jQuery plugin that renders Interactive, Clickable Vector Maps. Demo page.
To use the plugin, you need to add the following files.
<!-- CSS -->
<link rel="stylesheet" href="libs/vmap/jqvmap.min.css" type="text/css">
<!-- Javascript -->
<script src="libs/vmap/jquery.vmap.min.js"></script>
<!-- Map to use -->
<script src="libs/vmap/maps/jquery.vmap.world.js"></script>
<div id="vmap" style="height: 400px;"></div>
$('#vmap').vectorMap({
map: 'world_en',
backgroundColor: '#fff',
color: '#ffffff',
hoverOpacity: 0.7,
borderColor: '#fff',
selectedColor: '#666666',
enableZoom: false,
showTooltip: true,
scaleColors: ['#C8EEFF', '#006491'],
normalizeFunction: 'polynomial',
});
Add this to your page:
<script src="libs/vmap/maps/jquery.vmap.usa.js"></script>
<div id="vmap" style="height: 400px;"></div>
$('#vmap').vectorMap({
map: 'usa_en',
backgroundColor: '#fff',
color: '#ffffff',
hoverOpacity: 0.7,
borderColor: '#fff',
selectedColor: '#666666',
enableZoom: false,
showTooltip: true,
scaleColors: ['#C8EEFF', '#006491'],
normalizeFunction: 'polynomial',
});