locapos(){//定位方法
if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(function(position) {
              var pos = {
                lat: position.coords.latitude,
                lng: position.coords.longitude
              };
            var latLng = new google.maps.LatLng(aa[1],
               aa[0]);
              var infoWindow = new google.maps.InfoWindow({
                        content: "当前位置:<br/>经度:" + pos.lat + "<br/>维度:" + pos.lng
                        //提示窗体内的提示信息
                    });
              infoWindow.setPosition(latLng);

               _this.mark = new google.maps.Marker({
                        position: latLng,    //将前面设定的坐标标注出来
                        icon:image,
                        animation: google.maps.Animation.BOUNCE,//添加动画效果
                        map: map //将该标注设置在刚才创建的map中
                    });
        //             //标注提示窗口

        //             //打开提示窗口
                    infoWindow.open(map, mark);

            }, function() {
              handleLocationError(true, infoWindow, map.getCenter());
            });
          } else {
            // Browser doesn't support Geolocation
            handleLocationError(false, infoWindow, map.getCenter());
          }

methods中定义一个locapos()定位方法,其中想在内部方法中使用this调用data()中定义的marker一致不成功,提示未定义,经过不懈努力终于找到解决方法,增加一句话就OK了!

var _this = this;

如此简单,豁然开朗!

Logo

前往低代码交流专区

更多推荐