-
Notifications
You must be signed in to change notification settings - Fork 599
Expand file tree
/
Copy pathlocal_grid_service.proto
More file actions
26 lines (20 loc) · 1.07 KB
/
local_grid_service.proto
File metadata and controls
26 lines (20 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2023 Boston Dynamics, Inc. All rights reserved.
//
// Downloading, reproducing, distributing or otherwise using the SDK Software
// is subject to the terms and conditions of the Boston Dynamics Software
// Development Kit License (20191101-BDSDK-SL).
syntax = "proto3";
package bosdyn.api;
option go_package = "bosdyn/api/local_grid_service";
option java_outer_classname = "LocalGridServiceProto";
import "bosdyn/api/local_grid.proto";
// The map service provides access multiple kinds of cell-based map data.
// It supports querying for the list of available types of local grids provided by the service,
// and supports requesting a set of the latest local grids by map type name.
service LocalGridService {
// Obtain the list of available map types.
// The name field keys access to individual local grids when calling GetLocalGrids.
rpc GetLocalGridTypes(GetLocalGridTypesRequest) returns (GetLocalGridTypesResponse) {}
// Request a set of local grids by type name.
rpc GetLocalGrids(GetLocalGridsRequest) returns (GetLocalGridsResponse) {}
}