The component wraps the @geoapify/geocoder-autocomplete library into an Angular component. The library uses Geoapify Geocoding Autocomplete as an address search service.
@geoapify/angular-geocoder-autocomplete has a peer dependancy on @geoapify/geocoder-autocomplete:
npm install @geoapify/geocoder-autocomplete @geoapify/angular-geocoder-autocomplete
# or
yarn add @geoapify/geocoder-autocomplete @geoapify/angular-geocoder-autocomplete
@geoapify/angular-geocoder-autocomplete | Angular |
---|---|
1.0.x | 9.x |
1.1.x | 9.x |
1.2.x | 10.x |
1.3.x | 11.x |
1.3.2-1.3.x | 12.x |
You need an API key to be able to call Geoapify Geocoding API. Register and get an API key for Free on myprojects.geoapify.com. Geoapify has a Freemium pricing model. You can start for Free and extend when you need it.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { GeoapifyGeocoderAutocompleteModule } from '@geoapify/angular-geocoder-autocomplete';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
GeoapifyGeocoderAutocompleteModule.withConfig('YOUR_API_KEY')
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Import CSS style file from @geoapify-geocoder-autocomplete to make the control appear correctly. You can choose from several stylings:
minimal
andround-borders
- for webpages with light background colorminimal-dark
andround-borders-dark
for webpages with dark background color.
"styles": [
...
"node_modules/@geoapify/geocoder-autocomplete/styles/round-borders.css",
"src/styles.scss"
],
@import "~@geoapify/geocoder-autocomplete/styles/minimal.css";
Learn more about provided styles and customization option on @geoapify-geocoder-autocomplete page.
<geoapify-geocoder-autocomplete></geoapify-geocoder-autocomplete>
<geoapify-geocoder-autocomplete
(placeSelect)="placeSelected($event)"
(suggestionsChange)="suggestionsChanged($event)">
</geoapify-geocoder-autocomplete>
<geoapify-geocoder-autocomplete
[value]="displayValue"
[type]="options.type"
[lang]="options.lang"
[limit]="options.limit"
[filterByCountryCode]="filterByCountryCode"
[filterByCircle]="filterByCircle"
[filterByRect]="filterByRect"
[biasByCountryCode]="biasByCountryCode"
[biasByCircle]="biasByCircle"
[biasByRect]="biasByRect"
[biasByProximity]="biasByProximity"
[skipIcons]="false"
[skipDetails]="false"
[preprocessingHook]="preprocessingHook"
[postprocessingHook]="postprocessingHook"
[suggestionsFilter]="suggestionsFilter"
(placeSelect)="placeSelected($event)"
(suggestionsChange)="suggestionsChanged($event)">
</geoapify-geocoder-autocomplete>
Name | Type | Description |
---|---|---|
value | string | Initial value or display value for the input field |
type | LocationType | Type of a location |
lang | SupportedLanguage | Results language |
limit | number | The maximal number of returned suggestions |
placeholder | string | An input field placeholder |
filterByCountryCode | ByCountryCodeOptions | Search places in the countries |
filterByCircle | ByCircleOptions | Search places inside the circle |
filterByRect | ByRectOptions | Search places inside the rectangle |
biasByCountryCode | ByCountryCodeOptions | First, search places in the countries |
biasByCircle | ByCircleOptions | First, search places inside the circle |
biasByRect | ByRectOptions | First, search places inside the rectangle |
biasByProximity | ByProximityOptions | Prioritize results by farness from the location |
skipIcons | boolean | Don't add icons to suggestions |
skipDetails | boolean | Skip Place Details API call on selection change |
GeoPosition | Prefered search position | |
CountyCode[] | Limit the search by countries |
You can use several filters at once. The AND logic is applied to multiple filters.
You can use several bias parameters at once. The OR logic is applied to multiple biases.
export type ByCountryCodeOptions = CountyCode[];
export interface ByProximityOptions {
lon: number;
lat: number;
}
export interface ByCircleOptions {
lon: number;
lat: number;
radiusMeters: number;
}
export interface ByRectOptions {
lon1: number;
lat1: number;
lon2: number;
lat2: number;
}
export type LocationType = 'country' | 'state' | 'city' | 'postcode' | 'street' | 'amenity';
export type SupportedLanguage = "ab" | "aa" | "af" | "ak" | "sq" | "am" | "ar" | "an" | "hy" | "as" | "av" | "ae" | "ay" | "az" | "bm" | "ba" | "eu" | "be" | "bn" | "bh" | "bi" | "bs" | "br" | "bg" | "my" | "ca" | "ch" | "ce" | "ny" | "zh" | "cv" | "kw" | "co" | "cr" | "hr" | "cs" | "da" | "dv" | "nl" | "en" | "eo" | "et" | "ee" | "fo" | "fj" | "fi" | "fr" | "ff" | "gl" | "ka" | "de" | "el" | "gn" | "gu" | "ht" | "ha" | "he" | "hz" | "hi" | "ho" | "hu" | "ia" | "id" | "ie" | "ga" | "ig" | "ik" | "io" | "is" | "it" | "iu" | "ja" | "jv" | "kl" | "kn" | "kr" | "ks" | "kk" | "km" | "ki" | "rw" | "ky" | "kv" | "kg" | "ko" | "ku" | "kj" | "la" | "lb" | "lg" | "li" | "ln" | "lo" | "lt" | "lu" | "lv" | "gv" | "mk" | "mg" | "ms" | "ml" | "mt" | "mi" | "mr" | "mh" | "mn" | "na" | "nv" | "nb" | "nd" | "ne" | "ng" | "nn" | "no" | "ii" | "nr" | "oc" | "oj" | "cu" | "om" | "or" | "os" | "pa" | "pi" | "fa" | "pl" | "ps" | "pt" | "qu" | "rm" | "rn" | "ro" | "ru" | "sa" | "sc" | "sd" | "se" | "sm" | "sg" | "sr" | "gd" | "sn" | "si" | "sk" | "sl" | "so" | "st" | "es" | "su" | "sw" | "ss" | "sv" | "ta" | "te" | "tg" | "th" | "ti" | "bo" | "tk" | "tl" | "tn" | "to" | "tr" | "ts" | "tt" | "tw" | "ty" | "ug" | "uk" | "ur" | "uz" | "ve" | "vi" | "vo" | "wa" | "cy" | "wo" | "fy" | "xh" | "yi" | "yo" | "za";
export type CountyCode = "none"| "auto" | "ad" | "ae" | "af" | "ag" | "ai" | "al" | "am" | "an" | "ao" | "ap" | "aq" | "ar" | "as" | "at" | "au" | "aw" | "az" | "ba" | "bb" | "bd" | "be" | "bf" | "bg" | "bh" | "bi" | "bj" | "bm" | "bn" | "bo" | "br" | "bs" | "bt" | "bv" | "bw" | "by" | "bz" | "ca" | "cc" | "cd" | "cf" | "cg" | "ch" | "ci" | "ck" | "cl" | "cm" | "cn" | "co" | "cr" | "cu" | "cv" | "cx" | "cy" | "cz" | "de" | "dj" | "dk" | "dm" | "do" | "dz" | "ec" | "ee" | "eg" | "eh" | "er" | "es" | "et" | "eu" | "fi" | "fj" | "fk" | "fm" | "fo" | "fr" | "ga" | "gb" | "gd" | "ge" | "gf" | "gh" | "gi" | "gl" | "gm" | "gn" | "gp" | "gq" | "gr" | "gs" | "gt" | "gu" | "gw" | "gy" | "hk" | "hm" | "hn" | "hr" | "ht" | "hu" | "id" | "ie" | "il" | "in" | "io" | "iq" | "ir" | "is" | "it" | "jm" | "jo" | "jp" | "ke" | "kg" | "kh" | "ki" | "km" | "kn" | "kp" | "kr" | "kw" | "ky" | "kz" | "la" | "lb" | "lc" | "li" | "lk" | "lr" | "ls" | "lt" | "lu" | "lv" | "ly" | "ma" | "mc" | "md" | "me" | "mg" | "mh" | "mk" | "ml" | "mm" | "mn" | "mo" | "mp" | "mq" | "mr" | "ms" | "mt" | "mu" | "mv" | "mw" | "mx" | "my" | "mz" | "na" | "nc" | "ne" | "nf" | "ng" | "ni" | "nl" | "no" | "np" | "nr" | "nu" | "nz" | "om" | "pa" | "pe" | "pf" | "pg" | "ph" | "pk" | "pl" | "pm" | "pr" | "ps" | "pt" | "pw" | "py" | "qa" | "re" | "ro" | "rs" | "ru" | "rw" | "sa" | "sb" | "sc" | "sd" | "se" | "sg" | "sh" | "si" | "sj" | "sk" | "sl" | "sm" | "sn" | "so" | "sr" | "st" | "sv" | "sy" | "sz" | "tc" | "td" | "tf" | "tg" | "th" | "tj" | "tk" | "tm" | "tn" | "to" | "tr" | "tt" | "tv" | "tw" | "tz" | "ua" | "ug" | "um" | "us" | "uy" | "uz" | "va" | "vc" | "ve" | "vg" | "vi" | "vn" | "vu" | "wf" | "ws" | "ye" | "yt" | "za" | "zm" | "zw";
Use Geocoder Autocomplete types in your code:
import { ByProximityOptions, LocationType, ... } from '@geoapify/geocoder-autocomplete';
Name | Description | Value type |
---|---|---|
placeSelect | Fired when a location was selected | GeoJSON.Feature |
suggestionsChange | Fired on new suggestions | [GeoJSON.Feature[]] (https://geojson.org/) |
The placeSelect
output returns detailed information about the selected place got with Geoapify Place Details API. The information contains the place category, data fields and geometry (boundary or polygon). Note, that the Place Details API call costs an additional 'geocoding & places' request. Use the skipDetails option to switch the functionality off.
Properties of the feature contain information about address and location. Learn more about Geocoder result properties on Geoapify Documentation page.
The component doesn't have dependancy on @types/geojson. However, you can install it to work with GeoJSON types.
Name | Description |
---|---|
preprocessingHook | Modify the text to search. For example, if you expect that the user enters a street name you can add a city or postcode to search streets in the city. |
postprocessingHook | Modify the text that will be displayed in the input field and suggestions list. For example, you can show only a street name. |
suggestionsFilter | Filtering some suggestions. It lets to avoid duplicated results when you modify the address with a post-process hook. For example, suggestions may contain several addresses with the same street name, they will be duplicated when not the whole address but only the street name is shown. |
<geoapify-geocoder-autocomplete
[preprocessingHook]="preprocessingHook"
[postprocessingHook]="postprocessingHook"
[suggestionsFilter]="suggestionsFilter"
...>
</geoapify-geocoder-autocomplete>
preprocessingHook(value: string) {
return `${value}, ${this.postcode} ${this.city}`
}
postprocessingHook(feature: any) {
return feature.properties.street;
}
suggestionsFilter(suggestions: any[]) {
const processedStreets = [];
const filtered = suggestions.filter(value => {
if (!value.properties.street || processedStreets.indexOf(value.properties.street) >= 0) {
return false;
} else {
processedStreets.push(value.properties.street);
return true;
}
})
return filtered;
}