如何使用jquery-ui-map重新定位地图

时间:2012-03-05 07:56:00

标签: javascript jquery google-maps jquery-ui-map

使用jquery-ui-map。

我通过JSON加载数据,带有一些标记和纬度/经度 地图的新中心(位置查找器应用程序)。

var origin = new google.maps.LatLng(data.origin.latitude, data.origin.longitude)

// adding the marker for the new origin works
$('#map_canvas').gmap('addMarker', {'position': origin});

// does not work
$('#map_canvas').gmap('center', '49, 7');

// does not work
$('#map_canvas').gmap('center', origin);

// does not work
$('#map_canvas').gmap('center', {'position': origin});

所有三个中心呼叫都失败了:

Uncaught TypeError: Cannot call method 'apply' of undefined
$.a.$.fn.(anonymous function)jquery.ui.map.js:46
b.extend.eachjquery.js:35
b.fn.b.eachjquery.js:28
$.a.$.fn.(anonymous function)jquery.ui.map.js:40
(anonymous function)@@geosearch:477
c.extend.handleSuccessjquery.js:144
c.extend.ajax.w.onreadystatechange

这里的规范方式是什么?

4 个答案:

答案 0 :(得分:6)

使用此:

$('#map_canvas').gmap('get','map').setOptions({'center':origin});

另见此链接: http://code.google.com/apis/maps/documentation/javascript/reference.html#MapOptions

答案 1 :(得分:4)

有两种方法,要么获取地图并使用本地设置器:

var map = $("#map_canvas").gmap("get", "map");
map.setCenter(origin);

或者您使用插件选项setter

$("#map_canvas").gmap("option", "center", origin);

答案 2 :(得分:1)

使用panTo,您可以重新定位地图

jQuery('#map_canvas').gmap.panTo(new google.maps.LatLng('0.00','0.00'));

答案 3 :(得分:0)

您必须在位置居中之前使用'option' ...

...如下面的示例(我使用按钮点击事件和其他一些选项):

$("#button").click( function(){
var latLng = new google.maps.LatLng(data.origin.latitude, data.origin.longitude);
$('#map_canvas').gmap('option', 'center', latLng);
$('#map_canvas').gmap('option', 'zoom', 7);     
$('#map_canvas').gmap('addMarker', {position: latLng,bounds: false});   
});
希望能帮到你。