I have a kml document that contains a polygon that should cover the whole world but it is rendered as a line along the antimeridian (i.e. the international date line) in Google Maps. Here is the offending snippet:
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-180.0,-90.0 -180.0,90.0 180.0,90.0 180.0,-90.0 -180.0,-90.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
Workaround? Any hints?