வலை பயன்பாடுகளுக்காக வரைபடத்தை ஒரு டைல் பிரமிடாக (PNG/JPEG) ஏற்றுமதி செய்யுங்கள். Z/X/Y அமைப்பு Leaflet, OpenLayers, Mapbox GL மற்றும் எந்தவொரு டைல் சர்வருடனும் இணக்கமானது.
முக்கிய அம்சங்கள்

Map Tiles வடிவம் பற்றி
XYZ tiles (slippy map) are how almost all web maps are built: the image is cut into 256 × 256 pixel squares, and the address of a square is set by three numbers — zoom, column and row. The client loads only what falls into the window, so the map pans smoothly no matter how much data there is.
This export is taken when the map has to live on your own server: an offline application, a kiosk or a display board with no internet, an internal portal that external tile services are not allowed into. Unpack the archive into a web server directory and you have your own source, the one Leaflet, OpenLayers and MapLibre connect to.
The archive holds a z/x/y.png pyramid in the Web Mercator projection (EPSG:3857) and a metadata.json file with the set name, format, bounds and center. By default zooms 10 through 16 are rendered — from the whole city down to individual buildings; the tile format switches to JPEG if transparency is not needed and size matters more.
Map Tiles கோப்புகளை எந்த நிரல் திறக்கிறது
OSM2CDR இலிருந்து ஏற்றுமதி செய்யப்பட்ட Map Tiles (XYZ / Slippy Map) (.zip) கோப்புகளைப் பின்வரும் நிரல்களும் பயன்பாடுகளும் திறக்கலாம், திருத்தலாம் மற்றும் அவற்றுடன் வேலை செய்யலாம்:
Format specifications
- Open standard
- 2D only
- Lossless (no quality loss)
- No attributes
- Output: 256 files in archive
- ZIP archive of XYZ tile pyramid (z/x/y.png). Slippy-map convention. Drop on any web server for OpenLayers/Leaflet.
Map Tiles வரைபடங்களை யார் பயன்படுத்துகிறார்கள்
Map Tiles ஐ எவ்வாறு ஏற்றுமதி செய்வது
ஏற்றுமதிக்குப் பிறகு எப்படித் திறப்பது
- Any web server — unpack the archive into the site directory, and the path to the tiles comes out like /tiles/{z}/{x}/{y}.png.
- Leaflet — L.tileLayer('tiles/{z}/{x}/{y}.png', {minZoom: 10, maxZoom: 16}).addTo(map); take the bounds from metadata.json.
- OpenLayers and MapLibre — an XYZ source with the same template; in MapLibre that is a raster source with a tiles field and a tile size of 256.
- Offline and mobile applications — the directory goes into the build resources; if one file is more convenient than thousands of pictures, take MBTiles or PMTiles.
- Checking — open any file like 12/2476/1284.png by hand: if the picture is there, the set is laid out correctly.
Map Tiles இல் பிரபலமான வரைபடங்கள்
Map Tiles (XYZ / Slippy Map) வரைபட ஏற்றுமதிகளைப் பெறுங்கள்
OpenStreetMap இலிருந்து தொழில்முறை Map Tiles வரைபடங்களைப் பதிவிறக்கம் செய்யுங்கள். உடனடி உருவாக்கம், எந்தப் பகுதியும்.
அடிக்கடி கேட்கப்படும் கேள்விகள்
பிற வடிவங்களுடன் ஒப்பிடுங்கள்
தொடர்புடைய வடிவங்கள்
அடிக்கடி ஒன்றாக ஏற்றுமதி செய்யப்படுகிறது
Related Articles
Web 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.