是否可以通过 Telethon 向群组发送交互式地图?

Is there a possibility to send an interactive map to a group with Telethon?

我在 Ubuntu 18.04 上使用 telethon 1.23.0,我想向群组发送交互式 Google 地图(作为机器人)。我有可用的经度和纬度。

我在文档中搜索“地图”或“位置”等术语,也尝试过 SendLocation 或 send_location 方法,但没有成功。

我找到的唯一提示是将客户端的地理位置发送到机器人的方法(通过按下按钮),但这不是我要找的。

有什么包装电视节目的方法吗?

谢谢

安迪

感谢 Marcel 的提示,我终于找到了可行的解决方案:

from telethon.tl import types, functions
geoPoint = types.InputGeoPoint(gps_x, gps_y)
async with bot.action(channel, 'location') as action:
   await bot.send_file(channel, types.InputMediaGeoPoint(geoPoint))

我不知道这是否是最好的解决方案,但它对我有用:-)