我需要通过Bing Maps API v8中的滚动禁用缩放,但保留缩放按钮。
map = new Microsoft.Maps.Map(mapPlaceholderElement,
{
credentials: options.credentials,
disableZooming: true, //If this is true, the showZoomButtons is not applied
mapTypeId: Microsoft.Maps.MapTypeId.road,
navigationBarMode: Microsoft.Maps.NavigationBarMode.compact,
showZoomButtons: true
});
有什么办法,如何启用按钮并禁用缩放滚动?
答案 0 :(得分:5)
上周刚刚将其添加到V8对照的实验分支中。要使用此功能,首先需要将“& branch = experimental”添加到地图脚本URL。然后,您可以添加disableScrollWheelZoom: true
作为地图选项。这将在月底附近合并到主要版本分支。
答案 1 :(得分:2)
这不再是实验性的;它已发布并记录。
disableScrollWheelZoom: true
在此处查看文档:{{3}}