2019-01-10 17:21:34 +03:00
|
|
|
package mapblockrenderer
|
|
|
|
|
|
|
|
import (
|
2019-01-10 19:50:31 +03:00
|
|
|
"mapserver/colormapping"
|
|
|
|
"mapserver/coords"
|
2019-01-10 17:21:34 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type MapBlockRenderer struct {
|
2019-01-10 19:50:31 +03:00
|
|
|
accessor *coords.DBAccessor
|
|
|
|
colors *colormapping.ColorMapping
|
2019-01-10 17:21:34 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 19:50:31 +03:00
|
|
|
func NewMapBlockRenderer(accessor *coords.DBAccessor, colors *colormapping.ColorMapping) {
|
|
|
|
//TODO
|
2019-01-10 17:21:34 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 19:50:31 +03:00
|
|
|
func (r *MapBlockRenderer) Render(r coords.MapBlockRange) {
|
|
|
|
//TODO
|
2019-01-10 17:21:34 +03:00
|
|
|
}
|