mapAsGeoObject = {
let geo = {}
geo.type = "Feature"
geo.geometry = {}
geo.geometry.type = "Polygon"
geo.geometry.coordinates =
[
[
projection.invert([0,0]),
projection.invert([0, height]),
projection.invert([width,height]),
projection.invert([width,0])
].reverse()
]
return geo
}