docs / v0.1.0 prepare

This commit is contained in:
Thomas Rudin 2019-02-08 21:00:39 +01:00
parent 57343a9b6e
commit 957f09e41a
9 changed files with 3 additions and 3 deletions

BIN
pics/bones.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

BIN
pics/digiterms.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
pics/lcd_display.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

BIN
pics/poi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
pics/protectors.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
pics/travelnet.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -13,7 +13,7 @@ import (
)
const (
Version = "0.0.2"
Version = "0.1.0"
)
type App struct {

View File

@ -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);
})

View File

@ -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){