I have looked at several examples and put together my own world map as I want it, just one detail missing. I can position map points with coordinates, but I cannot position map points with country codes.
This is my example: http://jsfiddle.net/2sk6hfvz/
{
"type": "mapbubble", // <<-- change this to 'mappoint', why doesn't ghost icons show up?
"name": "Ghosts",
"dataLabels":
{
"enabled": false
},
"marker":
{
"symbol": "url(https://cdn1.iconfinder.com/data/icons/Momentum_MatteEntireSet/32/ghost.png)"
},
mapData: mapData,
joinBy: ['iso-a2', 'code'],
data:
[
{
name: "Liège",
code: "SE",
z: 1
},
{
name: "Buble",
code: "DE",
z: 1
}
]
}
Change "mapbubble" to "mappoint" in the example. Why doesn't the mappoint setting show up in the same way as mapbubble then using country codes?