机器人想要将具有特定纬度/经度点的 map 发送给 Telegram 用户。单击该 map 时,应将用户引导至交互式 map 版本。
我看到一个机器人 (SberbankBot) 可以做到这一点,但我需要知 Prop 体是如何做到的。
我正在使用 Python 2.7 + telepot
库。
最佳答案
正如 @mymedia 在评论中指出的那样,您可以使用 Telegram Bot APi 的 sendLocation
方法,并使用 telepot
:
bot.sendLocation(chat_id, latitude=lat, longitude=lon);
关于telegram-bot - 机器人向 Telegram 用户发送交互式谷歌 map ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43100130/