1
0
forked from MTSR/mapserver
mapserver/colormapping/colormapping.go

19 lines
236 B
Go
Raw Normal View History

2019-01-10 17:21:34 +03:00
package colormapping
2019-01-11 12:49:19 +03:00
import (
"mapserver/vfs"
)
2019-01-10 17:21:34 +03:00
type ColorMapping struct {
}
2019-01-11 12:49:19 +03:00
func (m *ColorMapping) LoadColors(filename string){
//TODO
}
func CreateColorMapping() {
//embedded colors
vfs.FSMustByte(false, "/colors.txt")
}