I created a custom SVG country map and plotted it with jVectorMap. Now I am trying to insert markers using lat/long on this map, but I don't understand how the "bbox" x;y system works.
I guess I have to do an inverse projection of the max and min lat/long of my map, but even when looking at the Alaska example below I don't understand how the x;y was obtained. I tried using the inv_aea from proj.js without recognizing anything relevant.
projection: {
centralMeridian: -100,
type: "aea"
}
insets: [{
"left": 0
"top": 440,
"width": 220,
"height": 147
"bbox":[{
"y": -8441281.712315228,
"x": -5263934.893342895
},{
"y": -6227992.545028123,
"x": -1949631.2950683108
}
}]