-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #7517 - asymmetrical cameraForBounds #7518
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
dea7367
Fix #7517 - asymmetrical cameraForBounds
mike-marcacci 541265c
Add tests for asymmetrical cameraForBounds
mike-marcacci f7b3517
Added debug file for #7517
mike-marcacci abaf876
Fix lint errors in debug file
mike-marcacci 044d3d4
Make sure offset can be an object
mike-marcacci File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Mapbox GL JS debug page</title> | ||
<meta charset='utf-8'> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | ||
<link rel='stylesheet' href='/dist/mapbox-gl.css' /> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
html, | ||
body, | ||
#map { | ||
height: 100%; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id='map'></div> | ||
|
||
<script src='/dist/mapbox-gl-dev.js'></script> | ||
<script src='/debug/access_token_generated.js'></script> | ||
<script> | ||
const data = { | ||
'type': 'Feature', | ||
'geometry': { | ||
'type': 'Polygon', | ||
'coordinates': [ | ||
[ | ||
[-67.13734351262877, 45.137451890638886], | ||
[-66.96466, 44.8097], | ||
[-68.03252, 44.3252], | ||
[-69.06, 43.98], | ||
[-70.11617, 43.68405], | ||
[-70.64573401557249, 43.090083319667144], | ||
[-70.75102474636725, 43.08003225358635], | ||
[-70.79761105007827, 43.21973948828747], | ||
[-70.98176001655037, 43.36789581966826], | ||
[-70.94416541205806, 43.46633942318431], | ||
[-71.08482, 45.3052400000002], | ||
[-70.6600225491012, 45.46022288673396], | ||
[-70.30495378282376, 45.914794623389355], | ||
[-70.00014034695016, 46.69317088478567], | ||
[-69.23708614772835, 47.44777598732787], | ||
[-68.90478084987546, 47.184794623394396], | ||
[-68.23430497910454, 47.35462921812177], | ||
[-67.79035274928509, 47.066248887716995], | ||
[-67.79141211614706, 45.702585354182816], | ||
[-67.13734351262877, 45.137451890638886] | ||
] | ||
] | ||
} | ||
}; | ||
|
||
const maineBBox = [-71.08482, | ||
43.08003225358635, -66.96466, | ||
47.44777598732787 | ||
]; | ||
|
||
const maineBBoxPolygon = { | ||
"type": "Feature", | ||
"properties": {}, | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [ | ||
[ | ||
[-71.08482, 43.08003225358635], | ||
[-66.96466, 43.08003225358635], | ||
[-66.96466, 47.44777598732787], | ||
[-71.08482, 47.44777598732787], | ||
[-71.08482, 43.08003225358635] | ||
] | ||
] | ||
} | ||
}; | ||
|
||
const map = new mapboxgl.Map({ | ||
container: 'map', | ||
style: 'mapbox://styles/mapbox/streets-v9', | ||
center: [-68.13734351262877, 45.137451890638886], | ||
zoom: 5 | ||
}); | ||
|
||
map.on('load', function() { | ||
map.addLayer({ | ||
'id': 'maine', | ||
'type': 'fill', | ||
'source': { | ||
'type': 'geojson', | ||
'data': data | ||
}, | ||
'layout': {}, | ||
'paint': { | ||
'fill-color': '#088', | ||
'fill-opacity': 0.8 | ||
} | ||
}); | ||
map.addLayer({ | ||
'id': 'maine-bbox', | ||
'type': 'line', | ||
'source': { | ||
'type': 'geojson', | ||
'data': maineBBoxPolygon | ||
}, | ||
'layout': {}, | ||
'paint': { | ||
'line-color': 'red', | ||
'line-width': 2 | ||
} | ||
}); | ||
|
||
const camera = map.cameraForBounds(maineBBox, { | ||
padding: { | ||
top: 0, | ||
right: 20, | ||
bottom: 100, | ||
left: 20 | ||
}, | ||
offset: [100, 0] | ||
}); | ||
|
||
map.easeTo({ | ||
center: camera.center, | ||
zoom: camera.zoom, | ||
bearing: camera.bearing | ||
}); | ||
|
||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick: let's avoid temporary arrays here by using
new Point(x, y)
instead ofPoint.convert([x, y])
, and maybe declaring separatepaddingOffsetX
andpaddingOffsetY
variables since we don't really need it being in an array.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also,
options.offset
is ofPointLike
type so this code will break if you pass e.g.offset: new Point(10, 10)
instead ofoffset: [10, 10]
. So let's bring back theconst offset = Point.convert(options.offset)
line and use that.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great points! It looks like the previous implementation was also accessing array indices directly, so I added a test to make sure
PointLike
objects work.