添加标记后的jQuery GMAP3自动中心

时间:2012-12-06 09:51:49

标签: jquery-gmap3

我有一些国家的选择元素,当“更改”被触发时,我调用函数来获取坐标然后添加标记。没关系,但是当添加标记时,标记不会居中。

我使用的是最新版本5.0b。

// get coords
$gmap.gmap3({
    getlatlng: {
        address: complete_address,
        callback: function(result){
            if(result) {
                var i = 0;
                $.each(result[0].geometry.location, function(index, value) {
                    if(i == 0) { lat = value; }
                    if(i == 1) { lng = value; }
                    i++;
                });

                // add marker
                $gmap.gmap3({
                    marker: {
                        address: complete_address,
                        options: {
                            draggable: false,
                            animation: google.maps.Animation.DROP
                        }
                    },
                    map:{
                        options:{
                            center:[lat, lng],
                            zoom: zoom
                        }
                    }
                });

            }
        }
    }
});

我进入控制台:“未捕获错误:错误值:51.919438,19.14513599999998

任何提示都会感激不尽。

此致

1 个答案:

答案 0 :(得分:1)

刚刚找到,

center: new google.maps.LatLng(lat, lng),