PMTiles는 웹 지도를 위한 서버리스 벡터 타일 아카이브입니다. 하나의 파일에 모든 타일이 담겨 HTTP 범위 요청으로 접근할 수 있습니다. 타일 서버 없이 S3, CloudFlare R2, GitHub Pages에서 호스팅하기에 이상적입니다.
주요 기능

PMTiles 형식 소개
PMTiles is an archive format in which a whole set of tiles sits in one file with an internal index. The browser does not download it as a whole: it requests the pieces it needs with HTTP range requests, which any static hosting can serve — S3, Cloudflare R2, GitHub Pages, plain Nginx.
Hence the main benefit: the map works without a tile server. There is no service to set up, watch over and pay for — the file simply sits next to the site. For a prototype, an internal dashboard or a project that has to outlive the shutdown of a third-party map service, that makes life noticeably easier.
Inside the archive are MVT vector tiles, that is geometry with attributes, and the appearance is set by a style on the client side. The export builds the pyramid up to zoom 12: beyond that encoding the tiles becomes too expensive, and if you asked for more, we honestly report the limitation and suggest MBTiles. For the same reason the exporter rejects very dense areas straight away rather than after a long wait: a short, clear refusal is better than a stuck job.
PMTiles 파일을 여는 프로그램
다음 프로그램과 애플리케이션으로 OSM2CDR에서 내보낸 PMTiles(.pmtiles) 파일을 열고 편집하고 작업할 수 있습니다:
Format specifications
- Open standard
- 2D only
- Lossless (no quality loss)
- Stores feature attributes
- Output: 1 file
- PMTiles single-file vector tile archive. Serverless deployment: drop on S3/CloudFront, range-request playback in MapLibre.
PMTiles 지도 사용자
PMTiles 내보내기 방법
내보낸 뒤 여는 방법
- PMTiles Viewer (pmtiles.io) — drag the file into the browser and see the contents right away: bounds, zooms, layers inside the tiles. The file is not uploaded anywhere in the process.
- MapLibre GL JS — add the pmtiles library, register the protocol and point at a source of the form pmtiles://https://your-domain/map.pmtiles, then describe the layers in style.json.
- Static hosting (S3, Cloudflare R2, GitHub Pages, Nginx) — put the file next to the site; make sure the server serves range requests (Accept-Ranges) and CORS headers if the domain is different.
- go-pmtiles — a command-line utility: pmtiles show displays the metadata and zooms, pmtiles convert turns the archive into MBTiles and back.
- QGIS — recent versions open PMTiles as a vector tile source through GDAL; convenient for a quick check that the data is in place.
PMTiles 형식의 인기 지도
PMTiles 지도 내보내기 받기
OpenStreetMap에서 전문가용 PMTiles 지도를 다운로드하세요. 즉시 생성, 모든 영역 지원.
자주 묻는 질문
다른 형식과 비교
관련 형식
함께 자주 내보내는 형식
Related Articles
PMTiles — Single-File Cloud Tile Archive for Serverless Maps (Protomaps)
PMTiles is a single-file Protomaps container for vector/raster tiles with HTTP range request reading: serverless map hos
tutorialWeb Mapping with Leaflet and MapLibre GL JS: Developer Guide
Building interactive web maps: Leaflet vs MapLibre GL JS, tile layers, GeoJSON, custom styles, PMTiles for offline.
guidePMTiles: Cloud-Native Tile Format for Modern Maps
What is PMTiles, how it differs from MBTiles, usage with MapLibre GL JS and Leaflet. A guide to cloud-native maps.