proto_geography

package module
v0.5.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 22, 2020 License: Apache-2.0 Imports: 6 Imported by: 0

README

proto_geograpy

Geographcal mapping service protocol

Mainly used for HarmoVIS_client.

Protocol messages
  • Lines
  • Arcs : Visualize Arcs
  • Scatters: Visualize Scatters
  • BarGraph: BarGraph Visuailzation
  • TopTextLabel: Label text for top left of HarmoVIS layers
  • ViewState: Viewport information (lat, lon, zoom, pitch)
  • Bearing : Viewport bearing
  • Pitch : Viewport pitch
  • HarmoVIS: configuration for HarmoVIS
Not currently implemented with provider_harmovis_layers
  • Geo
  • Point

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	BarColorType_name = map[int32]string{
		0: "FIXCOLOR",
		1: "VARCOLOR",
	}
	BarColorType_value = map[string]int32{
		"FIXCOLOR": 0,
		"VARCOLOR": 1,
	}
)

Enum value maps for BarColorType.

View Source
var (
	BarShapeType_name = map[int32]string{
		0: "BOX",
		1: "HEX",
	}
	BarShapeType_value = map[string]int32{
		"BOX": 0,
		"HEX": 1,
	}
)

Enum value maps for BarShapeType.

View Source
var File_geography_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Arcs added in v0.4.0

type Arcs struct {
	Srcs    []*Point `protobuf:"bytes,1,rep,name=srcs,proto3" json:"srcs,omitempty"`
	Tgts    []*Point `protobuf:"bytes,2,rep,name=tgts,proto3" json:"tgts,omitempty"`
	SrcCols []int32  `protobuf:"varint,3,rep,packed,name=srcCols,proto3" json:"srcCols,omitempty"`
	TgtCols []int32  `protobuf:"varint,4,rep,packed,name=tgtCols,proto3" json:"tgtCols,omitempty"`
	Tilts   []int32  `protobuf:"varint,5,rep,packed,name=tilts,proto3" json:"tilts,omitempty"` // may no tilts
	// contains filtered or unexported fields
}

func (*Arcs) Descriptor deprecated added in v0.4.0

func (*Arcs) Descriptor() ([]byte, []int)

Deprecated: Use Arcs.ProtoReflect.Descriptor instead.

func (*Arcs) GetSrcCols added in v0.4.0

func (x *Arcs) GetSrcCols() []int32

func (*Arcs) GetSrcs added in v0.4.0

func (x *Arcs) GetSrcs() []*Point

func (*Arcs) GetTgtCols added in v0.4.0

func (x *Arcs) GetTgtCols() []int32

func (*Arcs) GetTgts added in v0.4.0

func (x *Arcs) GetTgts() []*Point

func (*Arcs) GetTilts added in v0.4.0

func (x *Arcs) GetTilts() []int32

func (*Arcs) ProtoMessage added in v0.4.0

func (*Arcs) ProtoMessage()

func (*Arcs) ProtoReflect added in v0.4.0

func (x *Arcs) ProtoReflect() protoreflect.Message

func (*Arcs) Reset added in v0.4.0

func (x *Arcs) Reset()

func (*Arcs) String added in v0.4.0

func (x *Arcs) String() string

type BarColorType added in v0.2.0

type BarColorType int32

for BarGraph type

const (
	BarColorType_FIXCOLOR BarColorType = 0
	BarColorType_VARCOLOR BarColorType = 1
)

func (BarColorType) Descriptor added in v0.4.0

func (BarColorType) Enum added in v0.4.0

func (x BarColorType) Enum() *BarColorType

func (BarColorType) EnumDescriptor deprecated added in v0.2.0

func (BarColorType) EnumDescriptor() ([]byte, []int)

Deprecated: Use BarColorType.Descriptor instead.

func (BarColorType) Number added in v0.4.0

func (BarColorType) String added in v0.2.0

func (x BarColorType) String() string

func (BarColorType) Type added in v0.4.0

type BarData added in v0.1.0

