Im using the jvectormap plugin, and I am trying to set the colors of each of the regions on the map. However, after applying the code below the map is displayed but with no colours applied. It just shows the map in white.
I have read multiple examples and questions on this matter, but I cant seem to get it to work for me.
Example 1 of setting random colours on a map.
Similar question to mine, however it doesn't solve my problem.
jQuery('#mapDiv').vectorMap({
map: 'au_merc_en',
backgroundColor: 'none',
colors: {
AU-SA: '#4E7387',
AU-WA:'#333333',
AU-VIC:'#89AFBF',
AU-TAS:'#817F8E',
AU-QLD:'#344B5E',
AU-NSW:'#344B5E',
AU-ACT:'#344B5E',
AU-NT:'#344B5E'
},
series: {
regions:
[{
attribute: 'fill'
}]
}
});
Can anyone see the problem?
.getScript()
that contains this code in thedocument.ready()
function and nothing appears on screen. I must be going wrong somewhere else, or there must be a problem calling it. Using firebug, I can see the script is being called anyway. And the map did show before hand, using the same code. – Unexceptionable