Jvectormap missing countries

I have been using jvectormap now for several weeks, but there are many missing countries. Does anyone know where I can get country information in jvectormap format?

I searched on Google for hours, but found nothing.

There is a jqvmap with several countries, but it is in a different forecast, and some countries are also missing.

I am currently using:

jvectormap-world-en.js

and i cant handle python converter.

Does anyone have a source for this?

+5
source share
2 answers

Finally, I found a vector map with all countries on wikimedia:

wikimedia.org

0
source

, , , . , . , , jVectorMap .

, . :

//instead of this
markers: [
  {latLng: [41.90, 12.45], name: 'Vatican City'},
  {latLng: [43.73, 7.41], name: 'Monaco'},
  ...
]

//use this
markers: {
  "VA": {latLng: [41.90, 12.45], name: 'Vatican City'},
  "MC": {latLng: [43.73, 7.41], name: 'Monaco'},
  ...
}
+5

All Articles