Table of Contents

Class LookupVideoRequest

Namespace
GoogleMapsApi.Entities.AerialView.Request
Assembly
GoogleMapsApi.dll

Request for the Aerial View API lookupVideo endpoint (GET https://aerialview.googleapis.com/v1/videos:lookupVideo). Retrieves a video and its current state by VideoId (recommended) or Address — supply exactly one.

public sealed class LookupVideoRequest : MapsBaseRequest
Inheritance
LookupVideoRequest
Inherited Members

Remarks

A still-rendering video returns HTTP 200 with state Processing. A video that does not exist (or has no 3D imagery) returns HTTP 404, which the engine surfaces as an HttpRequestException. This endpoint is billable.

Properties

Address

The US postal address to look up. Mutually exclusive with VideoId.

public string? Address { get; set; }

Property Value

string

VideoId

The video id returned by a prior RenderVideo call. Mutually exclusive with Address.

public string? VideoId { get; set; }

Property Value

string

Methods

GetUri()

Builds the absolute request URI, including scheme, base URL, and serialized query-string parameters.

public override Uri GetUri()

Returns

Uri

The fully composed URI to send to the Google Maps API.