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

Location

import type { Location } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";

Represents a latitude and longitude pair, expressed in geographic coordinate system degrees (for example, 47.6204, -122.3491).

Elevation is currently not supported.

interface Location {
latitude: number;
longitude: number;
}

§Properties

§
latitude: number
[src]

The latitude.

§
longitude: number
[src]

The longitude.