LinkStack/assets/js/vector-map.js
Julian Prieber 5dbb2b182d Version 4.0
-- Dashboard Update --

Update to version 4.0.0.
Complete redesign of the admin panel.
New features and a license change.
2023-04-26 15:44:39 +02:00

141 lines
2.7 KiB
JavaScript
Vendored

/* ====== Index ======
1. JEKYLL INSTANT SEARCH
2. SCROLLBAR CONTENT
3. TOOLTIPS AND POPOVER
4. JVECTORMAP DASHBOARD
5. JVECTORMAP ANALYTICS
6. JVECTORMAP WIDGET
7. MULTIPLE SELECT
8. LOADING BUTTON
8.1. BIND NORMAL BUTTONS
8.2. BIND PROGRESS BUTTONS AND SIMULATE LOADING PROGRESS
9. TOASTER
10. PROGRESS BAR
====== End ======*/
$(document).ready(function() {
"use strict";
/*======== 4. JVECTORMAP DASHBOARD ========*/
var mapData = {
US: 1298,
FR: 540,
DE: 350,
BW: 450,
NA: 250,
ZW: 300,
AU: 760,
GB: 120,
ZA: 450
};
if (document.getElementById("world")) {
$("#world").vectorMap({
map: "world_mill",
backgroundColor: "transparent",
zoomOnScroll: false,
regionStyle: {
initial: {
fill: "#e4e4e4",
"fill-opacity": 0.9,
stroke: "none",
"stroke-width": 0,
"stroke-opacity": 0
}
},
markerStyle: {
initial: {
stroke: "transparent"
},
hover: {
stroke: "rgba(112, 112, 112, 0.30)"
}
},
markers: [
{
latLng: [54.673629, -62.347026],
name: "America",
style: {
fill: "limegreen"
}
},
{
latLng: [62.466943, 11.797592],
name: "Europe",
style: {
fill: "orange"
}
},
{
latLng: [23.956725, -8.768815],
name: "Africa",
style: {
fill: "red"
}
},
{
latLng: [-21.943369, 123.102198],
name: "Australia",
style: {
fill: "royalblue"
}
}
]
});
}
/*======== 5. JVECTORMAP ANALYTICS ========*/
var mapData2 = {
IN: 19000,
US: 13000,
TR: 9500,
DO: 7500,
PL: 4600,
UK: 4000
};
if (document.getElementById("analytic-world")) {
$("#analytic-world").vectorMap({
map: "world_mill",
backgroundColor: "transparent",
zoomOnScroll: false,
regionStyle: {
initial: {
fill: "#e4e4e4",
"fill-opacity": 0.9,
stroke: "none",
"stroke-width": 0,
"stroke-opacity": 0
}
},
series: {
regions: [
{
values: mapData2,
scale: ["#6a9ef9", "#b6d0ff"],
normalizeFunction: "polynomial"
}
]
}
});
}
/*======== 6. JVECTORMAP WIDGET ========*/
if (document.getElementById("demoworld")) {
$("#demoworld").vectorMap({
map: "world_mill",
backgroundColor: "transparent",
regionStyle: {
initial: {
fill: "#9c9c9c"
}
}
});
}
});