mirror of
https://github.com/flopp/go-staticmaps.git
synced 2025-12-08 18:26:36 +00:00
14 lines
261 B
Go
14 lines
261 B
Go
package staticmaps
|
|
|
|
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)
|
|
}
|