type BarData struct {
	Label string  `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Color int32   `protobuf:"varint,3,opt,name=color,proto3" json:"color,omitempty"`
	Value float64 `protobuf:"fixed64,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*BarData) Descriptor deprecated added in v0.1.0

func (*BarData) Descriptor() ([]byte, []int)

Deprecated: Use BarData.ProtoReflect.Descriptor instead.

func (*BarData) GetColor added in v0.1.0

func (x *BarData) GetColor() int32

func (*BarData) GetLabel added in v0.1.0

func (x *BarData) GetLabel() string

func (*BarData) GetValue added in v0.1.0

func (x *BarData) GetValue() float64

func (*BarData) ProtoMessage added in v0.1.0

func (*BarData) ProtoMessage()

func (*BarData) ProtoReflect added in v0.4.0

func (x *BarData) ProtoReflect() protoreflect.Message

func (*BarData) Reset added in v0.1.0

func (x *BarData) Reset()

func (*BarData) String added in v0.1.0

func (x *BarData) String() string

type BarGraph added in v0.0.8

type BarGraph struct {
	Id        int32                `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Ts        *timestamp.Timestamp `protobuf:"bytes,2,opt,name=ts,proto3" json:"ts,omitempty"`
	ShapeType BarShapeType         `protobuf:"varint,3,opt,name=shapeType,proto3,enum=geography.BarShapeType" json:"shapeType,omitempty"`
	ColorType BarColorType         `protobuf:"varint,4,opt,name=colorType,proto3,enum=geography.BarColorType" json:"colorType,omitempty"`
	Color     int32                `protobuf:"varint,5,opt,name=color,proto3" json:"color,omitempty"`
	Lat       float64              `protobuf:"fixed64,6,opt,name=lat,proto3" json:"lat,omitempty"`
	Lon       float64              `protobuf:"fixed64,7,opt,name=lon,proto3" json:"lon,omitempty"`
	Width     float64              `protobuf:"fixed64,8,opt,name=width,proto3" json:"width,omitempty"`
	Radius    float64              `protobuf:"fixed64,9,opt,name=radius,proto3" json:"radius,omitempty"`
	Min       float64              `protobuf:"fixed64,10,opt,name=min,proto3" json:"min,omitempty"`
	Max       float64              `protobuf:"fixed64,11,opt,name=max,proto3" json:"max,omitempty"`
	AreaColor int32                `protobuf:"varint,12,opt,name=areaColor,proto3" json:"areaColor,omitempty"`
	BarData   []*BarData           `protobuf:"bytes,13,rep,name=barData,proto3" json:"barData,omitempty"`
	Text      string               `protobuf:"bytes,14,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*BarGraph) Descriptor deprecated added in v0.0.8

func (*BarGraph) Descriptor() ([]byte, []int)

Deprecated: Use BarGraph.ProtoReflect.Descriptor instead.

func (*BarGraph) GetAreaColor added in v0.1.0

func (x *BarGraph) GetAreaColor() int32

func (*BarGraph) GetBarData added in v0.1.0

func (x *BarGraph) GetBarData() []*BarData

func (*BarGraph) GetColor added in v0.0.8

func (x *BarGraph) GetColor() int32

func (*BarGraph) GetColorType added in v0.2.0

func (x *BarGraph) GetColorType() BarColorType

func (*BarGraph) GetId added in v0.0.8

func (x *BarGraph) GetId() int32

func (*BarGraph) GetLat added in v0.0.8

func (x *BarGraph) GetLat() float64

func (*BarGraph) GetLon added in v0.0.8

func (x *BarGraph) GetLon() float64

func (*BarGraph) GetMax added in v0.0.8

func (x *BarGraph) GetMax() float64

func (*BarGraph) GetMin added in v0.0.8

func (x *BarGraph) GetMin() float64

func (*BarGraph) GetRadius added in v0.0.8

func (x *BarGraph) GetRadius() float64

func (*BarGraph) GetShapeType added in v0.2.0

func (x *BarGraph) GetShapeType() BarShapeType

func (*BarGraph) GetText added in v0.0.8

func (x *BarGraph) GetText() string

func (*BarGraph) GetTs added in v0.0.8

func (x *BarGraph) GetTs() *timestamp.Timestamp

func (*BarGraph) GetWidth added in v0.0.8

func (x *BarGraph) GetWidth() float64

func (*BarGraph) ProtoMessage added in v0.0.8

func (*BarGraph) ProtoMessage()

func (*BarGraph) ProtoReflect added in v0.4.0

func (x *BarGraph) ProtoReflect() protoreflect.Message

func (*BarGraph) Reset added in v0.0.8

func (x *BarGraph) Reset()

func (*BarGraph) String added in v0.0.8

func (x *BarGraph) String() string

type BarGraphs added in v0.0.8

type BarGraphs struct {
	Bars []*BarGraph `protobuf:"bytes,1,rep,name=bars,proto3" json:"bars,omitempty"`
	// contains filtered or unexported fields
}

func (*BarGraphs) Descriptor deprecated added in v0.0.8

func (*BarGraphs) Descriptor() ([]byte, []int)

Deprecated: Use BarGraphs.ProtoReflect.Descriptor instead.

func (*BarGraphs) GetBars added in v0.0.8

func (x *BarGraphs) GetBars() []*BarGraph

func (*BarGraphs) ProtoMessage added in v0.0.8

func (*BarGraphs) ProtoMessage()

func (*BarGraphs) ProtoReflect added in v0.4.0

func (x *BarGraphs) ProtoReflect() protoreflect.Message

func (*BarGraphs) Reset added in v0.0.8

func (x *BarGraphs) Reset()

func (*BarGraphs) String added in v0.0.8

func (x *BarGraphs) String() string

type BarShapeType added in v0.2.0

type BarShapeType int32
const (
	BarShapeType_BOX BarShapeType = 0
	BarShapeType_HEX BarShapeType = 1
)

func (BarShapeType) Descriptor added in v0.4.0

func (BarShapeType) Enum added in v0.4.0

func (x BarShapeType) Enum() *BarShapeType

func (BarShapeType) EnumDescriptor deprecated added in v0.2.0

func (BarShapeType) EnumDescriptor() ([]byte, []int)

Deprecated: Use BarShapeType.Descriptor instead.

func (BarShapeType) Number added in v0.4.0

func (BarShapeType) String added in v0.2.0

func (x BarShapeType) String() string

func (BarShapeType) Type added in v0.4.0

type Bearing added in v0.3.1

type Bearing struct {
	Bearing  float64 `protobuf:"fixed64,1,opt,name=bearing,proto3" json:"bearing,omitempty"`
	Duration float64 `protobuf:"fixed64,2,opt,name=duration,proto3" json:"duration,omitempty"` // for animation (animation time in sec)
	// contains filtered or unexported fields
}

func (*Bearing) Descriptor deprecated added in v0.3.1

func (*Bearing) Descriptor() ([]byte, []int)

Deprecated: Use Bearing.ProtoReflect.Descriptor instead.

func (*Bearing) GetBearing added in v0.3.1

func (x *Bearing) GetBearing() float64

func (*Bearing) GetDuration added in v0.5.0

func (x *Bearing) GetDuration() float64

func (*Bearing) ProtoMessage added in v0.3.1

func (*Bearing) ProtoMessage()

func (*Bearing) ProtoReflect added in v0.4.0

func (x *Bearing) ProtoReflect() protoreflect.Message

func (*Bearing) Reset added in v0.3.1

func (x *Bearing) Reset()

func (*Bearing) String added in v0.3.1

func (x *Bearing) String() string

type ClearArcs added in v0.4.2

type ClearArcs struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ClearArcs) Descriptor deprecated added in v0.4.2

func (*ClearArcs) Descriptor() ([]byte, []int)

Deprecated: Use ClearArcs.ProtoReflect.Descriptor instead.

func (*ClearArcs) GetMessage added in v0.4.2

func (x *ClearArcs) GetMessage() string

func (*ClearArcs) ProtoMessage added in v0.4.2

func (*ClearArcs) ProtoMessage()

func (*ClearArcs) ProtoReflect added in v0.4.2

func (x *ClearArcs) ProtoReflect() protoreflect.Message

func (*ClearArcs) Reset added in v0.4.2

func (x *ClearArcs) Reset()

func (*ClearArcs) String added in v0.4.2

func (x *ClearArcs) String() string

type ClearMoves added in v0.3.1

type ClearMoves struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ClearMoves) Descriptor deprecated added in v0.3.1

