554325746@qq.com
2020-02-17 045ca3200a757e368df9c6f2b043e687710a2ed1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package controllers
 
import (
    "basic.com/gb28181api.git"
    "github.com/gin-gonic/gin"
)
 
type Gb28181CloudController struct {
 
}
 
func (gb *Gb28181CloudController) Left(c *gin.Context) {
    cameraId := c.Query("cameraId")
 
    var gbApi gb28181api.Gb28181Api
    gbApi.SetCameraPtz(cameraId,"",3)
 
}