const express = require("express"); const router = express.Router(); const tempapi = require('../../router_handler/weather/temperature.js'); //模拟天气温度瓦片效果 router.get('/:z/:x/:y.png', tempapi.tempapixyz); module.exports = router;