func (*ClearMoves) Descriptor() ([]byte, []int)

Deprecated: Use ClearMoves.ProtoReflect.Descriptor instead.

func (*ClearMoves) GetMessage added in v0.3.1

func (x *ClearMoves) GetMessage() string

func (*ClearMoves) ProtoMessage added in v0.3.1

func (*ClearMoves) ProtoMessage()

func (*ClearMoves) ProtoReflect added in v0.4.0

func (x *ClearMoves) ProtoReflect() protoreflect.Message

func (*ClearMoves) Reset added in v0.3.1

func (x *ClearMoves) Reset()

func (*ClearMoves) String added in v0.3.1

func (x *ClearMoves) String() string

type ClearScatters added in v0.4.2

type ClearScatters struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ClearScatters) Descriptor deprecated added in v0.4.2

func (*ClearScatters) Descriptor() ([]byte, []int)

Deprecated: Use ClearScatters.ProtoReflect.Descriptor instead.

func (*ClearScatters) GetMessage added in v0.4.2

func (x *ClearScatters) GetMessage() string

func (*ClearScatters) ProtoMessage added in v0.4.2

func (*ClearScatters) ProtoMessage()

func (*ClearScatters) ProtoReflect added in v0.4.2

func (x *ClearScatters) ProtoReflect() protoreflect.Message

