Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BuildingInsightsFindClosestOptions

import type { BuildingInsightsFindClosestOptions } from "https://googleapis.deno.dev/v1/solar:v1.ts";

Additional options for Solar#buildingInsightsFindClosest.

interface BuildingInsightsFindClosestOptions {
[location.latitude]?: number;
[location.longitude]?: number;
requiredQuality?:
| "IMAGERY_QUALITY_UNSPECIFIED"
| "HIGH"
| "MEDIUM"
| "LOW";
}

§Properties

§
[location.latitude]?: number
[src]

The latitude in degrees. It must be in the range [-90.0, +90.0].

§
[location.longitude]?: number
[src]

The longitude in degrees. It must be in the range [-180.0, +180.0].

§
requiredQuality?: "IMAGERY_QUALITY_UNSPECIFIED" | "HIGH" | "MEDIUM" | "LOW"
[src]

Optional. The minimum quality level allowed in the results. No result with lower quality than this will be returned. Not specifying this is equivalent to restricting to HIGH quality only.