[GIS] QGIS Zoom Level with OpenStreetMap Data

openstreetmapqgis

how can I increase the zoom level in QGIS for OpenStreetMap (OSM) data? I am new to GIS therefore I may have the terminology wrong. I have added an OSM layer using the OpenLayers plugin. Everything is working fine except once I zoom in too much, the layer disappears. I need to be able to zoom very close. How can I achieve this? I have tried importing shapefiles instead and it does let me zoom in however, it does not look the same as the openstreetmaps.com website. Is there a way to basically copy this data and be able to zoom in very close and have the same style (meaning the colors, width of roads, buildings, etc.)? 1:1 scale would be great!

Best Answer

The Openlayers plugin is restricted to a scale of 1:2500

Alternatively, you can use the TileLayerPlugin. It works with a tab-delimited text file for the available datasources.

For Openstreetmap tiles, the additional entry is:

Openstreetmap   OSM http://c.tile.openstreetmap.org/{z}/{x}/{y}.png 1   0   19  -180    -85.0   180.0   85.0

Keep in mind that the delimiters have to be tabs, not blanks.

Related Question