1
0
forked from MTSR/mapserver
mapserver/server/mapobject/poi.go

21 lines
475 B
Go
Raw Normal View History

2019-01-18 17:10:46 +03:00
package mapobject
import (
"mapserver/mapblockparser"
2019-01-18 17:51:10 +03:00
"mapserver/mapobjectdb"
2019-01-18 17:10:46 +03:00
)
2019-01-28 16:33:32 +03:00
type PoiBlock struct{}
2019-01-24 10:26:28 +03:00
2019-01-28 16:33:32 +03:00
func (this *PoiBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
2019-01-24 15:55:29 +03:00
2019-02-06 10:38:08 +03:00
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "poi")
o.Attributes["name"] = md["name"]
o.Attributes["category"] = md["category"]
o.Attributes["url"] = md["url"]
o.Attributes["owner"] = md["owner"]
2019-01-24 10:26:28 +03:00
2019-01-28 16:33:32 +03:00
return o
2019-01-18 17:10:46 +03:00
}