Hi,
Is it possible to use different colors on the region maps, in order to illustrate different criterias additionnaly to the "global amount notion"?
I am going to take a very clear use case, let's say i want to create a worldwide region map that compare country by country if peoples prefer Coca or Pepsi.
Each document represents a citizen, we can imagine it this way:
{
"name": "John Doe"
"country": "USA" // Key to join the geoshape of the country,
"favoriteBrand": "coca" // other documents would say "pepsi"
}
So currently, i have created a region map that displays different levels of red country by country, according to how many peoples there are in each country.
But the next step i need to make is to have different levels of blue for Pepsi and different levels of red for Coca (which is basically to add another level of aggregation).
But i am not sure the region maps are ready for that.
Alternatively, i could build one map for Pepsi with different levels of blue, and another map with different levels of red for Coca, but it is not very interesting to compare things.
Is it possible to build a region map representing the global picture?
It is also the classic map we see when there are elections (1 color for each candidate, and the color change with the amount of people and the variety of choices for each area), so each document is a vote in this scenario.
Thanks!