interface JGeocodingOptions {
    autoComplete?: boolean;
    fuzzyMatch?: boolean;
    proximity?: null | JLocation;
}

Properties

autoComplete?: boolean

if true, returns all match that would begin with the search string

fuzzyMatch?: boolean

if true, proceeds with a fuzzy search (ex: "montan" will match "montain")

proximity?: null | JLocation

a JLocation object, or null. If not specified, it is by default set to the map's extent center. If you want to disable proximity bias, pass null for this option.