Skip to content

Instantly share code, notes, and snippets.

@JavierBmrg
Last active March 22, 2018 04:46
Generate highlight area inside regional map with jqvmap
<?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 - Europe Map</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<link href="https://cdnjs.cloudflare.com/ajax/libs/jqvmap/1.5.1/jqvmap.min.css" media="screen" rel="stylesheet" type="text/css"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js" media="screen" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqvmap/1.5.1/jquery.vmap.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqvmap/1.5.1/maps/continents/jquery.vmap.europe.js" charset="utf-8"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqvmap/1.5.1/maps/continents/jquery.vmap.south-america.js" charset="utf-8"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqvmap/1.5.1/maps/continents/jquery.vmap.north-america.js" charset="utf-8"></script>
</head>
<body>
<div id="vmap" style="width: 580px; height: 320px;"></div>
<form id="form-map">
<input type="text" name="country" id="country"/>
<input type="button" name="send" id="send-btn" value="Set new country!"/>
</form>
<script>
var jsObject = {
map: 'north-america_en',
enableZoom: false,
selectedRegions: ['us'],
selectedColor: '#003366',
color: '#f4f3f0',
backgroundColor: 'transparent',
borderColor: '#FFF',
borderOpacity: 0.25,
borderWidth: 1
};
jQuery(document).ready(function () {
jQuery('#vmap').vectorMap(jsObject);
console.log(jsObject);
setTimeout(function(){
jsObject.selectedRegions = ['ca'];
jQuery('#vmap').vectorMap(jsObject);
},3000);
$("#send-btn").click(function(){
var country = $("#country").val();
console.log(jsObject);
setTimeout(function(){
jQuery('#vmap').vectorMap(jsObject);
},1000);
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment