Saturday, January 18, 2025
API KEY
HomeGoogle Apps ScriptLocation แจ้งเตือน Line Notify เป็น Image ด้วย Google App Script

Location แจ้งเตือน Line Notify เป็น Image ด้วย Google App Script

โค้ด ส่ง Location แจ้งเตือน Line Notify เป็น Image ด้วย Google App Script

function replyLocationImage(e) {
  var locationName = "สถานที่ของคุณ";
  var message = "ที่อยู่ของคุณ";
  var latitude = "14.9915679"; // ละติจูดของตำแหน่ง
  var longitude = "102.0858484"; // ลองจิจูดของตำแหน่ง
  var token = "bOI3cnCvYp7Chb5c9PJWoQC2LpJBnuEJ1nsjs5ZuRlB"
  // รูปภาพที่จะแสดง (ในตัวอย่างนี้จะใช้ Google Static Maps API)
  var imageUrl = `https://maps.googleapis.com/maps/api/staticmap?center=${latitude},${longitude}&zoom=15&size=1200x900&maptype=roadmap&markers=color:red%7C${latitude},${longitude}&key=APIKEY`;

  const response = UrlFetchApp.fetch(imageUrl);
  const image = response.getBlob();
  sendLineFile(message, token, '', '', image)
}

ตัวอย่างผลลัพธ์

Screenshot
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
คอร์สเรียนออนไลน์

Most Popular

Recent Comments