【问题标题】:Angular.js googlemap info window button click is not passing the value?Angular.js googlemap 信息窗口按钮单击未传递值?
【发布时间】:2016-02-23 18:11:46
【问题描述】:

在这里,我展示了一些带有信息窗口的城市,一切正常,但在该信息窗口中,我有一个按钮。如果我单击该按钮(获取),它应该将值传递给函数。任何人都可以帮助我

现在,当我单击该按钮时,控制台中没有显示任何内容,我的演示 demo

angular.module('mapsApp', [])
        .controller('MapCtrl', ['$scope', '$http', '$location', '$window', '$compile', function($scope, $http, $location, $window, $compile) {
            var cities = [{
                id: '02jdjd',
                city: 'Toronto',
                desc: 'World Largest city,This city is live,This is the second best city in the world',
				lat: 43.7000,
                long: -79.4000,
				icon:'http://labs.google.com/ridefinder/images/mm_20_purple.png'
            }, {
                id: '02jdjdsss',
                city: 'New York',
				desc: 'coastal area,This city is aiiiiite, ',
                lat: 40.6700,
                long: -73.9400,
				icon:'http://labs.google.com/ridefinder/images/mm_20_red.png'
            }, {
                id: '02jdjdsssws',
                city: 'Chicago',
				desc: 'This is the second best city in the world',
                lat: 41.8819,
                long: -87.6278,
				icon:'http://labs.google.com/ridefinder/images/mm_20_green.png'
            }, {
                id: '02jdjdsssz',
                city: 'Los Angeles',
				desc: 'This city is live,coastal area,incredible city',
                lat: 34.0500,
                long: -118.2500,
				icon:'http://labs.google.com/ridefinder/images/mm_20_blue.png'
            }, {
                id: '02jdjdssq',
                city: 'Las Vegas',
				desc: 'the most populous city,This city is live,This city is aiiiiite',
                lat: 36.0800,
                long: -115.1522,
				icon:'http://labs.google.com/ridefinder/images/mm_20_yellow.png'
            }];

            var mapOptions = {
                zoom: 4,
                center: new google.maps.LatLng(40.0000, -98.0000),
                mapTypeId: google.maps.MapTypeId.TERRAIN
            }

            $scope.map = new google.maps.Map(document.getElementById('map'), mapOptions);

            $scope.markers = [];

            var infoWindow = new google.maps.InfoWindow();

            var createMarker = function(info) {

                var marker = new google.maps.Marker({
                    map: $scope.map,
                    position: new google.maps.LatLng(info.lat, info.long),
                    title: info.city,
					icon: info.icon
                });
                marker.content = '<div><h2>'+marker.title+'</h2><input type="button" value="get" ng-click="get(\'' + info.id + '\')"/>' + '<div class="infoWindowContent">' + info.desc + '</div><div class="infoWindowContent">' + info.city + '</div></div>';
                // marker.content = "<div><h2>" + marker.title + "</h2><input type='button' value='get' ng-click='get(" + info.id + ")'/>" + "<div class='infoWindowContent'>" + info.desc + "</div><div class='infoWindowContent'>" + info.city + "</div></div>";
                google.maps.event.addListener(
                    marker,
                    'click', (function(marker, $scope) {
                        return function() {
                            var compiled = $compile(marker.content)($scope);
                            $scope.$apply();
                            infoWindow.setContent(compiled[0]);
                            infoWindow.open($scope.map, marker);
                        };
                    })(marker, $scope)
                );

                $scope.markers.push(marker);
            }
            $scope.get = function(city) {
                console.log(city);
                //alert("from $scope.get id : "+id); 
            }
            for (i = 0; i < cities.length; i++) {
                createMarker(cities[i]);
            }

            $scope.openInfoWindow = function(e, selectedMarker) {
                e.preventDefault();
                google.maps.event.trigger(selectedMarker, 'click');
            }




            $scope.clearMarkers = function() {
                for (var i = 0; i < $scope.markers.length; i++) {
                    $scope.markers[i].setMap(null);
                }
                $scope.markers.length = 0;
            }



            $scope.filterMarkers = function() {
                //1.select filtered cities
                var filteredCities;
                var cityDesc = $scope.data.singleSelect;
                if (cityDesc == '0') {
                    filteredCities = cities;
                } else {
                    filteredCities = cities.filter(function(c) {
                        if (c.desc == cityDesc)
                            return c;
                    });
                }
                //2.update markers on map
                $scope.clearMarkers();
                for (i = 0; i < filteredCities.length; i++) {
                    createMarker(filteredCities[i]);
                }
            }

        }]);
    //]]>
