summaryrefslogtreecommitdiff
path: root/vendor/github.com/felix/go-staticmaps/map_object.go
blob: d174b51b55a3cec5666804fc4545393892424c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package sm

import (
	"github.com/fogleman/gg"
	"github.com/golang/geo/s2"
)

// MapObject is the interface for all objects on the map
type MapObject interface {
	bounds() s2.Rect
	extraMarginPixels() float64
	draw(dc *gg.Context, trans *transformer)
}