Server IP : 103.191.208.50 / Your IP : 216.73.216.226 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/bmtrust.org.in/admin/bower_components/jvectormap/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/** * jVectorMap version 1.2.2 * * 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, event, map = this.children('.jvectormap-container').data('mapObject'); if (options === 'addMap') { 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; map = new jvm.WorldMap(options); } return this; }; })( jQuery );