I am currently using a single INPUT field to trigger jQuery UI Autocomplete, which pulls data from Geonames.

$( "#city_state_country" ).autocomplete({
    source: function( request, response ) {
        $.ajax({
            url: "http://ws.geonames.org/searchJSON",
            dataType: "jsonp",
            data: {
                featureClass: "P",
                style: "full",
                maxRows: 6,
                name_startsWith: request.term
            },
            success: function( data ) {
                response( $.map( data.geonames, function( item ) {
                    return {
                        label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
                        value: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
                    }
                }));
            }
        });
    },
    minLength: 3,
    select: function( event, ui ) {
        log( ui.item ?
            "Selected: " + ui.item.label :
            "Nothing selected, input was " + this.value);
    },
    open: function() {
        $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
    },
    close: function() {
        $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
    }
});

So if I begin to type "Bosto"

it provides me with

Boston, Massachusetts, United States

But I would like to have separate INPUT fields for city, state and country -- and each of them with autocomplete hooked up to Geonames returning only suggestions for city, state, country respectively.

So typing:

"Bost" in the city INPUT would provide "Boston".
"Massa" in the state INPUT would provide "Massachusetts".
"United St" in the state INPUT would provide "United States".

Is this possible?

I've experimented with changing name_startsWith to other options but didn't get what I expected.

link|improve this question

Do you want to constrain State/Country? For example, should I not be able to type "Boston", "South Carolina", "United Kingdom"? – Andrew Whitaker Oct 18 '11 at 2:48
@andrew i don't want to constrain, i just wanted to offer cities, states and countries in separate fields, with autocomplete -- if someone entered what you suggested so be it – torr Oct 18 '11 at 3:13
feedback

1 Answer

up vote 1 down vote accepted

According to the documentation, http://www.geonames.org/export/web-services.html, you can't

link|improve this answer
thx - do you see where exactly they say it's not possible (which section of that page)? – torr Oct 18 '11 at 2:25
Sorry, that was a vague answer. But it simply doesn't have a CONTAINS options. Even their full-text search doesn't really match your needs. – Joe Tuskan Oct 18 '11 at 2:30
ok thx for the info – torr Oct 18 '11 at 3:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.