@bot.message_handler(content_types=['location'])
def check_location(message):
#вытаскиваем долготу и ширину
current_position = (message.location.longitude, message.location.latitude)
#создаем строку в виде ДОЛГОТА,ШИРИНА
coords = f"{current_position[0]},{current_position[1]}"
bot.send_message(message.chat.id, coords)