From ddb26e3fc7e8c3cc2a68dc67d0022176f2cce79e Mon Sep 17 00:00:00 2001 From: jason5ng32 Date: Sat, 7 Dec 2024 12:01:37 +0800 Subject: [PATCH] Change BingMap to GoogleMap --- api/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/map.js b/api/map.js index 5056e20c..1d32e68d 100644 --- a/api/map.js +++ b/api/map.js @@ -60,7 +60,7 @@ export default (req, res) => { const mapSize = '500x400'; const fmt = 'jpg'; const scale = 2; - const zoom = 2; + const zoom = 3; const apiKeys = (process.env.GOOGLE_MAP_API_KEY || '').split(','); const apiKey = apiKeys[Math.floor(Math.random() * apiKeys.length)];