A flexible, accessible, and secure Svelte component leveraging the Google Maps Places Autocomplete API (New).
The component handles API loading, session tokens, debounced fetching, and accessibility, allowing you to focus on building your application. It intelligently manages the Google Maps API loader, creating a shared instance via Svelte's context that prevents conflicts with other map components on the same page.
Two initialisation patterns:
Need this functionality for a non-Svelte project? Check out our companion vanilla JavaScript library, places-autocomplete-js, which offers the same core Google Places (New) Autocomplete features.
View places-autocomplete-js on GitHub
clear(), focus(), and getRequestParams() methods for direct control.options.classes prop.onResponse and onError callbacks.See a live demo of the component in action: Basic Example
Reactive parameters - change the search criteria based on user input, like filtering by country or change results language.
Customise request parameters - construct a requestParams object and control various aspects of the search, including language, region, and more.
Retain Input Value After Selection - This example demonstrates how to configure the component to keep the selected address visible in the input field after a suggestion is chosen.
npm install places-autocomplete-svelte
# or
yarn add places-autocomplete-svelte
For simple use cases, just pass your API key to the component. It will automatically handle the Google Maps loader initialisation:
<script lang="ts">
import { PlaceAutocomplete } from 'places-autocomplete-svelte';
import type { PlaceResult } from 'places-autocomplete-svelte/interfaces';
// Get API Key securely (e.g., from environment variables)
const PUBLIC_GOOGLE_MAPS_API_KEY = import.meta.env.VITE_PUBLIC_GOOGLE_MAPS_API_KEY;
const handleResponse = (response: PlaceResult) => {
console.log('Selected:', response.formattedAddress);
};
const handleError = (error: string) => {
console.error('Error:', error);
};
</script>
<PlaceAutocomplete
{PUBLIC_GOOGLE_MAPS_API_KEY}
onResponse={handleResponse}
onError={handleError}
/>
For applications that need multiple Google Maps libraries (e.g., places, maps, marker) or multiple map components, initialise the loader once in a parent component. This approach:
When to use manual initialisation:
maps, marker, geometry, etc.)// In +layout.svelte or +page.svelte
<script lang="ts">
import { browser } from '$app/environment';
import { PlaceAutocomplete } from 'places-autocomplete-svelte';
import { setGMapsContext, initialiseGMaps, importLibrary } from 'places-autocomplete-svelte/gmaps';
import { onMount } from 'svelte';
// 1. Set the context at the top level (must be synchronous)
setGMapsContext();
// 2. Initialise the loader in the browser
if (browser) {
initialiseGMaps({
key: import.meta.env.VITE_PUBLIC_GOOGLE_MAPS_API_KEY,
v: 'weekly'
}).catch((error) => {
console.error('Failed to initialise Google Maps:', error);
});
}
// 3. Load additional libraries as needed
let map: google.maps.Map;
onMount(async () => {
const { Map } = await importLibrary('maps');
const { AdvancedMarkerElement } = await importLibrary('marker');
const mapElement = document.getElementById('map');
if (mapElement) {
map = new Map(mapElement, {
center: { lat: 51.5072, lng: -0.1276 },
zoom: 10,
mapId: 'YOUR_MAP_ID'
});
}
});
// 4. Handle autocomplete responses
const handleResponse = (response: PlaceResult) => {
console.log('Selected:', response.formattedAddress);
// Update map with selected location
if (response.location && map) {
map.setCenter(response.location);
map.setZoom(15);
}
};
const handleError = (error: string) => {
console.error('Error:', error);
};
</script>
<!-- The component automatically uses the shared context -->
<!-- No need to pass PUBLIC_GOOGLE_MAPS_API_KEY when using manual initialisation -->
<PlaceAutocomplete
onResponse={handleResponse}
onError={handleError}
/>
<div id="map" class="h-96 w-full"></div>
Available helper functions from places-autocomplete-svelte/gmaps:
setGMapsContext() - Creates the shared context (call once at the top level)getGMapsContext() - Retrieves the context (returns stores for initialisation state and errors)hasGMapsContext() - Checks if context exists (useful for conditional logic)initialiseGMaps(options) - Initialises the loader with your API key and optionsinitialiseGMapsNoContext(options) - Initialises without context (for edge cases)importLibrary(library) - Dynamically imports Google Maps librariesYour Google Maps API Key is a sensitive credential. To prevent unauthorised use and unexpected charges, you must restrict it.
your-domain.com/*).This component is designed to be secure out-of-the-box. It safely renders user-input and API responses to prevent Cross-Site Scripting (XSS) vulnerabilities.
This component is built to be accessible and follows the WAI-ARIA Authoring Practices for a Combobox.
ArrowUp, ArrowDown, select with Enter, and close the list with Escape.role="combobox", aria-autocomplete, aria-expanded, and aria-activedescendant to provide a clear experience for screen reader users.| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
PUBLIC_GOOGLE_MAPS_API_KEY |
string |
No* | - | Your Google Maps API Key. Required for automatic initialisation. Optional if you've initialised the loader in a parent component using initialiseGMaps(). |
onResponse |
(response: PlaceResult) => void |
Yes | - | Callback triggered when a user selects a place. Receives the full place details object. |
onError |
(error: string) => void |
Yes | - | Callback triggered when an error occurs (API loading, network issues, etc.). |
fetchFields |
string[] |
No | ['formattedAddress', 'addressComponents'] |
Place Data Fields to request from the API. See Place Data Fields. Affects API billing. |
requestParams |
Partial<RequestParams> |
No | { inputOffset: 3 } |
Parameters for the Autocomplete API request (language, region, location bias, etc.). See RequestParams interface. |
options |
Partial<ComponentOptions> |
No | { debounce: 100 } |
UI and behavior options (placeholder, debounce delay, distance display, custom classes, etc.). See ComponentOptions interface. |
*Either PUBLIC_GOOGLE_MAPS_API_KEY prop OR manual initialisation with initialiseGMaps() is required.
Get a reference to the component instance using bind:this to call its methods directly.
Example:
<script lang="ts">
import PlaceAutocomplete from 'places-autocomplete-svelte';
let autocompleteComponent: PlaceAutocomplete | undefined = $state(undefined);
</script>
<PlaceAutocomplete bind:this={autocompleteComponent} ... />
<button onclick={() => autocompleteComponent?.clear()}>Clear</button>
<button onclick={() => autocompleteComponent?.focus()}>Focus</button>
| Method | Signature | Description |
|---|---|---|
clear() |
() => void |
Clears the input, removes suggestions, and resets the session token. |
focus() |
() => void |
Sets focus on the text input field. |
getRequestParams() |
() => RequestParams |
Returns the current internal requestParams object. |
| Option | Type | Default | Description |
|---|---|---|---|
placeholder |
string |
'' |
Placeholder text for the input field. |
debounce |
number |
100 |
Delay in ms before firing API request. Set to 0 to disable. |
distance |
boolean |
true |
Show distance from requestParams.origin (if provided). |
distance_units |
'km' | 'miles' |
'km' |
Units for displaying distance. |
label |
string |
'' |
Optional label text displayed above the input. |
autofocus |
boolean |
false |
Automatically focus the input on mount. |
autocomplete |
string |
'off' |
The autocomplete attribute for the input field. |
classes |
Partial<ComponentClasses> |
{} |
Object to override default CSS classes. See Styling section. |
clear_input |
boolean |
true |
If false, retains the formattedAddress in the input after selection. |
options.classes)Customise the component by providing your own CSS classes via options.classes.
Available Class Keys:
section: The main container section.container: The div containing the input and suggestions list.label: The label element.input: The main text input element.icon_container: Container for the optional icon.icon: SVG string for the icon.ul: The <ul> element for the suggestions list.li: Each <li> suggestion item.li_current: Class added to the currently highlighted <li>.li_div_container: Container div within each list item.li_div_one: First inner div (contains the main text).li_div_one_p: The <p> tag containing the main suggestion text.li_div_two: Second inner div (contains the distance).li_div_two_p: The <p> tag containing the distance text.kbd_container: Container for the keyboard hint keys.kbd_escape: The <kbd> tag for the 'Esc' hint.kbd_up: The <kbd> tag for the 'Up Arrow' hint.kbd_down: The <kbd> tag for the 'Down Arrow' hint.highlight: The class applied to the <span> wrapping the matched text. Defaults to 'font-bold'.Example:
const options = {
classes: {
input: 'form-input w-full rounded-md shadow-sm',
ul: 'absolute bg-white shadow-lg rounded-md mt-1 w-full z-10',
li_current: 'bg-blue-500 text-white',
highlight: 'text-blue-700 font-semibold'
}
};
onResponse: (response: PlaceResult) => voidfetchFields are retrieved.onError: (error: string) => voidThis component is written in TypeScript with full type definitions included.
Available imports:
// Component
import { PlaceAutocomplete } from 'places-autocomplete-svelte';
// Types and interfaces
import type {
PlaceResult,
ComponentOptions,
RequestParams,
FormattedAddress,
ComponentClasses,
Props
} from 'places-autocomplete-svelte/interfaces';
// Google Maps loader helpers
import {
setGMapsContext,
getGMapsContext,
hasGMapsContext,
initialiseGMaps,
initialiseGMapsNoContext,
importLibrary,
type GMapsContext,
type APIOptions
} from 'places-autocomplete-svelte/gmaps';
fetchFields) are billed separately. Only request the fields you need to manage costs.Contributions are welcome! Please feel free to open an issue or submit a pull request.