VehicleLocationLog

车辆在某个时间点的位置、速度和方向。

JSON 表示法
{
  "location": {
    object (LatLng)
  },
  "latlngAccuracy": number,
  "serverTime": string,
  "heading": integer,
  "headingAccuracy": number,
  "bearingAccuracy": number,
  "altitude": number,
  "verticalAccuracy": number,
  "altitudeAccuracy": number,
  "speed": number,
  "speedAccuracy": number,
  "locSensor": enum (LocationSensorLog),
  "isRoadSnapped": boolean,
  "isGpsSensorEnabled": boolean,
  "rawLocation": {
    object (LatLng)
  },
  "rawLocationSensor": enum (LocationSensorLog),
  "rawLocationTime": string,
  "rawLocationAccuracy": number,
  "supplementalLocation": {
    object (LatLng)
  },
  "supplementalLocationTime": string,
  "supplementalLocationSensor": enum (LocationSensorLog),
  "supplementalLocationAccuracy": number
}
字段
location

object (LatLng)

车辆位置。

latlngAccuracy

number

半径为 location 的精度(以米为单位)。

serverTime

string (Timestamp format)

服务器收到位置信息的时间。

时间戳采用 RFC3339 世界协调时间(UTC,即“祖鲁时”)格式,精确到纳秒,最多九个小数位。示例:"2014-10-02T15:01:23Z""2014-10-02T15:01:23.045123456Z"

heading

integer

车辆移动的方向(以度为单位)。0 代表北方。有效范围为 [0,360)。

headingAccuracy

number

精确度为 heading(以度为单位)。

bearingAccuracy
(deprecated)

number

已弃用:请改用 headingAccuracy

altitude

number

高于 WGS84 的高度(以米为单位)。

verticalAccuracy
(deprecated)

number

已弃用:请改用 altitudeAccuracy

altitudeAccuracy

number

精确度为 altitude(以米为单位)。

speed

number

车辆行驶速度(米/秒)

speedAccuracy

number

速度精确度(以米/秒为单位)。

locSensor

enum (LocationSensorLog)

位置数据提供方。

isRoadSnapped

boolean

location 是否与道路吸附。

isGpsSensorEnabled

boolean

指定是否已启用 GPS 提供程序。

rawLocation

object (LatLng)

原始位置,不进行道路贴靠处理。

rawLocationSensor

enum (LocationSensorLog)

原始位置的来源。

rawLocationTime

string (Timestamp format)

记录原始位置的时间。

时间戳采用 RFC3339 世界协调时间(UTC,即“祖鲁时”)格式,精确到纳秒,最多九个小数位。示例:"2014-10-02T15:01:23Z""2014-10-02T15:01:23.045123456Z"

rawLocationAccuracy

number

以米为单位的原始位置(纬度/经度)的精确度。

supplementalLocation

object (LatLng)

集成应用提供的补充位置信息。

supplementalLocationTime

string (Timestamp format)

与补充位置关联的时间戳。

时间戳采用 RFC3339 世界协调时间(UTC,即“祖鲁时”)格式,精确到纳秒,最多九个小数位。示例:"2014-10-02T15:01:23Z""2014-10-02T15:01:23.045123456Z"

supplementalLocationSensor

enum (LocationSensorLog)

补充位置的来源。

supplementalLocationAccuracy

number

半径supplementalLocation的精确度(以米为单位)。