#map {
        height: 420px;
        width: 600px;
    }
    
    .infoWindowContent {
        font-size: 14px !important;
        border-top: 1px solid #ccc;
        padding-top: 10px;
    }
    
    h2 {
        margin-bottom: 0;
        margin-top: 0;
    }
<script src="https://maps.googleapis.com/maps/api/js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<div ng-app="mapsApp" ng-controller="MapCtrl">
        <div id="map"></div>
        <br>
        <br>
        <label>Filter Marker </label>
        <br>
        <select name="singleSelect" ng-model="data.singleSelect" ng-change="filterMarkers()">
            <option value="0">all</option>
            <option value="This is the best city in the world">This is the best city in the world</option>
            <option value="This city is aiiiiite">This city is aiiiiite</option>
            <option value="the most populous city">the most populous city</option>
            <option value="This city is live">This city is live</option>
			<option value="coastal area">coastal area</option>
			<option value="World Largest city">World Largest city</option>
			<option value="incredible city">incredible city</option>
			
        </select>
        <br>
        <div id="class" ng-repeat="marker in markers | orderBy : 'title'">
            <a href="#" ng-click="openInfoWindow($event, marker)">{{marker.title}}</a>
        </div>
    </div>

【问题讨论】:

  • 这种方法对每个标记重复使用相同的 infoWindow,这意味着不能同时打开多个标记。除此之外,尝试在infoWindow中设置初始内容var infoWindow = new google.maps.InfoWindow({content:''});
  • 同时我不想打开多个信息窗口。请你帮我传递ID
  • 将 id 添加为 data-attribute 并使用 get 将其从元素中删除,例如 &lt;input type="button" value="get" data-marker-id="'+info.id+'" ng-click="get(this)" /&gt; 函数 get 可能类似于 function get(el){ var id = el.getAttribute('data-marker-id'); /*..*/}
  • 不,它不工作。如果我点击它没有传递值
  • 然后使用$scope 而不是this 我不使用角度,但我认为这是它需要的。它通过$scope 对象管理范围,因此使用它来传递参数

标签: javascript jquery angularjs google-maps google-maps-api-3


【解决方案1】:

我猜应该是这个

小解释:问题是,您试图从自定义 html 调用 angular 函数,该函数从未链接到 angular ,因此您必须先编译它。

基本上$compile(marker.content)($scope);

<html>

