Reputation: 93
I wanted to know if it is possible to create a choropleth map using plotly in python with latitude and longitude as locations. What would be the locationmode in this case?
Upvotes: 5
Views: 12838
Reputation: 2998
As I am supposed reading plotly docs, parameter locationmode
would be countrynames
. That means, you should see the full world map or chunks of map, depends on your passed data. This example can show map of Africa. So if you want select particular country, you can look and setup necessary parameters (lon
and lat
) in Scattergeo
, where you can choose langitude and latitude as you want
Upvotes: 7