I'm struggling to find a way to change the default background color of a state, say the Netherlands, when using GeoBubbleChart.
When using GeoGraphics this is pretty easy. For example,
GeoGraphics[{
EdgeForm[Black],
FaceForm[Black],
Polygon[GeoVariant[Entity["Country", "Belgium"], "PrincipalArea"]],
Polygon[
GeoVariant[Entity["Country", "Netherlands"], "PrincipalArea"]],
Polygon[
GeoVariant[Entity["Country", "Luxembourg"], "PrincipalArea"]]},
GeoScaleBar -> "Metric",
ImageSize -> Full,
GeoBackground -> None,
GeoRange -> {{49, 53.6}, {2, 7.5}}
]
However, how to obtain the same result with GeoBubbleChart?




GeoStyling[]is a surprisingly flexible thing. – J. M.'s missing motivation Mar 23 '20 at 14:22Datedwhich isn't working correctly (at this point) with the added options. But, yes,GeoStylingis a very, very nice thing. – rcollyer Mar 23 '20 at 14:23