我正试图禁用Map的所有移动,除了旋转和缩放到一个设定点。但在触摸设备上,我仍然可以用两个手指从设定点移动“相机”,它在非触摸设备上工作得很好。
这就是我目前所拥有的,那还没有完全工作我仍然可以用两个手指在触摸设备上移动相机中心点。我使用的是离子/Angular 的 typescript 。
this.map = new mapboxgl.Map({
container: 'game_map',
style: 'mapbox://styles/mapbox/light-v10',
center: [coords],
zoom: 20,
touchZoomRotate: {around: 'center'},
scrollZoom: {around: 'center'},
pitch: 60,
bearing: -60,
antialias: true,
attributionControl: false,
maxZoom: 22,
minZoom: 17
});
1条答案
按热度按时间ozxc1zmp1#
您可以通过添加以下内容来禁用用户平移:
这个初始化语句。更多信息.