2

我正在开发一个项目,我正在使用 Google Maps API v3 地点(使用自动完成服务)搜索位置。

它运行良好,允许您从许多不同的国家/地区进行搜索,我曾希望在结果窗格中添加一些自定义结果(例如“迈克位置”)(如果有人开始输入“迈克”)。

是否可以将我自己的结果添加到 Google 地图位置搜索结果中,或者我应该使用一些 jQuery 自动完成功能并尝试使用我自己的添加 Google 结果?

4

1 回答 1

3

对你来说可能有点晚了,但我在决定自己在我维护的 Angular JS 的谷歌地图自动完成组件中实现这个之前偶然发现了你的问题。希望有人觉得它有帮助。

使用该组件,您可以指定自定义位置结果,这些结果将混合到从 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 回答