gpt4 book ai didi

javascript - jquery-ui-map 设置缩放级别

转载 作者:行者123 更新时间:2023-11-29 17:22:14 27 4
gpt4 key购买 nike

我有下面的代码来怎么映射。除了缩放参数外,一切正常。无论我为缩放设置什么,它总是显示相同的缩放级别。我能做什么?

$('#pagemap').live("pageshow", function() {

$('#map_canvas').gmap().bind('init', function(evt, map) {

$('#map_canvas').gmap('getCurrentPosition', function(position, status) {

if ( status === 'OK' ) {

var clientPosition = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);

$('#map_canvas').gmap('option', 'mapTypeId', google.maps.MapTypeId.SATELLITE);

$('#map_canvas').gmap('option', 'zoom', 13);

$('#map_canvas').gmap('addMarker', {'position': clientPosition, 'bounds': true});

}
});
});
});

最佳答案

您需要将标记的 'bounds' 选项更改为 false。

$('#map_canvas').gmap('addMarker', {'position': clientPosition, 'bounds': false});

If you set the property bounds to true the map will calculate the viewport and zoom automagically, overriding any zoom set in the contructor Blockquote

this是更多信息的链接

关于javascript - jquery-ui-map 设置缩放级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11804365/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com