Auto completing input with address

Asked

Viewed 956 times

2

Is there an API that when typing a city name for example, will the suggestion appear as the city name below the form? Please do not send the Place Autocompleter from Google, I need an API that provides the suggestion of the city and state, example:

  • Santos, SP
  • Here’s a list of states and a list of cities in JSON format. It is a little big to use on the client side, but if you give a "dry" it should be able to use. I would suggest a more complete solution (I am the author of the linked library), but I have nothing that works exclusively in the browser (only integrated with Django).

  • Note: this list was taken from public sources, but I can’t remember exactly where. Unfortunately, the names of the cities are not accentuated.

3 answers

4


Have you used jquery?

website: jquery.com

Furlough: https://jquery.org/license/

An example of Autocomplete.

    <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Autocomplete - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
$( "#tags" ).autocomplete({
source: availableTags
});
});
</script>
</head>
<body>
<div class="ui-widget">
<label for="tags">Tags: </label>
<input id="tags">
</div>
</body>
</html>

Autocomplete

2

Behold Link.

Example:

var cidades = [
           { data: 'es_afonso_claudio', value: 'Afonso Cláudio - ES' },
           { data: 'es_alegre', value: 'Alegre - ES' },
           { data: 'es_alfredo_chaves', value: 'Alfredo Chaves - ES' },
           { data: 'es_alto_rio_novo', value: 'Alto Rio Novo - ES' },
        ]

$('#cidades').autocomplete({
            lookup: cidades,
            onSelect: function(suggestion){
                alert(suggestion.value  + ' : ' + suggestion.data);
            }
        });

In the case here #cidades is the ID of input text.

0

Hello, take a look at Twitter Typeahead.

It is a completion component that allows the inclusion of data default that are sent on the page for quick access.

I recommend knowing!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.