Files
test_maplibre/style/style.json
T
2026-07-08 16:28:33 +08:00

33 lines
572 B
JSON

{
"version": 8,
"name": "local-google-raster",
"sources": {
"google": {
"type": "raster",
"tiles": [
"http://127.0.0.1:18080/tiles/{z}/{x}/{y}.png"
],
"tileSize": 256,
"minzoom": 0,
"maxzoom": 20,
"scheme": "xyz"
}
},
"layers": [
{
"id": "background",
"type": "background",
"paint": {
"background-color": "#000000"
}
},
{
"id": "google",
"type": "raster",
"source": "google",
"paint": {
"raster-opacity": 1.0
}
}
]
}