Il servizio Place Autocomplete è un servizio web che restituisce previsioni dei luoghi in risposta a una richiesta HTTP. La richiesta specifica una stringa di ricerca testuale e limiti geografici facoltativi. Il servizio può essere utilizzato per fornire una funzionalità di completamento automatico per le ricerche geografiche basate su testo, restituendo luoghi come attività commerciali, indirizzi e punti d'interesse come tipi di utenti.
Inserisci richieste di completamento automatico
Il servizio Place Autocomplete fa parte dell'API Places e condivide una chiave API e le quote con l'API Places.
Il servizio di completamento automatico dei luoghi può corrispondere a parole e sottostringhe complete, risolvendo nomi di luoghi, indirizzi e plus code. Pertanto, le applicazioni possono inviare query come tipi di utenti per fornire previsioni immediate sui luoghi.
Devi formattare correttamente i plus code. Ciò significa che devi eseguire l'escape degli URL come segno più per
%2B
e gli spazi per l'escape degli URL per %20
.
- Il codice globale è un prefisso di 4 caratteri e il codice locale di almeno 6 caratteri. Ad esempio, il codice globale di escape URL
849VCWC8+R9
è849VCWC8%2BR9
. - code composto è un codice locale di sei caratteri (o più lungo) con una posizione esplicita. Ad esempio, il codice composto con URL
CWC8+R9 Mountain View, CA, USA
con escape èCWC8%2BR9%20Mountain%20View%20CA%20USA
.
Le previsioni restituite sono progettate per essere presentate all'utente per aiutarlo a selezionare il luogo desiderato. Puoi inviare una richiesta per i dettagli del luogo per ulteriori informazioni su qualsiasi luogo restituito.
Una richiesta Place Autocomplete è un URL HTTP del seguente formato:
https://maps.googleapis.com/maps/api/place/autocomplete/output?parameters
dove output
può essere uno dei seguenti valori:
json
(consigliato) indica l'output in JavaScript Notazione oggetti (JSON)xml
indica l'output in formato XML
Per avviare una richiesta di completamento automatico dei luoghi sono necessari determinati parametri.
Come per gli URL, tutti i parametri sono separati utilizzando la e commerciale (&
). Di seguito è riportato un elenco dei parametri e dei possibili valori.
Required parameters
input
The text string on which to search. The Place Autocomplete service will return candidate matches based on this string and order results based on their perceived relevance.
radius
Defines the distance (in meters) within which to return place results. You may bias results to a specified circle by passing a
location
and aradius
parameter. Doing so instructs the Places service to prefer showing results within that circle; results outside of the defined area may still be displayed.The radius will automatically be clamped to a maximum value depending on the type of search and other parameters.
- Autocomplete: 50,000 meters
-
Nearby Search:
- with
keyword
orname
: 50,000 meters -
without
keyword
orname
-
Up to 50,000 meters, adjusted dynamically based on area density,
independent of
rankby
parameter. -
When using
rankby=distance
, the radius parameter will not be accepted, and will result in anINVALID_REQUEST
.
-
Up to 50,000 meters, adjusted dynamically based on area density,
independent of
- with
- Query Autocomplete: 50,000 meters
- Text Search: 50,000 meters
Optional parameters
components
A grouping of places to which you would like to restrict your results. Currently, you can use components to filter by up to 5 countries. Countries must be passed as a two character, ISO 3166-1 Alpha-2 compatible country code. For example:
components=country:fr
would restrict your results to places within France. Multiple countries must be passed as multiplecountry:XX
filters, with the pipe character|
as a separator. For example:components=country:us|country:pr|country:vi|country:gu|country:mp
would restrict your results to places within the United States and its unincorporated organized territories.Note: If you receive unexpected results with a country code, verify that you are using a code which includes the countries, dependent territories, and special areas of geographical interest you intend. You can find code information at Wikipedia: List of ISO 3166 country codes or the ISO Online Browsing Platform.language
The language in which to return results.
- See the list of supported languages. Google often updates the supported languages, so this list may not be exhaustive.
-
If
language
is not supplied, the API attempts to use the preferred language as specified in theAccept-Language
header. - The API does its best to provide a street address that is readable for both the user and locals. To achieve that goal, it returns street addresses in the local language, transliterated to a script readable by the user if necessary, observing the preferred language. All other addresses are returned in the preferred language. Address components are all returned in the same language, which is chosen from the first component.
- If a name is not available in the preferred language, the API uses the closest match.
- The preferred language has a small influence on the set of results that the API chooses to return, and the order in which they are returned. The geocoder interprets abbreviations differently depending on language, such as the abbreviations for street types, or synonyms that may be valid in one language but not in another. For example, utca and tér are synonyms for street in Hungarian.
location
The point around which to retrieve place information. This must be specified as
latitude,longitude
. Theradius
parameter must also be provided when specifying a location. Ifradius
is not provided, thelocation
parameter is ignored.When using the Text Search API, the `location` parameter may be overriden if the `query` contains an explicit location such as `Market in Barcelona`.locationbias
Prefer results in a specified area, by specifying either a radius plus lat/lng, or two lat/lng pairs representing the points of a rectangle. If this parameter is not specified, the API uses IP address biasing by default.
-
IP bias: Instructs the API to use IP address biasing. Pass the string
ipbias
(this option has no additional parameters). -
Circular: A string specifying radius in meters, plus lat/lng in decimal
degrees. Use the following format:
circle:radius@lat,lng
. -
Rectangular: A string specifying two lat/lng pairs in decimal degrees,
representing the south/west and north/east points of a rectangle. Use
the following format:
rectangle:south,west|north,east
. Note that east/west values are wrapped to the range -180, 180, and north/south values are clamped to the range -90, 90.
-
IP bias: Instructs the API to use IP address biasing. Pass the string
locationrestriction
Restrict results to a specified area, by specifying either a radius plus lat/lng, or two lat/lng pairs representing the points of a rectangle.
-
Circular: A string specifying radius in meters, plus lat/lng in decimal
degrees. Use the following format:
circle:radius@lat,lng
. -
Rectangular: A string specifying two lat/lng pairs in decimal degrees,
representing the south/west and north/east points of a rectangle. Use
the following format:
rectangle:south,west|north,east
. Note that east/west values are wrapped to the range -180, 180, and north/south values are clamped to the range -90, 90.
-
Circular: A string specifying radius in meters, plus lat/lng in decimal
degrees. Use the following format:
offset
The position, in the input term, of the last character that the service uses to match predictions. For example, if the input is
Google
and the offset is 3, the service will match onGoo
. The string determined by the offset is matched against the first word in the input term only. For example, if the input term isGoogle abc
and the offset is 3, the service will attempt to match againstGoo abc
. If no offset is supplied, the service will use the whole term. The offset should generally be set to the position of the text caret.origin
The origin point from which to calculate straight-line distance to the destination (returned as
distance_meters
). If this value is omitted, straight-line distance will not be returned. Must be specified aslatitude,longitude
.region
The region code, specified as a ccTLD ("top-level domain") two-character value. Most ccTLD codes are identical to ISO 3166-1 codes, with some notable exceptions. For example, the United Kingdom's ccTLD is "uk" (.co.uk) while its ISO 3166-1 code is "gb" (technically for the entity of "The United Kingdom of Great Britain and Northern Ireland").
sessiontoken
A random string which identifies an autocomplete session for billing purposes.
The session begins when the user starts typing a query, and concludes when they select a place and a call to Place Details is made. Each session can have multiple queries, followed by one place selection. The API key(s) used for each request within a session must belong to the same Google Cloud Console project. Once a session has concluded, the token is no longer valid; your app must generate a fresh token for each session. If the
sessiontoken
parameter is omitted, or if you reuse a session token, the session is charged as if no session token was provided (each request is billed separately).We recommend the following guidelines:
- Use session tokens for all autocomplete sessions.
- Generate a fresh token for each session. Using a version 4 UUID is recommended.
- Ensure that the API key(s) used for all Place Autocomplete and Place Details requests within a session belong to the same Cloud Console project.
- Be sure to pass a unique session token for each new session. Using the same token for more than one session will result in each request being billed individually.
strictbounds
Returns only those places that are strictly within the region defined by
location
andradius
. This is a restriction, rather than a bias, meaning that results outside this region will not be returned even if they match the user input.types
You can restrict results from a Place Autocomplete request to be of a certain type by passing the
types
parameter. This parameter specifies a type or a type collection, as listed in Place Types. If nothing is specified, all types are returned.For the value of the
types
parameter you can specify either:Up to five values from Table 1 or Table 2. For multiple values, separate each value with a
|
(vertical bar). For example:types=book_store|cafe
Any supported filter in Table 3. You can safely mix the
geocode
andestablishment
types. You cannot mix type collections (address
,(cities)
or(regions)
) with any other type, or an error occurs.
The request will be rejected with an
INVALID_REQUEST
error if:
Inserisci esempi di completamento automatico
Una richiesta di strutture contenenti la stringa "Amoeba" all'interno di un'area centrata a San Francisco, California:
URL
https://maps.googleapis.com/maps/api/place/autocomplete/json ?input=amoeba &location=37.76999%2C-122.44696 &radius=500 &types=establishment &key=YOUR_API_KEY
cURL
curl -L -X GET 'https://maps.googleapis.com/maps/api/place/autocomplete/json?input=amoeba&types=establishment&location=37.76999%2C-122.44696&radius=500&key=YOUR_API_KEY'
La stessa richiesta, limitata ai risultati entro 500 metri da Ashbury St & Haight St, San Francisco:
URL
https://maps.googleapis.com/maps/api/place/autocomplete/json ?input=amoeba &location=37.76999%2C-122.44696 &radius=500 &strictbounds=true &types=establishment &key=YOUR_API_KEY
cURL
curl -L -X GET 'https://maps.googleapis.com/maps/api/place/autocomplete/json?input=amoeba&types=establishment&location=37.76999%2C-122.44696&radius=500&strictbounds=true&key=YOUR_API_KEY'
Richiesta di indirizzi che contengono "Vict" con risultati in francese:
URL
https://maps.googleapis.com/maps/api/place/autocomplete/json ?input=Vict &language=fr &types=geocode &key=YOUR_API_KEY
cURL
curl -L -X GET 'https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Vict&types=geocode&language=fr&key=YOUR_API_KEY'
Richiesta per le città che contengono "Vict" con risultati in portoghese brasiliano:
URL
https://maps.googleapis.com/maps/api/place/autocomplete/json ?input=Vict &language=pt_BR &types=%28cities%29 &key=YOUR_API_KEY
cURL
curl -L -X GET 'https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Vict&types=(cities)&language=pt_BR&key=YOUR_API_KEY'
Tieni presente che in questi esempi devi sostituire la chiave API con la tua chiave.
Inserisci risposta di completamento automatico
Le risposte di completamento automatico dell'inserimento vengono restituite nel formato indicato dal flag output
all'interno del percorso dell'URL della richiesta. I risultati riportati di seguito indicano ciò che può essere restituito per una query con i seguenti parametri:
URL
https://maps.googleapis.com/maps/api/place/autocomplete/json ?input=Paris &types=geocode &key=YOUR_API_KEY
cURL
curl -L -X GET 'https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Paris&types=geocode&key=YOUR_API_KEY'
JSON
{ "predictions": [ { "description": "Paris, France", "matched_substrings": [{ "length": 5, "offset": 0 }], "place_id": "ChIJD7fiBh9u5kcRYJSMaMOCCwQ", "reference": "ChIJD7fiBh9u5kcRYJSMaMOCCwQ", "structured_formatting": { "main_text": "Paris", "main_text_matched_substrings": [{ "length": 5, "offset": 0 }], "secondary_text": "France", }, "terms": [ { "offset": 0, "value": "Paris" }, { "offset": 7, "value": "France" }, ], "types": ["locality", "political", "geocode"], }, { "description": "Paris, TX, USA", "matched_substrings": [{ "length": 5, "offset": 0 }], "place_id": "ChIJmysnFgZYSoYRSfPTL2YJuck", "reference": "ChIJmysnFgZYSoYRSfPTL2YJuck", "structured_formatting": { "main_text": "Paris", "main_text_matched_substrings": [{ "length": 5, "offset": 0 }], "secondary_text": "TX, USA", }, "terms": [ { "offset": 0, "value": "Paris" }, { "offset": 7, "value": "TX" }, { "offset": 11, "value": "USA" }, ], "types": ["locality", "political", "geocode"], }, { "description": "Paris, TN, USA", "matched_substrings": [{ "length": 5, "offset": 0 }], "place_id": "ChIJ4zHP-Sije4gRBDEsVxunOWg", "reference": "ChIJ4zHP-Sije4gRBDEsVxunOWg", "structured_formatting": { "main_text": "Paris", "main_text_matched_substrings": [{ "length": 5, "offset": 0 }], "secondary_text": "TN, USA", }, "terms": [ { "offset": 0, "value": "Paris" }, { "offset": 7, "value": "TN" }, { "offset": 11, "value": "USA" }, ], "types": ["locality", "political", "geocode"], }, { "description": "Paris, Brant, ON, Canada", "matched_substrings": [{ "length": 5, "offset": 0 }], "place_id": "ChIJsamfQbVtLIgR-X18G75Hyi0", "reference": "ChIJsamfQbVtLIgR-X18G75Hyi0", "structured_formatting": { "main_text": "Paris", "main_text_matched_substrings": [{ "length": 5, "offset": 0 }], "secondary_text": "Brant, ON, Canada", }, "terms": [ { "offset": 0, "value": "Paris" }, { "offset": 7, "value": "Brant" }, { "offset": 14, "value": "ON" }, { "offset": 18, "value": "Canada" }, ], "types": ["neighborhood", "political", "geocode"], }, { "description": "Paris, KY, USA", "matched_substrings": [{ "length": 5, "offset": 0 }], "place_id": "ChIJsU7_xMfKQ4gReI89RJn0-RQ", "reference": "ChIJsU7_xMfKQ4gReI89RJn0-RQ", "structured_formatting": { "main_text": "Paris", "main_text_matched_substrings": [{ "length": 5, "offset": 0 }], "secondary_text": "KY, USA", }, "terms": [ { "offset": 0, "value": "Paris" }, { "offset": 7, "value": "KY" }, { "offset": 11, "value": "USA" }, ], "types": ["locality", "political", "geocode"], }, ], "status": "OK", }
XML
<AutocompletionResponse> <status>OK</status> <prediction> <description>Paris, France</description> <type>locality</type> <type>political</type> <type>geocode</type> <reference>ChIJD7fiBh9u5kcRYJSMaMOCCwQ</reference> <term> <value>Paris</value> <offset>0</offset> </term> <term> <value>France</value> <offset>7</offset> </term> <matched_substring> <offset>0</offset> <length>5</length> </matched_substring> <place_id>ChIJD7fiBh9u5kcRYJSMaMOCCwQ</place_id> <structured_formatting> <description>Paris</description> <subdescription>France</subdescription> <description_matched_substring> <offset>0</offset> <length>5</length> </description_matched_substring> </structured_formatting> </prediction> <prediction> <description>Paris, TX, USA</description> <type>locality</type> <type>political</type> <type>geocode</type> <reference>ChIJmysnFgZYSoYRSfPTL2YJuck</reference> <term> <value>Paris</value> <offset>0</offset> </term> <term> <value>TX</value> <offset>7</offset> </term> <term> <value>USA</value> <offset>11</offset> </term> <matched_substring> <offset>0</offset> <length>5</length> </matched_substring> <place_id>ChIJmysnFgZYSoYRSfPTL2YJuck</place_id> <structured_formatting> <description>Paris</description> <subdescription>TX, USA</subdescription> <description_matched_substring> <offset>0</offset> <length>5</length> </description_matched_substring> </structured_formatting> </prediction> <prediction> <description>Paris, TN, USA</description> <type>locality</type> <type>political</type> <type>geocode</type> <reference>ChIJ4zHP-Sije4gRBDEsVxunOWg</reference> <term> <value>Paris</value> <offset>0</offset> </term> <term> <value>TN</value> <offset>7</offset> </term> <term> <value>USA</value> <offset>11</offset> </term> <matched_substring> <offset>0</offset> <length>5</length> </matched_substring> <place_id>ChIJ4zHP-Sije4gRBDEsVxunOWg</place_id> <structured_formatting> <description>Paris</description> <subdescription>TN, USA</subdescription> <description_matched_substring> <offset>0</offset> <length>5</length> </description_matched_substring> </structured_formatting> </prediction> <prediction> <description>Paris, Brant, ON, Canada</description> <type>neighborhood</type> <type>political</type> <type>geocode</type> <reference>ChIJsamfQbVtLIgR-X18G75Hyi0</reference> <term> <value>Paris</value> <offset>0</offset> </term> <term> <value>Brant</value> <offset>7</offset> </term> <term> <value>ON</value> <offset>14</offset> </term> <term> <value>Canada</value> <offset>18</offset> </term> <matched_substring> <offset>0</offset> <length>5</length> </matched_substring> <place_id>ChIJsamfQbVtLIgR-X18G75Hyi0</place_id> <structured_formatting> <description>Paris</description> <subdescription>Brant, ON, Canada</subdescription> <description_matched_substring> <offset>0</offset> <length>5</length> </description_matched_substring> </structured_formatting> </prediction> <prediction> <description>Paris, KY, USA</description> <type>locality</type> <type>political</type> <type>geocode</type> <reference>ChIJsU7_xMfKQ4gReI89RJn0-RQ</reference> <term> <value>Paris</value> <offset>0</offset> </term> <term> <value>KY</value> <offset>7</offset> </term> <term> <value>USA</value> <offset>11</offset> </term> <matched_substring> <offset>0</offset> <length>5</length> </matched_substring> <place_id>ChIJsU7_xMfKQ4gReI89RJn0-RQ</place_id> <structured_formatting> <description>Paris</description> <subdescription>KY, USA</subdescription> <description_matched_substring> <offset>0</offset> <length>5</length> </description_matched_substring> </structured_formatting> </prediction> </AutocompletionResponse>
PlacesAutocompleteResponse
Field | Required | Type | Description |
---|---|---|---|
| required | Array<PlaceAutocompletePrediction> | Contains an array of predictions. See PlaceAutocompletePrediction for more information. |
| required | PlacesAutocompleteStatus | Contains the status of the request, and may contain debugging information to help you track down why the request failed. See PlacesAutocompleteStatus for more information. |
| optional | string |
When the service returns a status code other than
|
| optional | Array<string> |
When the service returns additional information about the request
specification, there may be an additional
|
Di particolare interesse all'interno dei risultati sono gli elementi place_id
, che possono essere utilizzati per richiedere dettagli più specifici sul luogo tramite una query separata. Vedi
Richieste di dettagli
del luogo.
Una risposta XML è costituita da un singolo elemento <AutocompletionResponse>
con due tipi di elementi secondari:
- Un singolo elemento
<status>
contiene metadati nella richiesta. Consulta i codici di stato riportati di seguito. - Zero o più elementi
<prediction>
, ciascuno contenente informazioni su un singolo luogo. Per informazioni su questi risultati, consulta la sezione Inserire risultati di completamento automatico. L'API Places restituisce fino a 5 risultati.
Ti consigliamo di utilizzare json
come flag di output preferito, a meno che la tua applicazione non ne richieda xml
per qualche motivo.
L'elaborazione di strutture XML richiede attenzione, per consentirti di fare riferimento a nodi ed elementi appropriati. Per assistenza sull'elaborazione dei file XML, consulta Elaborazione di XML con XPath.
PlacesAutocompleteStatus
Status codes returned by service.
OK
indicating the API request was successful.ZERO_RESULTS
indicating that the search was successful but returned no results. This may occur if the search was passed a bounds in a remote location.INVALID_REQUEST
indicating the API request was malformed, generally due to the missinginput
parameter.OVER_QUERY_LIMIT
indicating any of the following:- You have exceeded the QPS limits.
- Billing has not been enabled on your account.
- The monthly $200 credit, or a self-imposed usage cap, has been exceeded.
- The provided method of payment is no longer valid (for example, a credit card has expired).
REQUEST_DENIED
indicating that your request was denied, generally because:- The request is missing an API key.
- The
key
parameter is invalid.
UNKNOWN_ERROR
indicating an unknown error.
Quando il servizio Places restituisce risultati JSON da una ricerca, li inserisce in un array predictions
. Anche se il servizio non restituisce risultati (ad esempio se location
è in remoto) restituisce comunque un array predictions
vuoto. Le risposte XML sono costituite da zero o più elementi <prediction>
.
PlaceAutocompletePrediction
Field | Required | Type | Description |
---|---|---|---|
| required | string |
Contains the human-readable name for the returned result. For
|
| required | Array<PlaceAutocompleteMatchedSubstring> | A list of substrings that describe the location of the entered term in the prediction result text, so that the term can be highlighted if desired. See PlaceAutocompleteMatchedSubstring for more information. |
| required | PlaceAutocompleteStructuredFormat | Provides pre-formatted text that can be shown in your autocomplete results. This content is meant to be read as-is. Do not programmatically parse the formatted address. See PlaceAutocompleteStructuredFormat for more information. |
| required | Array<PlaceAutocompleteTerm> |
Contains an array of terms identifying each section of the returned
description (a section of the description is generally terminated
with a comma). Each entry in the array has a
See PlaceAutocompleteTerm for more information. |
| optional | integer |
The straight-line distance in meters from the origin. This field is
only returned for requests made with an |
| optional | string | A textual identifier that uniquely identifies a place. To retrieve information about the place, pass this identifier in the placeId field of a Places API request. For more information about place IDs, see the Place IDs overview. |
| optional | string | See place_id. |
| optional | Array<string> |
Contains an array of types that apply to this place. For example:
|
PlaceAutocompleteMatchedSubstring
Field | Required | Type | Description |
---|---|---|---|
| required | number | Length of the matched substring in the prediction result text. |
| required | number | Start location of the matched substring in the prediction result text. |
PlaceAutocompleteStructuredFormat
Field | Required | Type | Description |
---|---|---|---|
| required | string | Contains the main text of a prediction, usually the name of the place. |
| required | Array<PlaceAutocompleteMatchedSubstring> |
Contains an array with See PlaceAutocompleteMatchedSubstring for more information. |
| optional | string | Contains the secondary text of a prediction, usually the location of the place. |
| optional | Array<PlaceAutocompleteMatchedSubstring> |
Contains an array with See PlaceAutocompleteMatchedSubstring for more information. |
PlaceAutocompleteTerm
Field | Required | Type | Description |
---|---|---|---|
| required | number | Defines the start position of this term in the description, measured in Unicode characters |
| required | string | The text of the term. |
Effettua l'ottimizzazione del completamento automatico
Questa sezione descrive le best practice per aiutarti a ottenere il massimo dal servizio Place Autocomplete.
Di seguito sono riportate alcune linee guida generali:
- Il modo più rapido per sviluppare un'interfaccia utente funzionante è utilizzare il widget Autocomplete dell'API Maps JavaScript, il widget Autocomplete dell'SDK Places per Android o il controllo dell'interfaccia utente di completamento automatico dell'SDK Places per iOS
- Comprendi fin da subito i campi di dati di completamento automatico dei luoghi.
- I campi della geolocalizzazione e della limitazione della località sono facoltativi, ma possono avere un impatto significativo sulle prestazioni del completamento automatico.
- Utilizza la gestione degli errori per assicurarti che la tua app presenti una riduzione controllata se l'API restituisce un errore.
- Assicurati che la tua app sia gestita quando non è presente alcuna selezione e offre agli utenti un modo per continuare.
Best practice per l'ottimizzazione dei costi
Ottimizzazione dei costi di base
Per ottimizzare i costi di utilizzo del servizio di completamento automatico dei luoghi, utilizza le maschere di campo nei widget Dettagli luogo e Inserisci completamento automatico per restituire solo i campi di dati dei luoghi necessari.
Ottimizzazione avanzata dei costi
Prendi in considerazione l'implementazione programmatica del completamento automatico di Place per accedere ai prezzi per richiesta e richiedere i risultati dell'API Geocoding anziché il luogo selezionato, anziché Dettagli luogo. I prezzi per richiesta abbinati all'API Geocoding sono più vantaggiosi dei prezzi per sessione (basati su sessione) se sono soddisfatte entrambe le seguenti condizioni:
- Se ti servono soltanto la latitudine/longitudine o l'indirizzo del luogo selezionato dall'utente, l'API Geocoding fornisce queste informazioni per meno di una chiamata con Dettagli luogo.
- Se gli utenti selezionano una previsione di completamento automatico entro una media di massimo quattro richieste di previsioni di completamento automatico, il prezzo per richiesta potrebbe essere più conveniente di quello per sessione.
La tua applicazione richiede informazioni diverse dall'indirizzo e dalla latitudine/longitudine della previsione selezionata?
Sì, ho bisogno di ulteriori dettagli
Utilizza il completamento automatico dei luoghi basato sulla sessione con i dettagli del luogo.
Poiché la tua applicazione richiede dettagli relativi al luogo, come il nome del luogo, lo stato dell'attività o l'orario di apertura, l'implementazione del completamento automatico dei luoghi dovrebbe utilizzare un token di sessione (a livello programmatico o integrato nei widget JavaScript, Android o iOS) per un costo totale di 0,017 per sessione più gli SKU di dati dei luoghi applicabili, a seconda dei campi dei dati dei luoghi richiesti.6
Implementazione dei widget
La gestione delle sessioni è integrata automaticamente nei widget JavaScript, Android o iOS. Sono incluse sia le richieste Place Autocomplete che la richiesta Place Details nella previsione selezionata. Assicurati di specificare il parametro fields
per assicurarti di richiedere solo i campi dei dati relativi ai luoghi di cui hai bisogno.
Implementazione della pubblicità programmatica
Utilizza un token di sessione con le richieste di completamento automatico dei luoghi. Quando richiedi i dettagli del luogo relativi alla previsione selezionata, includi i seguenti parametri:
- L'ID luogo dalla risposta di completamento automatico del luogo
- Il token di sessione utilizzato nella richiesta di completamento automatico dell'attività
- Il parametro
fields
che specifica i campi di dati sul luogo necessari
No, necessita solo di indirizzo e posizione
L'API Geocoding potrebbe essere un'opzione più conveniente rispetto a Place Details per la tua applicazione, a seconda delle prestazioni dell'utilizzo di Place Autocomplete. L'efficienza del completamento automatico di ogni applicazione varia a seconda di cosa vi accedono gli utenti, dove viene utilizzato e se sono state implementate best practice per l'ottimizzazione delle prestazioni.
Per rispondere alla seguente domanda, analizza il numero di caratteri digitati da un utente in media prima di selezionare la previsione di completamento automatico dell'applicazione.
In media, gli utenti selezionano una previsione di completamento automatico del luogo in quattro richieste o meno?
Sì
Implementare Place Autocomplete in modo programmatico senza token di sessione e chiamare l'API Geocoding sulla previsione di luogo selezionata.
L'API Geocoding fornisce indirizzi e coordinate di latitudine/longitudine a 0,005 $per richiesta. Il completamento di quattro richieste di tipo Compilazione automatica - Per richiesta costa 0,01132 $, quindi il costo totale di quattro richieste più una chiamata API Geocoding relativa alla previsione del luogo selezionato sarà di 0,01632 $, inferiore al prezzo di completamento automatico per sessione di 0,017 $per sessione.1
Valuta se utilizzare le best practice per il rendimento per aiutare gli utenti a ottenere la previsione che cercano in un numero ancora inferiore di caratteri.
No
Utilizza il completamento automatico dei luoghi basato sulla sessione con i dettagli del luogo.
Poiché il numero medio di richieste che intendi effettuare prima che un utente selezioni una previsione di completamento automatico di un luogo supera il costo dei prezzi per sessione, l'implementazione del completamento automatico di questo luogo dovrebbe utilizzare un token di sessione sia per le richieste di completamento automatico del luogo che per la richiesta di dettagli del luogo associata per un costo totale di 0,017 $per sessione.1
Implementazione dei widget
La gestione delle sessioni è integrata automaticamente nei widget JavaScript, Android o iOS. Sono incluse sia le richieste Place Autocomplete che la richiesta Place Details nella previsione selezionata. Assicurati di specificare il parametro fields
per assicurarti di richiedere solo i campi Dati di base.
Implementazione della pubblicità programmatica
Utilizza un token di sessione con le richieste di completamento automatico dei luoghi. Quando richiedi i dettagli del luogo relativi alla previsione selezionata, includi i seguenti parametri:
- L'ID luogo dalla risposta di completamento automatico del luogo
- Il token di sessione utilizzato nella richiesta di completamento automatico dell'attività
- Il parametro
fields
che specifica i campi Dati di base, come indirizzo e geometria
Considera la possibilità di ritardare le richieste di completamento automatico dei luoghi
Puoi utilizzare strategie come ritardare una richiesta di completamento automatico dei luoghi fino a quando l'utente non ha digitato i primi tre o quattro caratteri, in modo che la tua applicazione faccia meno richieste. Ad esempio, effettuando richieste di completamento automatico del luogo per ogni carattere dopo che l'utente ha digitato il terzo carattere, se l'utente digita sette caratteri e poi seleziona una previsione per la quale si effettua una richiesta API Geocoding, il costo totale sarà di $0,01632 (4 * $0,00283 completamento automatico per richiesta + $0,005 Geocodifica).1
Se le richieste in ritardo possono ricevere una richiesta di pubblicità programmatica media inferiore a 4, puoi seguire le indicazioni per l'implementazione del completamento automatico dei luoghi con l'API Geocoding. Tieni presente che le richieste in ritardo possono essere percepite come latenza dall'utente, che potrebbe aspettarsi di vedere previsioni a ogni nuova sequenza di tasti.
Prova a utilizzare le best practice per il rendimento per aiutare gli utenti a ottenere la previsione che cercano in meno caratteri.
-
I costi elencati qui sono in USD. Per informazioni complete sui prezzi, consulta la pagina Fatturazione di Google Maps Platform.
Best practice per il rendimento
Le seguenti linee guida descrivono i modi per ottimizzare le prestazioni di completamento automatico dei luoghi:
- Aggiungi limitazioni in base al paese, la previsione della località e (per le implementazioni programmatiche) la preferenza della lingua per l'implementazione del completamento automatico del luogo. La preferenza della lingua non è necessaria per i widget perché selezionano le preferenze relative alla lingua dal browser o dal dispositivo mobile dell'utente.
- Se il completamento automatico di un luogo è accompagnato da una mappa, puoi modificare la posizione in base alla visualizzazione della mappa.
- Nei casi in cui un utente non scelga una delle previsioni di completamento automatico, in genere perché nessuna di queste previsioni è l'indirizzo del risultato desiderato, puoi riutilizzare l'input originale dell'utente per tentare di ottenere risultati più pertinenti:
- Se prevedi che l'utente debba inserire solo le informazioni relative all'indirizzo, riutilizza l'input utente originale durante una chiamata all'API Geocoding.
- Se prevedi che l'utente inserirà query per un luogo specifico in base al nome o all'indirizzo, utilizza una richiesta Trova luogo. Se i risultati sono previsti solo in una regione specifica, utilizza la previsione della località.
- Gli utenti che inseriscono indirizzi di premessa nei paesi in cui il supporto della funzionalità di completamento automatico degli indirizzi di pre-ordine sono incompleti, ad esempio Cechia, Estonia e Lituania. Ad esempio, l'indirizzo ceco "Stroupežnického 3191/17, Praha" genera una previsione parziale nel Place Autocomplete.
- Gli utenti che inseriscono indirizzi con prefissi del segmento di strada come "23-30 29th St, Queens" a New York City o "47-380 Kamehameha Hwy, Kaneohe" sull'isola di Kauai alle Hawaii.
Distorsione della posizione
Il bias si verifica in un'area specificata passando un parametro location
e un parametro radius
. Questo indica al servizio Place Autocomplete di preferire la visualizzazione dei risultati all'interno dell'area definita. I risultati al di fuori dell'area definita potrebbero essere comunque visualizzati. Puoi utilizzare il parametro components
per filtrare i risultati e mostrare solo quelli relativi a un paese specifico.
Suggerimento: in genere, i risultati della determinazione non hanno un ranking sufficientemente elevato per essere mostrati nei risultati quando l'area di ricerca è ampia. Se vuoi che le attività vengano visualizzate nei risultati misti/di geocodifica, puoi specificare un raggio inferiore. In alternativa, utilizza types=establishment
per limitare i risultati ai soli istituti.
Limitazione relativa alla posizione
Limita i risultati a un'area specificata passando un parametro locationrestriction
.
Puoi anche limitare i risultati alla regione definita da location
e da un parametro radius
, aggiungendo il parametro strictbounds
. Questo indica al servizio Place Autocomplete di restituire solo i risultati all'interno dell'area geografica.