更改谷歌地图选项jquery,center,zoom

时间:2014-01-04 19:06:22

标签: javascript jquery html google-maps

尝试更改当前地图的一些选项 尝试了几个选项:

声明:

$("#map").width("600px").height("350px").gmap3();

尝试:

//not working
$("#map").gmap3({action: 'setOptions', args:[{zoom:7}]});
//not working
$("#map").gmap3("get", "map").setCenter({
                      getlatlng:{
                        address:  $inputAddress,
                        callback: function(results){
                          if ( !results ) return;
                          $(this).gmap3({
                            marker:{
                              latLng:results[0].geometry.location

                            }
                          });
                        }
                      }
                    });
//not working
$('#map_canvas').gmap('get','map').setOptions({'center':origin});
//not working
$('#map').gmap3.panTo(new google.maps.LatLng('0.00','0.00'));

有没有关于jquery gmaps的体面文档?官方的内容不包括更改选项等基本内容 通过js使用gmaps而不是本机谷歌地图API是否有任何优势? 谢谢

1 个答案:

答案 0 :(得分:0)

这将返回gmap3 V5中的google.maps.Map - 实例:

$('#map').gmap3('get')

设置选项使用Maps-API V3的setOptions - 方法,例如:

$('#map').gmap3('get').setOptions({center:new google.maps.LatLng(1,1),
                                   zoom:  5});