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

PlaceGeometry

import type { PlaceGeometry } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";

Places uses a point geometry to specify a location or a Place.

interface PlaceGeometry {
Point?: number[] | null;
}

§Properties

§
Point?: number[] | null
[src]

A single point geometry specifies a location for a Place using WGS 84 coordinates:

  • x — Specifies the x coordinate or longitude.
  • y — Specifies the y coordinate or latitude.