I am using Mapbox_ios_sdk library
Can the scroll range be limited based on a specific location on the map?
For example x-100m to x+100m & y-100m to y + 100m (diameter 200m)
I am using Mapbox_ios_sdk library
Can the scroll range be limited based on a specific location on the map?
For example x-100m to x+100m & y-100m to y + 100m (diameter 200m)
I think what you’re looking for is maxBounds
and setMaxBounds
mapboxgl.accessToken = '<your access token here>';
// Set bounds to New York, New York
var bounds = [
[-74.04728500751165, 40.68392799015035], // Southwest coordinates
[-73.91058699000139, 40.87764500765852] // Northeast coordinates
];
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v11',
center: [-73.9978, 40.7209],
zoom: 13,
maxBounds: bounds // Sets bounds as max
});
You have the full sample here