3

ユーザーアドレスのオートコンプリート機能にGoogle APIを使用しています。そして、その正常に動作します。しかし今、住所のオートコンプリート機能に Nokia OVI Map を使用したいと考えています。

同じものを実装する方法を教えてください。

以下のコードを使用しています

<div id="customSearchBox" class="main-search">
        <span class ="caption">Search For Places:</span>
        <div module="SearchBox">
            <input rel="searchbox-input" class="search-box-bckgrnd" type="text" />
            <div rel="searchbox-list" class="search-list"></div>
        </div>
    </div>
    <script>
        var customSearchBox = new nokia.places.widgets.SearchBox({
            targetNode: 'customSearchBox',
            template: 'customSearchBox',
            searchCenter: function () {
                return {
                    latitude: 52.516274,
                    longitude: 13.377678
                }
            },
            onResults: function (data) {
               //here you have access to data
               alert(data);
            }
        });   
    </script>

このコードで緯度、経度を取得する方法

ありがとうシヴァム

4

2 に答える 2

0

OVIマップのドキュメントを読んで、私の質問の答えを得ました。

<script>
        var customSearchBox = new nokia.places.widgets.SearchBox({
            targetNode: 'customSearchBox',
            template: 'customSearchBox',
            searchCenter: function () {
                return {
                    latitude: 52.516274,
                    longitude: 13.377678
                }
            },
            onResults: function (data) {
               //here you have access to data
               //var a=getData();
               renderResults(data);
               //alert(data.results[0]);
            }
        });  

        function renderResults (data) {
        var previewList = document.getElementById ('results');
        previewList.innerHTML = '';

        var results = data.results;

        for (var i = 0, l = results.length; i < l; i++) {
            var result = results[i];
            var resultLi = document.createElement ('li');
            resultLi.innerHTML = result.place.name+" - Lat:"+result.place.location.position.latitude+" Long:"+result.place.location.position.longitude;
            //alert(result.place.location.position.longitude);
            previewList.appendChild (resultLi);
        }
    }

    </script>

これが誰かに役立つことを願っています。

ありがとうシヴァム

于 2012-03-12T06:48:07.303 に答える
0

jQueryの場合、定義済みの「検索ボックスウィジェット」を使用したくないため、テキストフィールドで次のように実行できます。

$('#location_address').autocomplete({
    focus:function (event, ui) {
        return false;
    },
    search:function () {
        $(this).addClass('working');
    },
    open:function () {
        $(this).removeClass('working');
    },
    select:function (event, ui) {
        var position = ui.item.id.split(";");
        var coord = new nokia.maps.geo.Coordinate(parseFloat(position[0]), parseFloat(position[1])) 

        $('#location_address').val(ui.item.label)
        $('#location_longitude')[0].value = coord.longitude;
        $('#location_latitude')[0].value = coord.latitude;
        map.setCenter(coord, "default");
        map.setZoomLevel(16); 
    },
    source:function (request, response) {
        var searchCenter = {
            latitude:52.516274,
            longitude:13.377678
        };
        nokia.places.search.manager.findPlaces({
            searchTerm:request.term,
            onComplete:function (data, status) {

                var nData = data.results.map(function (val, i) {
                    return {
                        value:val.place.name,
                        id:val.place.location.position.latitude + ";" + val.place.location.position.longitude
                    };
                })
                response(nData);

            },
            searchCenter:searchCenter,
            didYouMean:5
        });
    },
    minLength:2
});
于 2012-05-20T09:00:25.313 に答える