<html>
<head>
<meta name="description" content="demo of PR #5406 for maplibre-gl">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Maplibre globe padding bug fix demo </title>
<script src='https://content.partymap.com/maplibre_demo/dist/maplibre-gl.js'></script>
<link href='https://content.partymap.com/maplibre_demo/dist/maplibre-gl.css' rel='stylesheet' />
</head>
<body>
<div id='map' style='width: 400px; height: 300px;'></div>
<button onClick="zoom0()">zoom level 0</button>
<button onClick="zoom1()">zoom level 1</button>
<br/>
<button onClick="flyTopadding1()">fly to padding variant 1</button>
<button onClick="flyTopadding2()">fly to padding variant 2</button>
<br/>
<br/>
<button onClick="addCenterMarker()">add center marker</button>
<script>
var map
const position1 = [-44.5, 10]
const position2 = [-120.5, 80]
const center = []
fetch('https://demotiles.maplibre.org/style.json')
.then(response => response.json())
.then(data => {
map = new maplibregl.Map({
container: 'map',
style: {data, projection: {type: 'globe'}}, // stylesheet location
center: [-74.5, 40], // starting position [lng, lat]
zoom: 0, // starting zoom
showPadding: true,
projection: { type: 'globe' }
});
const marker1 = new maplibregl.Marker()
.setLngLat(position1)
.addTo(map);
const marker2 = new maplibregl.Marker()
.setLngLat(position2)
.addTo(map);
})
const zoom0 = () => {
map.setZoom(0)
}
const zoom1 = () => {
map.setZoom(1)
}
const flyTopadding1 = () => {
map.flyTo({ center: position1, padding: {left: 200, right: 0, top: 0, bottom: 0 }})
}
const flyTopadding2 = () => {
map.flyTo({center: position2,padding: {left: 0, right: 0, top: 200, bottom: 0 }})
}
const addCenterMarker = () => {
new maplibregl.Marker()
.setLngLat(map.getCenter())
.addTo(map);
}
</script>
</body>
</html>
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |