Код: Выделить всё
polys1 = polys[polys['geometry'].apply(lambda x: isinstance(x, Polygon))]
lines1 = polys[polys['geometry'].apply(lambda x: isinstance(x, LineString))]
polys1.plot(ax=ax, facecolor=color, color=color, label=legend, zorder=2)
if plotAll and not lines1.empty:
lines1.plot(ax=ax, color=color, label=legend, zorder=3)
geoplot.polyplot(polys1, ax = ax, facecolor = "blue", zorder = 2)
if plotAll and not lines1.empty:
geoplot.polyplot(lines1, ax = ax, color = "blue", zorder = 3)
[img]https://i. sstatic.net/7AnAoaQe.png[/img]
KML, построенный с помощью matplotlib.plot без facecolor='blue'
[img]https:/ /i.sstatic.net/A230obz8.png[/img]
KML, построенный с помощью geoplot.plot

KML в Картах Google

Подробнее здесь: https://stackoverflow.com/questions/785 ... fill-color