cartodb-4.42/lib/assets/javascripts/cartodb/old_common/urls/map_url.js
2024-04-06 05:25:13 +00:00

18 lines
297 B
JavaScript

/**
* URL for a map (derived vis).
*/
cdb.common.MapUrl = cdb.common.Url.extend({
edit: function() {
return this.urlToPath('map');
},
public: function() {
return this.urlToPath('public_map');
},
deepInsights: function() {
return this.urlToPath('deep-insights');
}
});