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

LatLonOptions

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

Options for a latlon field. A latlon field contains a location stored as a latitude and longitude value pair. Present if IndexFieldType specifies the field is of type latlon. All options are enabled by default.

interface LatLonOptions {
DefaultValue?: string | null;
FacetEnabled?: boolean | null;
ReturnEnabled?: boolean | null;
SearchEnabled?: boolean | null;
SortEnabled?: boolean | null;
SourceField?: string | null;
}

§Properties

§
DefaultValue?: string | null
[src]

A value to use for the field if the field isn't specified for a document.

§
FacetEnabled?: boolean | null
[src]

Whether facet information can be returned for the field.

§
ReturnEnabled?: boolean | null
[src]

Whether the contents of the field can be returned in the search results.

§
SearchEnabled?: boolean | null
[src]

Whether the contents of the field are searchable.

§
SortEnabled?: boolean | null
[src]

Whether the field can be used to sort the search results.

§
SourceField?: string | null
[src]