cartodb-4.42/lib/assets/test/spec/deep-insights/spec-helper.js
2024-04-06 05:25:13 +00:00

42 lines
987 B
JavaScript

var cdb = require('internal-carto.js');
module.exports = {
createDefaultVis: function () {
return cdb.createVis(document.createElement('div'), {
bounds: [[24.206889622398023, -84.0234375], [76.9206135182968, 169.1015625]],
datasource: {
maps_api_template: 'asd',
user_name: 'pepe'
},
layers: [
{
id: 'layer1',
type: 'cartodb',
name: 'Layer Name',
options: {
source: 'a0',
cartocss: '#layer { polygon-fill: #CDCDCD; }'
}
}, {
id: 'layer2',
type: 'torque',
name: 'Torque Layer',
options: {
source: 'a0',
cartocss: '#layer { polygon-fill: #CDCDCD; }'
}
}
],
analyses: [
{
id: 'a0',
type: 'source',
params: {
query: 'SELECT * FROM akhenaton.bad_boys_de_marseille;'
}
}
]
});
}
};