Is it possible to have different map with markers then the white map?
http://jvectormap.com/examples/markers-world/
so far I was able to use only the white map but I would like to use the blue map for example.
$(function(){
$('#world-map-markers').vectorMap({
map: 'world_mill_en',
scaleColors: ['#C8EEFF', '#0071A4'],
normalizeFunction: 'polynomial',
hoverOpacity: 0.7,
hoverColor: false,
markerStyle: {
initial: {
fill: '#F8E23B',
stroke: '#383f47'
}
},
backgroundColor: '#383f47',
markers: [
{latLng: [0.33, 6.73], name: 'São Tomé and Príncipe'}
]
});
});
Yes, sure! You need to pass a regionStyle object when initializing the jVectorMap.
Here is an example with a blue map: http://jsfiddle.net/9Vyv6/2/