func (*ClearScatters) Reset added in v0.4.2

func (x *ClearScatters) Reset()

func (*ClearScatters) String added in v0.4.2

func (x *ClearScatters) String() string

type Geo

type Geo struct {
	Type    string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // may contain
	Id      int32  `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Label   string `protobuf:"bytes,3,opt,name=label,proto3" json:"label,omitempty"`
	Data    []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	Options string `protobuf:"bytes,5,opt,name=options,proto3" json:"options,omitempty"`
	// contains filtered or unexported fields
}

geographic data (mainly for supply)

func (*Geo) Descriptor deprecated

func (*Geo) Descriptor() ([]byte, []int)

Deprecated: Use Geo.ProtoReflect.Descriptor instead.

func (*Geo) GetData

func (x *Geo) GetData() []byte

func (*Geo) GetId

func (x *Geo) GetId() int32

func (*Geo) GetLabel

func (x *Geo) GetLabel() string

func (*Geo) GetOptions

func (x *Geo) GetOptions() string

func (*Geo) GetType

func (x *Geo) GetType() string

func (*Geo) ProtoMessage

func (*Geo) ProtoMessage()

func (*Geo) ProtoReflect added in v0.4.0

func (x *Geo) ProtoReflect() protoreflect.Message

func (*Geo) Reset

func (x *Geo) Reset()

func (*Geo) String

func (x *Geo) String() string

type HarmoVIS added in v0.5.1

type HarmoVIS struct {
	ConfJson string `protobuf:"bytes,1,opt,name=confJson,proto3" json:"confJson,omitempty"` // json string
	// contains filtered or unexported fields
}

func (*HarmoVIS) Descriptor deprecated added in v0.5.1

func (*HarmoVIS) Descriptor() ([]byte, []int)

Deprecated: Use HarmoVIS.ProtoReflect.Descriptor instead.

func (*HarmoVIS) GetConfJson added in v0.5.1

func (x *HarmoVIS) GetConfJson() string

func (*HarmoVIS) ProtoMessage added in v0.5.1

func (*HarmoVIS) ProtoMessage()

func (*HarmoVIS) ProtoReflect added in v0.5.1

func (x *HarmoVIS) ProtoReflect() protoreflect.Message

func (*HarmoVIS) Reset added in v0.5.1

func (x *HarmoVIS) Reset()

func (*HarmoVIS) String added in v0.5.1

func (x *HarmoVIS) String() string

type Line added in v0.0.2

type Line struct {
	From []float64 `protobuf:"fixed64,1,rep,packed,name=from,proto3" json:"from,omitempty"`
	To   []float64 `protobuf:"fixed64,2,rep,packed,name=to,proto3" json:"to,omitempty"`
	// contains filtered or unexported fields
}

func (*Line) Descriptor deprecated added in v0.0.2

func (*Line) Descriptor() ([]byte, []int)

Deprecated: Use Line.ProtoReflect.Descriptor instead.

func (*Line) GetFrom added in v0.0.2

func (x *Line) GetFrom() []float64

func (*Line) GetTo added in v0.0.2

func (x *Line) GetTo() []float64

func (*Line) ProtoMessage added in v0.0.2

func (*Line) ProtoMessage()

func (*Line) ProtoReflect added in v0.4.0

func (x *Line) ProtoReflect() protoreflect.Message

func (*Line) Reset added in v0.0.2

func (x *Line) Reset()

func (*Line) String added in v0.0.2

func (x *Line) String() string

type Lines added in v0.0.2

type Lines struct {
	Lines []*Line `protobuf:"bytes,1,rep,name=lines,proto3" json:"lines,omitempty"`
	Width int32   `protobuf:"varint,2,opt,name=width,proto3" json:"width,omitempty"`
	Color []int32 `protobuf:"varint,3,rep,packed,name=color,proto3" json:"color,omitempty"` // only top 3 is used
	// contains filtered or unexported fields
}

func (*Lines) Descriptor deprecated added in v0.0.2

func (*Lines) Descriptor() ([]byte, []int)

Deprecated: Use Lines.ProtoReflect.Descriptor instead.

func (*Lines) GetColor added in v0.0.2

func (x *Lines) GetColor() []int32

func (*Lines) GetLines added in v0.0.2

func (x *Lines) GetLines() []*Line

func (*Lines) GetWidth added in v0.0.2

func (x *Lines) GetWidth() int32

func (*Lines) ProtoMessage added in v0.0.2

func (*Lines) ProtoMessage()

func (*Lines) ProtoReflect added in v0.4.0

func (x *Lines) ProtoReflect() protoreflect.Message

func (*Lines) Reset added in v0.0.2

func (x *Lines) Reset()

func (*Lines) String added in v0.0.2

func (x *Lines) String() string

type Path added in v0.0.3

type Path struct {
	Points []*Point `protobuf:"bytes,1,rep,name=points,proto3" json:"points,omitempty"`
	Width  int32    `protobuf:"varint,2,opt,name=width,proto3" json:"width,omitempty"`
	Color  []int32  `protobuf:"varint,3,rep,packed,name=color,proto3" json:"color,omitempty"` // only top 3 is used
	// contains filtered or unexported fields
}

func (*Path) Descriptor deprecated added in v0.0.3

func (*Path) Descriptor() ([]byte, []int)

Deprecated: Use Path.ProtoReflect.Descriptor instead.

func (*Path) GetColor added in v0.0.3

func (x *Path) GetColor() []int32

func (*Path) GetPoints added in v0.0.3

func (x *Path) GetPoints() []*Point

func (*Path) GetWidth added in v0.0.3

func (x *Path) GetWidth() int32

func (*Path) ProtoMessage added in v0.0.3

func (*Path) ProtoMessage()

func (*Path) ProtoReflect added in v0.4.0

func (x *Path) ProtoReflect() protoreflect.Message

func (*Path) Reset added in v0.0.3

func (x *Path) Reset()

func (*Path) String added in v0.0.3

func (x *Path) String() string

type Paths added in v0.0.3

type Paths struct {
	Paths []*Path `protobuf:"bytes,1,rep,name=paths,proto3" json:"paths,omitempty"`
	// contains filtered or unexported fields
}

func (*Paths) Descriptor deprecated added in v0.0.3

func (*Paths) Descriptor() ([]byte, []int)

Deprecated: Use Paths.ProtoReflect.Descriptor instead.

func (*Paths) GetPaths added in v0.0.3

func (x *Paths) GetPaths() []*Path

func (*Paths) ProtoMessage added in v0.0.3

func (*Paths) ProtoMessage()

func (*Paths) ProtoReflect added in v0.4.0

func (x *Paths) ProtoReflect() protoreflect.Message

func (*Paths) Reset added in v0.0.3

func (x *Paths) Reset()

func (*Paths) String added in v0.0.3

func (x *Paths) String() string

type Pitch added in v0.3.1

type Pitch struct {
	Pitch    float64 `protobuf:"fixed64,1,opt,name=pitch,proto3" json:"pitch,omitempty"`
	Duration float64 `protobuf:"fixed64,2,opt,name=duration,proto3" json:"duration,omitempty"` // for animation (animation time in sec)
	// contains filtered or unexported fields
}

func (*Pitch) Descriptor deprecated added in v0.3.1

func (*Pitch) Descriptor() ([]byte, []int)

Deprecated: Use Pitch.ProtoReflect.Descriptor instead.

func (*Pitch) GetDuration added in v0.5.0

func (x *Pitch) GetDuration() float64

func (*Pitch) GetPitch added in v0.3.1

func (x *Pitch) GetPitch() float64

func (*Pitch) ProtoMessage added in v0.3.1

func (*Pitch) ProtoMessage()

func (*Pitch) ProtoReflect added in v0.4.0

func (x *Pitch) ProtoReflect() protoreflect.Message

func (*Pitch) Reset added in v0.3.1

func (x *Pitch) Reset()

func (*Pitch) String added in v0.3.1

func (x *Pitch) String() string

type Point added in v0.0.3

type Point struct {
	Lat float64 `protobuf:"fixed64,1,opt,name=lat,proto3" json:"lat,omitempty"`
	Lon float64 `protobuf:"fixed64,2,opt,name=lon,proto3" json:"lon,omitempty"`
	// contains filtered or unexported fields
}

func (*Point) Descriptor deprecated added in v0.0.3

func (*Point) Descriptor() ([]byte, []int)

Deprecated: Use Point.ProtoReflect.Descriptor instead.

func (*Point) GetLat added in v0.0.3

func (x *Point) GetLat() float64

func (*Point) GetLon added in v0.0.3

func (x *Point) GetLon() float64

func (*Point) ProtoMessage added in v0.0.3

func (*Point) ProtoMessage()

func (*Point) ProtoReflect added in v0.4.0

func (x *Point) ProtoReflect() protoreflect.Message

func (*Point) Reset added in v0.0.3

func (x *Point) Reset()

func (*Point) String added in v0.0.3

func (x *Point) String() string

type Scatters added in v0.4.0

type Scatters struct {
	Points     []*Point `protobuf:"bytes,1,rep,name=points,proto3" json:"points,omitempty"`
	Radiuses   []int32  `protobuf:"varint,2,rep,packed,name=radiuses,proto3" json:"radiuses,omitempty"`
	FillColors []int32  `protobuf:"varint,3,rep,packed,name=fillColors,proto3" json:"fillColors,omitempty"` // 0xXXXXXX style color
	LineColors []int32  `protobuf:"varint,4,rep,packed,name=lineColors,proto3" json:"lineColors,omitempty"`
	LineWidth  int32    `protobuf:"varint,5,opt,name=lineWidth,proto3" json:"lineWidth,omitempty"`
	FillAlpha  int32    `protobuf:"varint,6,opt,name=fillAlpha,proto3" json:"fillAlpha,omitempty"` // if minus , no fill.
	// contains filtered or unexported fields
}

func (*Scatters) Descriptor deprecated added in v0.4.0

func (*Scatters) Descriptor() ([]byte, []int)

Deprecated: Use Scatters.ProtoReflect.Descriptor instead.

func (*Scatters) GetFillAlpha added in v0.4.0

func (x *Scatters) GetFillAlpha() int32

func (*Scatters) GetFillColors added in v0.4.0

func (x *Scatters) GetFillColors() []int32

func (*Scatters) GetLineColors added in v0.4.0

func (x *Scatters) GetLineColors() []int32

func (*Scatters) GetLineWidth added in v0.4.0

func (x *Scatters) GetLineWidth() int32

func (*Scatters) GetPoints added in v0.4.0

func (x *Scatters) GetPoints() []*Point

func (*Scatters) GetRadiuses added in v0.4.0

func (x *Scatters) GetRadiuses() []int32

func (*Scatters) ProtoMessage added in v0.4.0

func (*Scatters) ProtoMessage()

func (*Scatters) ProtoReflect added in v0.4.0

func (x *Scatters) ProtoReflect() protoreflect.Message

func (*Scatters) Reset added in v0.4.0

func (x *Scatters) Reset()

func (*Scatters) String added in v0.4.0

func (x *Scatters) String() string

type TopTextLabel added in v0.4.1

type TopTextLabel struct {
	Label string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"` // text for label
	Style string `protobuf:"bytes,2,opt,name=style,proto3" json:"style,omitempty"` // style sheet json for label
	// contains filtered or unexported fields
}

