使用golang如何插入一条带有lat lng的2dsphere数据
可以使用mgo库,它提供了一个GeoJSON类型,可以用来存储lat lng数据。
```go
package main
import (
"fmt"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson" )
func main() {
// 初始化连接 MongoDB 的信息。
session, err := mgo.Dial("localhost") if err != nil { panic(err) } defer session.Close() // 选择数据库和集合 c := session.DB("test").C("locations") // 插入一条带有 latlng 的 2dsphere 数据 err = c.Insert(&bson.M{ "name": "Central Park", "loc": bson.M{ "$geometry": bson.M{ "type": "Point", "coordinates": []float64{-73, 40}, }, "$maxDistance": 500, }, }) if err != nil { panic(err) } fmt.Println("Inserted document with location data.") } ```
创作工场
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用🔥专业版,更聪明、更完整、更原创!