at path:
ROOT
/
sistema
/
vendors
/
jqvmap
/
examples
/
labels.html
run:
R
W
Run
images
DIR
2026-04-09 04:12:40
R
W
Run
js
DIR
2026-04-13 08:51:37
R
W
Run
algeria.html
1007 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
argentina.html
1.18 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
brazil.html
1.17 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
continents.html
5.5 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
europe.html
1011 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
france.html
1010 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
germany.html
1.17 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
greece.html
1.17 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
inactive_regions.html
2.09 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
iran.html
1.5 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
iraq.html
1.52 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
labels.html
3.63 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
mobile.html
1.72 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
multi.html
1.08 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
pins.html
6.38 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
pins_custom.html
3.43 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
responsive.html
1.32 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
russia.html
1.2 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
touch_detect.html
1.78 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
tunisia.html
1.12 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
turkey.html
1.11 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
usa.html
1.25 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
world.html
1.31 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
error_log
up
📄
labels.html
Save
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>JQVMap - USA Map</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <!-- Mobile Specific Meta Tags --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <link href="../dist/jqvmap.css" media="screen" rel="stylesheet" type="text/css"/> <style> html, body { padding: 0; margin: 0; width: 100%; height: 100%; } #vmap { width: 100%; height: 100%; background-color: red; -webkit-tap-highlight-color: rgba(0,0,0,0); } /* Setup basic CSS for Label */ .jqvmap-pin { font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif; cursor: default; pointer-events: none; } /* Hide Whichever Labels you want */ #jqvmap1_ri_pin, #jqvmap1_dc_pin, #jqvmap1_de_pin, #jqvmap1_md_pin { display: none; } /* Reposition Labels that are not quite right ( labels are centered in shape, and sometimes need tweaking ) */ #jqvmap1_ak_pin { margin-top: -2%; } #jqvmap1_ca_pin { margin-left: -2%; } #jqvmap1_ct_pin { margin-top: -0.25%; margin-left: -0.25%; } #jqvmap1_fl_pin { margin-left: 5%; } #jqvmap1_id_pin { margin-top: 3%; margin-left: -1%; } #jqvmap1_ky_pin { margin-left: 2%; } #jqvmap1_la_pin { margin-left: -2%; } #jqvmap1_mi_pin { margin-top: 4%; margin-left: 3%; } #jqvmap1_ma_pin { margin-top: -0.25%; } #jqvmap1_mn_pin { margin-top: 2%; margin-left: -2%; } #jqvmap1_nh_pin { margin-top: 1%; margin-left: -0.25%; } #jqvmap1_nj_pin { margin-top: 1%; } #jqvmap1_ok_pin { margin-left: 2%; } #jqvmap1_va_pin { margin-left: 2%; } #jqvmap1_wv_pin { margin-left: -1%; margin-top: 1%; } /* Add responsibe support to resize labels for difference screen sizes */ @media only screen and (min-width: 320px) { .jqvmap-pin { font-size: 6px; } } @media only screen and (min-width: 480px) { .jqvmap-pin { font-size: 8px; } } @media only screen and (min-width: 640px) { .jqvmap-pin { font-size: 10px; } } @media only screen and (min-width: 800px) { .jqvmap-pin { font-size: 12px; } } @media only screen and (min-width: 1024px) { .jqvmap-pin { font-size: 14px; } } </style> <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <script type="text/javascript" src="../dist/jquery.vmap.js"></script> <script type="text/javascript" src="../dist/maps/jquery.vmap.usa.js" charset="utf-8"></script> <script> jQuery(document).ready(function () { jQuery('#vmap').vectorMap({ map: 'usa_en', borderWidth: 0.25, showLabels: true }); }); </script> </head> <body> <div id="vmap"></div> </body> </html>