2

私は、Google Maps API v3 の場所 (オート コンプリート サービス付き) を使用して場所を検索するプロジェクトに取り組んでいます。

それはうまく機能し、多くの異なる国から検索することができますが、結果ペインにもカスタム結果 (「マイクの場所」など) を追加したいと思っていました (誰かが「マイク」と入力し始めた場合)。

自分の結果を Google マップの場所の検索結果に追加することは可能ですか、それとも jQuery オートコンプリート機能を使用して自分の結果を Google の結果に追加する必要がありますか?

4

1 に答える 1

3

おそらく少し遅れていますが、私が維持しているAngular JSのGoogleマップオートコンプリートコンポーネントにこれを自分で実装することを決定する前に、あなたの質問に出くわしました. うまくいけば、誰かが役に立ちます。

このコンポーネントを使用すると、AutocompleteService から返される結果にブレンドされるカスタム プレースの結果を指定できます。

これが実際の例です:

<!DOCTYPE html>
<html lang="en" ng-app="example">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Injecting Custom Place Predictions</title>

    <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
    <link rel="stylesheet" href="../src/autocomplete.css">

    <!-- Required dependencies -->
    <script src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
    <script src="lib/underscore/underscore.js"></script>
    <script src="lib/angular/angular.js"></script>
    <script src="lib/angular-touch/angular-touch.js"></script>

    <!-- Google Places Autocomplete directive -->
    <script src="../src/autocomplete.js"></script>

    <script>
        angular.module('example', ['google.places'])

                // Setup a basic controller
                .controller('MainCtrl', function ($scope) {
                    $scope.place = null;

                    $scope.myPlaces = [
                        toGooglePlacesResult({
                            label: 'International Airport - T1, Sydney, New South Wales',
                            address: {
                                street: 'International Airport - T1',
                                suburb: 'Sydney',
                                state: 'NSW'
                            },
                            location: { latitude: -33.936722, longitude: 151.164266 }
                        }),
                        toGooglePlacesResult({
                            label: 'Domestic Airport - T2, Sydney, New South Wales',
                            address: {
                                street: 'Domestic Airport - T2',
                                suburb: 'Sydney',
                                state: 'NSW'
                            },
                            location: { latitude: -33.933617, longitude: 151.181630 }
                        }),
                        toGooglePlacesResult({
                            label: 'Domestic Airport - T3, Sydney, New South Wales',
                            address: {
                                street: 'Domestic Airport - T3',
                                suburb: 'Sydney',
                                state: 'NSW'
                            },
                            location: { latitude: -33.933076, longitude: 151.181270 }
                        })
                    ];

                    function toGooglePlacesResult(config) {
                        return {
                            formatted_address: config.label,
                            address_components: [
                                {
                                    long_name: config.address.street,
                                    short_name : config.address.street,
                                    types: [ 'route' ]
                                },
                                {
                                    long_name: config.address.suburb,
                                    short_name: config.address.suburb,
                                    types: [ 'locality' ]
                                },
                                {
                                    long_name: config.address.state,
                                    short_name: config.address.state,
                                    types: [ 'administrative_area_level_1' ]
                                }
                            ],
                            geometry: {
                                location: {
                                    lat: function () { return config.location.latitude },
                                    lng: function () { return config.location.longitude }
                                }
                            }
                        };
                    }
                });
    </script>
</head>
<body ng-controller="MainCtrl">
<div class="container">
    <div class="row">
        <div class="col-md-12">
            <h1>Injecting Custom Place Predictions</h1>

            <form class="form">
                <input class="form-control" g-places-autocomplete custom-places="myPlaces" ng-model="place"/>
            </form>

            <h5>Result:</h5>
            <pre>{{place | json}}</pre>
        </div>
    </div>
</div>
</body>
</html>

重要な部分は、カスタムの場所の結果が実際の場所の結果のように最小限に見えることを確認してから、custom-places属性を使用して結果をディレクティブに接続することです。

于 2014-08-21T05:45:03.280 に答える