Skip to content
Snippets Groups Projects
Commit 0ba291b1 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

JSdoc form custom map options

parent bad3c285
No related branches found
No related tags found
1 merge request!295Resolve "alternative to google maps api way of visualizing maps"
...@@ -46,6 +46,11 @@ CustomMapOptions.prototype.isBigLogo = function () { ...@@ -46,6 +46,11 @@ CustomMapOptions.prototype.isBigLogo = function () {
CustomMapOptions.prototype.getProject = function () { CustomMapOptions.prototype.getProject = function () {
return this._project; return this._project;
}; };
/**
*
* @param {Project} project
*/
CustomMapOptions.prototype.setProject = function (project) { CustomMapOptions.prototype.setProject = function (project) {
this._project = project; this._project = project;
}; };
...@@ -67,6 +72,11 @@ CustomMapOptions.prototype.setPlugins = function (plugins) { ...@@ -67,6 +72,11 @@ CustomMapOptions.prototype.setPlugins = function (plugins) {
CustomMapOptions.prototype.getConfiguration = function () { CustomMapOptions.prototype.getConfiguration = function () {
return this._configuration; return this._configuration;
}; };
/**
*
* @param {Configuration} configuration
*/
CustomMapOptions.prototype.setConfiguration = function (configuration) { CustomMapOptions.prototype.setConfiguration = function (configuration) {
this._configuration = configuration; this._configuration = configuration;
}; };
...@@ -82,9 +92,19 @@ CustomMapOptions.prototype.getProjectId = function () { ...@@ -82,9 +92,19 @@ CustomMapOptions.prototype.getProjectId = function () {
return this._projectId; return this._projectId;
} }
}; };
/**
*
* @param {string} projectId
*/
CustomMapOptions.prototype.setProjectId = function (projectId) { CustomMapOptions.prototype.setProjectId = function (projectId) {
this._projectId = projectId; this._projectId = projectId;
}; };
/**
*
* @param {boolean} debug
*/
CustomMapOptions.prototype.setDebug = function (debug) { CustomMapOptions.prototype.setDebug = function (debug) {
if (debug !== undefined) { if (debug !== undefined) {
if (typeof debug !== "boolean") { if (typeof debug !== "boolean") {
...@@ -102,6 +122,10 @@ CustomMapOptions.prototype.isDebug = function () { ...@@ -102,6 +122,10 @@ CustomMapOptions.prototype.isDebug = function () {
return this._debug === true; return this._debug === true;
}; };
/**
*
* @param {HTMLElement} element
*/
CustomMapOptions.prototype.setElement = function (element) { CustomMapOptions.prototype.setElement = function (element) {
this._element = element; this._element = element;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment