在 Bing Maps v8 中禁用滚动缩放
Disable scroll zoom in Bing Maps v8
我需要在 Bing 地图 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
});
有什么办法,如何启用按钮和禁用缩放滚动?
这是上周刚刚添加到 V8 控件的实验分支中的。要使用它,您首先需要将“&branch=experimental”添加到地图脚本 URL。然后您可以添加 disableScrollWheelZoom: true
作为地图选项。这将在月底附近合并到主发布分支中。
这不再是实验性的;它已发布并记录在案。
disableScrollWheelZoom: true
在此处查看文档:MapOptions Object
我需要在 Bing 地图 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
});
有什么办法,如何启用按钮和禁用缩放滚动?
这是上周刚刚添加到 V8 控件的实验分支中的。要使用它,您首先需要将“&branch=experimental”添加到地图脚本 URL。然后您可以添加 disableScrollWheelZoom: true
作为地图选项。这将在月底附近合并到主发布分支中。
这不再是实验性的;它已发布并记录在案。
disableScrollWheelZoom: true
在此处查看文档:MapOptions Object