diff --git a/pics/bones.png b/pics/bones.png new file mode 100644 index 0000000..86511c2 Binary files /dev/null and b/pics/bones.png differ diff --git a/pics/digiterms.png b/pics/digiterms.png new file mode 100644 index 0000000..c5565b9 Binary files /dev/null and b/pics/digiterms.png differ diff --git a/pics/lcd_display.png b/pics/lcd_display.png new file mode 100644 index 0000000..e61ea8f Binary files /dev/null and b/pics/lcd_display.png differ diff --git a/pics/poi.png b/pics/poi.png new file mode 100644 index 0000000..91a5f84 Binary files /dev/null and b/pics/poi.png differ diff --git a/pics/protectors.png b/pics/protectors.png new file mode 100644 index 0000000..c46a77e Binary files /dev/null and b/pics/protectors.png differ diff --git a/pics/travelnet.png b/pics/travelnet.png new file mode 100644 index 0000000..908d739 Binary files /dev/null and b/pics/travelnet.png differ diff --git a/server/app/app.go b/server/app/app.go index d01401b..4cf42ee 100644 --- a/server/app/app.go +++ b/server/app/app.go @@ -13,7 +13,7 @@ import ( ) const ( - Version = "0.0.2" + Version = "0.1.0" ) type App struct { diff --git a/server/static/js/overlays/AbstractGeoJsonOverlay.js b/server/static/js/overlays/AbstractGeoJsonOverlay.js index 5d4e474..c0da33b 100644 --- a/server/static/js/overlays/AbstractGeoJsonOverlay.js +++ b/server/static/js/overlays/AbstractGeoJsonOverlay.js @@ -64,7 +64,7 @@ var AbstractGeoJsonOverlay = L.LayerGroup.extend({ .then(function(objects){ self.clearLayers(); - var geoJsonLayer = createGeoJson(objects); + var geoJsonLayer = self.createGeoJson(objects); geoJsonLayer.addTo(self); }) diff --git a/server/static/js/overlays/TechnicAnchorOverlay.js b/server/static/js/overlays/TechnicAnchorOverlay.js index a776a34..53c182f 100644 --- a/server/static/js/overlays/TechnicAnchorOverlay.js +++ b/server/static/js/overlays/TechnicAnchorOverlay.js @@ -10,7 +10,7 @@ var TechnicAnchorIcon = L.icon({ var TechnicAnchorOverlay = AbstractIconOverlay.extend({ initialize: function(wsChannel, layerMgr) { - AbstractIconOverlay.prototype.initialize.call(this, wsChannel, layerMgr, "luacontroller", TechnicAnchorIcon); + AbstractIconOverlay.prototype.initialize.call(this, wsChannel, layerMgr, "technicanchor", TechnicAnchorIcon); }, createPopup: function(lcd){