-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmultipoint.go
82 lines (73 loc) · 1.78 KB
/
multipoint.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package geojson
import (
"github.com/tidwall/geojson/geometry"
"github.com/tidwall/gjson"
)
type MultiPoint struct{ collection }
func NewMultiPoint(points []geometry.Point) *MultiPoint {
g := new(MultiPoint)
for _, point := range points {
g.children = append(g.children, NewPoint(point))
}
g.parseInitRectIndex(DefaultParseOptions)
return g
}
func (g *MultiPoint) AppendJSON(dst []byte) []byte {
dst = append(dst, `{"type":"MultiPoint","coordinates":[`...)
for i, g := range g.children {
if i > 0 {
dst = append(dst, ',')
}
dst = append(dst,
gjson.GetBytes(g.AppendJSON(nil), "coordinates").String()...)
}
dst = append(dst, ']')
if g.extra != nil {
dst = g.extra.appendJSONExtra(dst, false)
}
dst = append(dst, '}')
return dst
}
func (g *MultiPoint) String() string {
return string(g.AppendJSON(nil))
}
func (g *MultiPoint) JSON() string {
return string(g.AppendJSON(nil))
}
func (g *MultiPoint) MarshalJSON() ([]byte, error) {
return g.AppendJSON(nil), nil
}
func parseJSONMultiPoint(keys *parseKeys, opts *ParseOptions) (Object, error) {
var g MultiPoint
var err error
if !keys.rCoordinates.Exists() {
return nil, errCoordinatesMissing
}
if !keys.rCoordinates.IsArray() {
return nil, errCoordinatesInvalid
}
var coords geometry.Point
var ex *extra
keys.rCoordinates.ForEach(func(_, value gjson.Result) bool {
coords, ex, err = parseJSONPointCoords(keys, value, opts)
if err != nil {
return false
}
g.children = append(g.children, &Point{base: coords, extra: ex})
return true
})
if err != nil {
return nil, err
}
if err := parseBBoxAndExtras(&g.extra, keys, opts); err != nil {
return nil, err
}
g.parseInitRectIndex(opts)
return &g, nil
}
func (g *MultiPoint) Members() string {
if g.extra != nil {
return g.extra.members
}
return ""
}