{
await visibility();
return new Mapa({
...defaultSettings,
...{
width: 680,
bounds: {
bounder: true,
countries: null,
feature: {
type: "Feature",
geometry: {
type: "Polygon",
coordinates: savedExtent
}
}
},
layer: {
points: {
show: false,
data: mungeData
},
polys: {
show: false
},
tiles: {
show: false
},
grids: {
show: true,
data: [].concat(geoData),
method: { type: "raw" },
type: "qtree",
size: sqSize,
shape: "circle",
minSize: minSize,
maxSize: maxSize,
style: {
fill: "red",
"fill-opacity": 0.3,
stroke: "black",
"stroke-width": 0.5
},
qtree: {
show: false
},
square: {
show: true
}
}
},
projection: {
proj: "+proj=eqdc +lon_0=-93.0322266 +lat_1=26.8946786 +lat_2=34.8947853 +lat_0=30.894732 +datum=WGS84 +units=m +no_defs",
type: "proj4"
}
},
clipping: { clip: true, margin: 0 }
}).render;
}