@bot.message_handler(content_types=['text'])
def send_location(message):
if message.text == "where I am?":
bot.send_chat_action(message.from_user.id, 'find_location')
bot.send_location(message.from_user.id, ) <- в этой строке загвоздка с координатами, откуда их брать?
"location":{"latitude":xx.xxxxxx,"longitude":yy.yyyyyy}
dispatcher.add_handler(MessageHandler(Filters.location, location))
def location(bot, update):
print(update.message.location)