import branca
# Create a white image of 4 pixels, and embed it in a url.
white_tile = branca.utilities.image_to_url([[1, 1], [1, 1]])
# Create a map using this url for each tile.
m = folium.Map(tiles=white_tile, attr="white tile", **kw)
folium.GeoJson(states).add_to(m)
m