func (*TopTextLabel) Descriptor deprecated added in v0.4.1

func (*TopTextLabel) Descriptor() ([]byte, []int)

Deprecated: Use TopTextLabel.ProtoReflect.Descriptor instead.

func (*TopTextLabel) GetLabel added in v0.4.1

func (x *TopTextLabel) GetLabel() string

func (*TopTextLabel) GetStyle added in v0.4.1

func (x *TopTextLabel) GetStyle() string

func (*TopTextLabel) ProtoMessage added in v0.4.1

func (*TopTextLabel) ProtoMessage()

func (*TopTextLabel) ProtoReflect added in v0.4.1

func (x *TopTextLabel) ProtoReflect() protoreflect.Message

func (*TopTextLabel) Reset added in v0.4.1

func (x *TopTextLabel) Reset()

func (*TopTextLabel) String added in v0.4.1

func (x *TopTextLabel) String() string

type ViewState added in v0.0.7

type ViewState struct {
	Lat      float64 `protobuf:"fixed64,1,opt,name=lat,proto3" json:"lat,omitempty"`
	Lon      float64 `protobuf:"fixed64,2,opt,name=lon,proto3" json:"lon,omitempty"`
	Zoom     float64 `protobuf:"fixed64,3,opt,name=zoom,proto3" json:"zoom,omitempty"`
	Pitch    float64 `protobuf:"fixed64,4,opt,name=pitch,proto3" json:"pitch,omitempty"`
	Duration float64 `protobuf:"fixed64,5,opt,name=duration,proto3" json:"duration,omitempty"` // for animation (animation time in sec)
	// contains filtered or unexported fields
}

func (*ViewState) Descriptor deprecated added in v0.0.7

func (*ViewState) Descriptor() ([]byte, []int)

Deprecated: Use ViewState.ProtoReflect.Descriptor instead.

func (*ViewState) GetDuration added in v0.5.0

func (x *ViewState) GetDuration() float64

func (*ViewState) GetLat added in v0.0.7

func (x *ViewState) GetLat() float64

func (*ViewState) GetLon added in v0.0.7

func (x *ViewState) GetLon() float64

func (*ViewState) GetPitch added in v0.0.7

func (x *ViewState) GetPitch() float64

func (*ViewState) GetZoom added in v0.0.7

func (x *ViewState) GetZoom() float64

func (*ViewState) ProtoMessage added in v0.0.7

func (*ViewState) ProtoMessage()

func (*ViewState) ProtoReflect added in v0.4.0

func (x *ViewState) ProtoReflect() protoreflect.Message

func (*ViewState) Reset added in v0.0.7

func (x *ViewState) Reset()

func (*ViewState) String added in v0.0.7

func (x *ViewState) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL