geojson1 = {
const westPolygonCoords = [ [-179, 0], [-180, 0], [-180, 10], [-179, 10], [-179, 0] ].toReversed();
const eastPolygonCoords = [ [180, 0], [179, 0], [179, 10], [180, 10], [180, 0] ].toReversed();
return {
type: "Feature",
geometry: {
type: "MultiPolygon",
coordinates: [
[westPolygonCoords], [eastPolygonCoords]
]
},
properties: {}
};
}