2

Geocoding APIはGoogleマップと組み合わせてのみ使用できることがわかるまで、私はGoogleGeocodingを使用してコーディングを行ってきました。地図を表示する必要がないので不便です。そこで、Geonamesに切り替えました。これは素晴らしいことです。

アドレスの緯度と経度を取得して、データベースに追加します。

以下のコードは、ユーザーが都市/町を追加し、入力している都市を想定してオートコンプリートが表示されるテキスト入力のJqueryです。それはうまく機能しますが、データベースに送信するために、2つの非表示のフォームフィールドに都市の緯度と経度を追加したいと思います。

Geonamesからこれらの座標を取得するにはどうすればよいですか?

$(function() {
        function log( message ) {
            $( "<div/>" ).text( message ).prependTo( "#log" );
            $( "#log" ).attr( "scrollTop", 0 );
        }

        $( "#city" ).autocomplete({
            source: function( request, response ) {
                $.ajax({
                    url: "http://ws.geonames.org/searchJSON",
                    dataType: "jsonp",
                    data: {
                        featureClass: "P",
                        style: "full",
                        maxRows: 12,
                        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
                            }
                        }));
                    }
                });
            },
            minLength: 2,
            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" );
            }
        });
    });
4

1 に答える 1

4

latlngが返されます。このテストリクエストを参照してください。

http://api.geonames.org/searchJSON?style=full&maxRows=12&name_startsWith=romse&username=demo

以下の構造になっているので、アクセスする必要があります。

{ "geonames" : [ { 
"adminCode1" : "ENG",
<SNIP>
        "geonameId" : 2639189,
        "lat" : 50.989057046475203,
        "lng" : -1.4998912811279297
于 2011-05-04T21:39:34.367 に答える