mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
tweaks to docs (#200)
This commit is contained in:
@@ -2,6 +2,9 @@ Real time GPS location tracking and search
|
||||
|
||||
# Location Service
|
||||
|
||||
Send, store and search real time gps point data and tracking info using the location API.
|
||||
Send, store, and search real time GPS point data and tracking information using the location API.
|
||||
- Record and retrieve the locations of your entities
|
||||
- Perform location based search of them including filters
|
||||
|
||||
Build powerful map rendered views with up to the second updated points on the map.
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ service Location {
|
||||
|
||||
// A point is a GPS coordinate.
|
||||
message Point {
|
||||
double latitude = 1;
|
||||
double longitude = 2;
|
||||
int64 timestamp = 3;
|
||||
double latitude = 1;
|
||||
double longitude = 2;
|
||||
int64 timestamp = 3;
|
||||
}
|
||||
|
||||
message Entity {
|
||||
@@ -53,7 +53,7 @@ message SearchRequest {
|
||||
double radius = 2;
|
||||
// type of entities to filter
|
||||
string type = 3;
|
||||
// number of entities to return
|
||||
// Maximum number of entities to return
|
||||
int64 numEntities = 4;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user