Netgis client update

* adds new version to sources
This commit is contained in:
2022-09-12 13:12:59 +02:00
parent 968eea85d4
commit c08f5145fe
45 changed files with 6234 additions and 279 deletions
+20
View File
@@ -0,0 +1,20 @@
"use strict";
var netgis = netgis || {};
//TODO: this common Map class is probably deprecated, no need for inheritance ?
netgis.Map = function()
{
this.client = null;
this.root = null;
this.attribution = null;
};
netgis.Map.prototype.load = function()
{
this.root = document.createElement( "section" );
this.root.className = "netgis-map";
this.client.root.appendChild( this.root );
};