3

如何通过电报机器人获取用户位置经纬度?

模块:链接

代码:

bot.onText(/getLocation/, (msg) => {
  const opts = {
    reply_markup: JSON.stringify({
      keyboard: [
        [{text: 'Location', request_location: true}],
        [{text: 'Contact', request_contact: true}],
      ],
      resize_keyboard: true,
      one_time_keyboard: true,
    }),
  };
  bot.sendMessage(msg.chat.id, 'Contact and Location request', opts);
});
4

2 回答 2

6

解决了✔️

bot.on('location', (msg) => {
  console.log(msg.location.latitude);
  console.log(msg.location.longitude);
});
于 2018-02-06T20:46:00.967 回答
-1
bot.on('location', (msg) => {
  console.log(msg.message.location.latitude);
  console.log(msg.message.location.longitude);
});
    
于 2021-12-29T14:19:14.057 回答