srv_loadmap.go 407 B

12345678910111213141516171819202122232425
  1. //autogenerated:yes
  2. //nolint:revive,lll
  3. package clean_msg
  4. import (
  5. "github.com/bluenviron/goroslib/v2/pkg/msg"
  6. )
  7. type LoadMapReq struct {
  8. msg.Package `ros:"clean_msg"`
  9. MapName string
  10. UncleanArea PartitionList
  11. Wall VirtualWallList
  12. }
  13. type LoadMapRes struct {
  14. msg.Package `ros:"clean_msg"`
  15. State bool
  16. }
  17. type LoadMap struct {
  18. msg.Package `ros:"clean_msg"`
  19. LoadMapReq
  20. LoadMapRes
  21. }