2023-07-31 15:44:08 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"joylink.club/bj-rtsts-server/ats/verify/protos/graphicData"
|
|
|
|
)
|
|
|
|
|
2023-07-31 17:27:05 +08:00
|
|
|
// 查询地图数据
|
2023-07-31 15:44:08 +08:00
|
|
|
func QueryRtssGraphicStorage(mapId int32) *graphicData.RtssGraphicStorage {
|
|
|
|
publishdata, err := GetPublishedGiById(int(mapId))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
graphicStorage := &graphicData.RtssGraphicStorage{}
|
|
|
|
proto.Unmarshal(publishdata.Proto, graphicStorage)
|
|
|
|
return graphicStorage
|
|
|
|
}
|