18 lines
297 B
JavaScript
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');
|
|
}
|
|
});
|