Send point on the map
Use this method to send point on the map.
sendLocation(chat_id, latitude, longitude, disable_notification = FALSE, reply_to_message_id = NULL, reply_markup = NULL)
| chat_id | Unique identifier for the target chat or username of the target channel. | 
| latitude | Latitude of location. | 
| longitude | Longitude of location. | 
| disable_notification | (Optional). Sends the message silently. Users will receive a notification with no sound. | 
| reply_to_message_id | (Optional). If the message is a reply, ID of the original message. | 
| reply_markup | (Optional). A Reply Markup parameter object, it can be either: | 
You can also use it's snake_case equivalent send_location.
## Not run: 
bot <- Bot(token = bot_token("RTelegramBot"))
chat_id <- user_id("Me")
bot$sendLocation(
  chat_id = chat_id,
  latitude = 51.521727,
  longitude = -0.117255
)
## End(Not run)Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.