You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have map-machine installed on Ubuntu 22.04.4 LTS
I have used it to generate tiles for a zone I want to display in a web page with this command: map-machine tile -b 12.4772,41.8982,12.4779,41.8999 -z 18-20
and then started
map-machine server --port 8081 --cache /absolute/path/to/cache
the server starts without reporting any error, but when I load in firefox the sampe test page below (generated starting from this example: https://leafletjs.com/examples/quick-start/ ) it's totally blank. What am I missing, or doing wrong? The server reports no error.
Update: with the code below the tiles appear, but the most tiles are white squares, and tiles that should be adjacent are not in the correct relative position. Eg, the two non-blnak tiles in the screenshot should be one on top of the other, NOT side by side:
Greetings,
I have map-machine installed on Ubuntu 22.04.4 LTS
I have used it to generate tiles for a zone I want to display in a web page with this command:
map-machine tile -b 12.4772,41.8982,12.4779,41.8999 -z 18-20
and then started
map-machine server --port 8081 --cache /absolute/path/to/cache
the server starts without reporting any error, but when I load in firefox the sampe test page below (generated starting from this example: https://leafletjs.com/examples/quick-start/ ) it's totally blank. What am I missing, or doing wrong? The server reports no error.
Thanks,
`
Testing Map Machine
<script>var map = L.map('mapid').setView([48.8555, 2.3655], 18);
L.tileLayer('http://127.0.0.1:8080/tiles/{z}/{x}/{y}', {
`maxZoom: 19,
attribution: 'Map data © ' +
'OpenStreetMap ' +
'contributors, imagery © ' +
'Map Machine',
id: 'map_machine',
tileSize: 256,
zoomOffset: 0
}).addTo(map);
</script>
The text was updated successfully, but these errors were encountered: