AdminLTE/bower_components/jvectormap/jquery-jvectormap.js

46 lines
1.1 KiB
JavaScript
Raw Normal View History

/**
2018-07-15 17:11:21 +02:00
* jVectorMap version 1.2.2
*
2018-07-15 17:11:21 +02:00
* Copyright 2011-2013, Kirill Lebedev
* Licensed under the MIT license.
*
*/
(function( $ ){
var apiParams = {
set: {
colors: 1,
values: 1,
backgroundColor: 1,
scaleColors: 1,
normalizeFunction: 1,
focus: 1
},
get: {
selectedRegions: 1,
selectedMarkers: 1,
mapObject: 1,
regionName: 1
}
};
$.fn.vectorMap = function(options) {
var map,
methodName,
2018-07-15 17:11:21 +02:00
event,
map = this.children('.jvectormap-container').data('mapObject');
if (options === 'addMap') {
2018-07-15 17:11:21 +02:00
jvm.WorldMap.maps[arguments[1]] = arguments[2];
} else if ((options === 'set' || options === 'get') && apiParams[options][arguments[1]]) {
methodName = arguments[1].charAt(0).toUpperCase()+arguments[1].substr(1);
return map[options+methodName].apply(map, Array.prototype.slice.call(arguments, 2));
} else {
options = options || {};
options.container = this;
2018-07-15 17:11:21 +02:00
map = new jvm.WorldMap(options);
}
return this;
};
})( jQuery );