<head>
    <script src="https://maps.googleapis.com/maps/api/js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
    <style>
    #map {
        height: 420px;
        width: 600px;
    }
    
    .infoWindowContent {
        font-size: 14px !important;
        border-top: 1px solid #ccc;
        padding-top: 10px;
    }
    
    h2 {
        margin-bottom: 0;
        margin-top: 0;
    }
    </style>
    <script>
    //Angular App Module and Controller
    angular.module('mapsApp', [])
        .controller('MapCtrl', ['$scope', '$http', '$location', '$window', '$compile', function($scope, $http, $location, $window, $compile) {
            var cities = [{
                id: '1',
                city: 'Toronto',
                desc: 'This is the best city in the world!',
                lat: 43.7000,
                long: -79.4000
            }, {
                id: '2',
                city: 'New York',
                desc: 'This city is aiiiiite!',
                lat: 40.6700,
                long: -73.9400
            }, {
                id: '3',
                city: 'Chicago',
                desc: 'This is the second best city in the world!',
                lat: 41.8819,
                long: -87.6278
            }, {
                id: '4',
                city: 'Los Angeles',
                desc: 'This city is live!',
                lat: 34.0500,
                long: -118.2500
            }, {
                id: '5',
                city: 'Las Vegas',
                desc: 'This city is live!',
                lat: 36.0800,
                long: -115.1522
            }];

            var mapOptions = {
                zoom: 4,
                center: new google.maps.LatLng(40.0000, -98.0000),
                mapTypeId: google.maps.MapTypeId.TERRAIN
            }

            $scope.map = new google.maps.Map(document.getElementById('map'), mapOptions);

            $scope.markers = [];

            var infoWindow = new google.maps.InfoWindow();

            var createMarker = function(info) {

                var marker = new google.maps.Marker({
                    map: $scope.map,
                    position: new google.maps.LatLng(info.lat, info.long),
                    title: info.city
                });
                marker.content = '<div><h2>'+marker.title+'</h2><input type="button" value="get" ng-click="get(' + info.id + ')"/>' + '<div class="infoWindowContent">' + info.desc + '</div><div class="infoWindowContent">' + info.city + '</div></div>';

                google.maps.event.addListener(
                    marker,
                    'click', (function(marker, $scope) {
                        return function() {
                            var compiled = $compile(marker.content)($scope);
                            $scope.$apply();
                            infoWindow.setContent(compiled[0]);
                            infoWindow.open($scope.map, marker);
                        };
                    })(marker, $scope)
                );

                $scope.markers.push(marker);
            }
            $scope.get = function(id) {
                console.log(id);
                //alert("from $scope.get id : "+id); 
            }
            for (i = 0; i < cities.length; i++) {
                createMarker(cities[i]);
            }

            $scope.openInfoWindow = function(e, selectedMarker) {
                e.preventDefault();
                google.maps.event.trigger(selectedMarker, 'click');
            }




            $scope.clearMarkers = function() {
                for (var i = 0; i < $scope.markers.length; i++) {
                    $scope.markers[i].setMap(null);
                }
                $scope.markers.length = 0;
            }



            $scope.filterMarkers = function() {
                //1.select filtered cities
                var filteredCities;
                var cityDesc = $scope.data.singleSelect;
                if (cityDesc == '0') {
                    filteredCities = cities;
                } else {
                    filteredCities = cities.filter(function(c) {
                        if (c.desc == cityDesc)
                            return c;
                    });
                }
                //2.update markers on map
                $scope.clearMarkers();
                for (i = 0; i < filteredCities.length; i++) {
                    createMarker(filteredCities[i]);
                }
            }

        }]);
    //]]>
    </script>
</head>

<body>
    <div ng-app="mapsApp" ng-controller="MapCtrl">
        <div id="map"></div>
        <br>
        <br>
        <label>Filter Marker </label>
        <br>
        <select name="singleSelect" ng-model="data.singleSelect" ng-change="filterMarkers()">
            <option value="0">all</option>
            <option value="This is the best city in the world!">This is the best city in the world!</option>
            <option value="This city is aiiiiite">This city is aiiiiite</option>
            <option value="This is the second best city in the world!">This is the second best city in the world!</option>
            <option value="This city is live!">This city is live!</option>
        </select>
        <br>
        <div id="class" ng-repeat="marker in markers | orderBy : 'title'">
            <a href="#" ng-click="openInfoWindow($event, marker)">{{marker.title}}</a>
        </div>
    </div>
</body>

</html>

【讨论】:

  • 如何在信息窗口中添加更多详细信息?
  • 请参考更新的答案,实际上你必须为它创建自定义指令,这不是最好的方法
  • 我想知道一件事是否可以设计弹出窗口?对我来说,如果我单击标记而不是信息窗口,onw div 应该带有像滑块一样的左箭头和右箭头是否可以设计?
  • 我传递的不是那个id desc .我收到错误像这样的错误:[$parse:syntax] errors.angularjs.org/1.3.14/$parse/…) at Error (native) at
  • 你使用错误的“和”的第一件事,它确实有效marker.content = "&lt;div&gt;&lt;h2&gt;" + marker.title + "&lt;/h2&gt;&lt;input type='button' value='get' ng-click='get(" + info.id + ")'/&gt;" + "&lt;div class='infoWindowContent'&gt;" + info.desc + "&lt;/div&gt;&lt;div class='infoWindowContent'&gt;" + info.city + "&lt;/div&gt;&lt;/div&gt;";
猜你喜欢
  • 2013-10-06
  • 1970-01-01
  • 1970-01-01
  • 2018-10-19
  • 2016-08-26
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多