Bot向Telegram用户发送交互式谷歌地图

时间:2017-03-29 17:21:38

标签: telegram-bot

机器人想要将具有特定lat / lng点的地图发送给Telegram用户。单击该地图时,应将用户引导至交互式地图版本。

我看到一个机器人(SberbankBot)可以做到这一点,但我需要知道究竟是怎么做的。

我正在使用Python 2.7 + telepot库。

enter image description here

1 个答案:

答案 0 :(得分:4)

正如@mymedia在评论中指出的那样,您可以使用 Telegram Bot APi sendLocation方法,并使用telepot

bot.sendLocation(chat_id, latitude=lat, longitude=lon);