diff --git a/.gitignore b/.gitignore
index 76add87..bfbc7ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
node_modules
-dist
\ No newline at end of file
+dist
+.DS_STORE
diff --git a/.idea/codeStyleSettings.xml b/.idea/codeStyleSettings.xml
index a8d6ce5..d517590 100644
--- a/.idea/codeStyleSettings.xml
+++ b/.idea/codeStyleSettings.xml
@@ -14,6 +14,9 @@
+
+
+
diff --git a/app/js/map.js b/app/js/map.js
index df59128..7d52a9d 100644
--- a/app/js/map.js
+++ b/app/js/map.js
@@ -11,6 +11,7 @@ var Map = function(value) {
this.canvas = document.getElementById(main.canvas);
this.context = this.canvas.getContext("2d");
+ this.context.imageSmoothingEnabled = false;
trackTransforms(this.context);
@@ -21,4 +22,4 @@ var Map = function(value) {
this[key] = value[key];
}
}
-};
\ No newline at end of file
+};
diff --git a/app/js/map.js~ b/app/js/map.js~
new file mode 100644
index 0000000..df59128
--- /dev/null
+++ b/app/js/map.js~
@@ -0,0 +1,24 @@
+/**
+ * The interactive base structure
+ * @class
+ * @param {object} value
+ */
+var Map = function(value) {
+ this._type = "map";
+
+ this.container = document.getElementById(main.canvas + "-container");
+
+ this.canvas = document.getElementById(main.canvas);
+
+ this.context = this.canvas.getContext("2d");
+
+ trackTransforms(this.context);
+
+ this.popupContainer = document.getElementById(main.canvas + "-popup-container");
+
+ for(var key in value) {
+ if(value.hasOwnProperty(key)) {
+ this[key] = value[key];
+ }
+ }
+};
\ No newline at end of file
diff --git a/include/.DS_Store b/include/.DS_Store
deleted file mode 100644
index f7553a9..0000000
Binary files a/include/.DS_Store and /dev/null differ