UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

178 lines (155 loc) 6.29 kB
// Type definitions for leaflet-geocoder-mapzen v1.6.3 // Project: https://github.com/mapzen/leaflet-geocoder // Definitions by: Leonard Lausen <http://leonard.lausen.nl/> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference path="../leaflet/leaflet.d.ts" /> declare namespace L { namespace Control { export interface GeocoderStatic extends ClassStatic { /** * Creates a geocoder control. */ new (options?: GeocoderOptions): Geocoder; } export interface Geocoder extends L.Control { } export interface GeocoderOptions { /** * Host endpoint for a Pelias-compatible search API. * * Default value: 'https://search.mapzen.com/v1'. */ url?: string; /** * If true, search is bounded by the current map view. * You may also provide a custom bounding box in form of a LatLngBounds object. * Note: bounds is not supported by autocomplete. * * Default value: false. */ bounds?: LatLngBounds | boolean; /** * If true, search and autocomplete prioritizes results near the center * of the current view. * You may also provide a custom LatLng value * (in any of the accepted Leaflet formats) to act as the center bias. * * Default value: 'true'. */ focus?: LatLng | boolean; /** * Filters results by layers (documentation). * If left blank, results will come from all available layers. * * Default value: null. */ layers?: string | any[] ; /** * An object of key-value pairs which will be serialized * into query parameters that will be passed to the API. * This allows custom queries that are not already supported * by the convenience options listed above. * For a full list of supported parameters, * please read the Mapzen Search documentation. * * IMPORTANT: some parameters only work with the /search endpoint, * and do not apply to /autocomplete requests! * All supplied parameters are passed through; * this library doesn't know which are valid parameters and which are not. * In the event that other options conflict with parameters passed through params, * the params option takes precedence. * * Default value: null. */ params?: Object; /** * The position of the control (one of the map corners). * Can be 'topleft', 'topright', 'bottomleft', or 'bottomright'. * * Default value: 'topleft'. */ position?: PositionString; /** * Attribution text to include. * Set to blank or null to disable. * * Default value: 'Geocoding by <a href="https://mapzen.com/projects/search/">Mapzen</a>' */ attribution?: string; /** * Placeholder text to display in the search input box. * Set to blank or null to disable. * * Default value: 'Search' */ placeholder?: string; /** * Tooltip text to display on the search icon. Set to blank or null to disable. * * Default value: 'Search' */ title?: string; /** * If true, highlighting a search result pans the map to that location. * * Default value: true */ panToPoint?: boolean; /** * If true, an icon is used to indicate a polygonal result, * matching any non-"venue" or non-"address" layer type. * If false, no icon is displayed. * For custom icons, pass a string containing a path to the image. * * Default value: true */ polygonIcon?: boolean | string; /** * If true, search results drops Leaflet's default blue markers onto the map. * You may customize this marker's appearance and * behavior using Leaflet marker options. * * Default value: true */ markers?: MarkerOptions | boolean; /** * If true, the input box will expand to take up the full width of the map container. * If an integer breakpoint is provided, * the full width applies only if the map container width is below this breakpoint. * * Default value: 650 */ fullWidth?: number | boolean; /** * If true, the search input is always expanded. * It does not collapse into a button-only state. * * Default value: false */ expanded?: boolean; /** * If true, suggested results are fetched on each keystroke. * If false, this is disabled and users must obtain results * by pressing the Enter key after typing in their query. * * Default value: true */ autocomplete?: boolean; /** * If true, selected results will make a request to the service /place endpoint. * If false, this is disabled. * The geocoder does not handle responses to /place, * you will need to do handle it yourself in the results event listener (see below). * * Default value: false */ place?: boolean; } } export namespace control { /** * Creates a geocoder control. */ export function geocoder(api_key: string, options?: Control.GeocoderOptions): L.Control.Geocoder; } }