2 回答
TA贡献1909条经验 获得超7个赞
您可以尝试在结构和结构中用作字段。我为您的方案创建了一个简单的程序,如下所示:interfacepolygonpoint
package main
import (
"fmt"
)
type figure struct {
name string
coordinates interface{}
}
func main() {
Point := figure{"Point", [2]float64{2.0, 7.88}}
Polygon := figure{"Polygon", [2][2]float64{{2.0, 7.88}, {3.0, 7.88}}}
fmt.Println(Point)
fmt.Println(Polygon)
}
输出:
{Point [2 7.88]}
{Polygon [[2 7.88] [3 7.88]]}
TA贡献1843条经验 获得超7个赞
首先,Ghoper的答案是100%正确的。的加入对我帮助很大。对于将来访问此处的任何人,这是我的GeoJson要素集合结构布局,以供参考:Coordinates interface{}
// Feature Collection
type FeatureCollection struct {
ID string `json:"_id,omitempty" bson:"_id,omitempty"`
Features []Feature `json:"features" bson:"features"`
Type string `json:"type" bson:"type"`
}
// Individual Feature
type Feature struct {
Type string `json:"type" bson:"type"`
Properties Properties `json:"properties" bson:"properties"`
Geometry Geometry `json:"geometry" bson:"geometry"`
}
// Feature Properties
type Properties struct {
Name string `json:"name" bson:"name"`
Height uint64 `json:"height" bson:"height"`
Purchased bool `json:"purchased" bson:"purchased"`
LastUpdated string `json:"last_updated" bson:"last_updated"`
}
// Feature Geometry
type Geometry struct {
Type string `json:"type" bson:"type"`
Coordinates interface{} `json:"coordinates" bson:"coordinates"`
}
适用于所有 GeoJson 类型 ( 线串、 点、 多边形、 多多边形 )
- 2 回答
- 0 关注
- 122 浏览
添加回答
举报