我的以下代码工作正常,但我无法添加缩放级别。根据文档,它应该可以使用,'option', 'zoom', 7
但这会产生错误:"$("#map_canvas").gmap("option", "zoom", 7).bind is not a function"
工作代码,无缩放,已编辑。缩放始终为 1。
$("#map_trigger").click(function(){
var prop_id = $("#map_canvas").attr("rel");
$('#map_canvas').gmap({'zoom':6}).bind('init', function(evt, map) {
$.getJSON( basepath+'properties/get_gps_coords/'+prop_id, function(data) {
$.each( data.markers, function(i, m) {
lat = m.latitude;
longitude = m.longitude;
$('#map_canvas').gmap(
'addMarker', { 'position': new google.maps.LatLng(lat, m.longitude), 'bounds':true }
);
});
});
});
});
如何向此代码段添加缩放级别?