Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Small world map?

I am using leaflet.js to render tiles from openstreetmap. I have it working fine. I would like to display the entire world map (zoom level 0). This also works fine. My problem is that on zoom level 0 the world is kind of big. Is it possible to render the world map in a div 100px wide, for example?

like image 739
a2f0 Avatar asked Sep 01 '26 02:09

a2f0


1 Answers

if you want to change the width or height of the div containing the map, use CSS, like this:

<style>
#map{
width:100px;
height:300px;
}
</style>
like image 147
maRtin Avatar answered Sep 04 '26 20:09

maRtin