cartodb-4.42/lib/assets/javascripts/dashboard/data/map-url-model.js

22 lines
380 B
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
const UrlModel = require('dashboard/data/url-model');
/**
* URL for a map (derived vis).
*/
const MapUrlModel = UrlModel.extend({
edit: function () {
return this.urlToPath('map');
},
public: function () {
return this.urlToPath('public_map');
},
deepInsights: function () {
return this.urlToPath('deep-insights');
}
});
module.exports = MapUrlModel;