mirror of
https://github.com/omniscale/magnacarto.git
synced 2025-09-28 12:33:33 +02:00
20 lines
364 B
Go
20 lines
364 B
Go
package mml
|
|
|
|
type GeometryType string
|
|
|
|
const (
|
|
Unknown GeometryType = "Unknown"
|
|
LineString GeometryType = "LineString"
|
|
Polygon GeometryType = "Polygon"
|
|
Point GeometryType = "Point"
|
|
)
|
|
|
|
type Layer struct {
|
|
ID string
|
|
Classes []string
|
|
SRS string
|
|
Datasource Datasource
|
|
Type GeometryType
|
|
Active bool
|
|
GroupBy string
|
|
}
|