mirror of
https://github.com/omniscale/magnacarto.git
synced 2025-09-28 12:33:33 +02:00
13 lines
204 B
Go
13 lines
204 B
Go
package render
|
|
|
|
import "image/color"
|
|
|
|
type Request struct {
|
|
Width int
|
|
Height int
|
|
BBOX [4]float64
|
|
EPSGCode int
|
|
Format string
|
|
ScaleFactor float64
|
|
BGColor *color.NRGBA
|
|
}
|