@@ -155,6 +155,23 @@ Available Classes
155155 :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
156156 :param object extra: An extra reply interface object to attach
157157
158+ .. py :method :: send_location(latitude, longitude, [reply_to=None , extra=None ])
159+
160+ Send the geographic location to the user. If the location you're sending
161+ is in reply to another message, set *reply_to * to the ID of the other
162+ :py:class: `~botogram.Message `. *extra * is an optional object which
163+ specifies additional reply interface options on the recipient's end, and
164+ can be one of the following types:
165+
166+ * :py:class: `botogram.ReplyKeyboardMarkup `
167+ * :py:class: `botogram.ReplyKeyboardHide `
168+ * :py:class: `botogram.ForceReply `
169+
170+ :param float latitude: The latitude of the location
171+ :param float longitude: The longitude of the location
172+ :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
173+ :param object extra: An extra reply interface object to attach
174+
158175
159176.. py :class :: botogram.Chat
160177
@@ -288,6 +305,23 @@ Available Classes
288305 :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
289306 :param object extra: An extra reply interface object to attach
290307
308+ .. py :method :: send_location(latitude, longitude, [reply_to=None , extra=None ])
309+
310+ Send the geographic location to the chat. If the location you're sending
311+ is in reply to another message, set *reply_to * to the ID of the other
312+ :py:class: `~botogram.Message `. *extra * is an optional object which
313+ specifies additional reply interface options on the recipient's end, and
314+ can be one of the following types:
315+
316+ * :py:class: `botogram.ReplyKeyboardMarkup `
317+ * :py:class: `botogram.ReplyKeyboardHide `
318+ * :py:class: `botogram.ForceReply `
319+
320+ :param float latitude: The latitude of the location
321+ :param float longitude: The longitude of the location
322+ :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
323+ :param object extra: An extra reply interface object to attach
324+
291325
292326.. py :class :: botogram.Message
293327
@@ -563,6 +597,20 @@ Available Classes
563597 :param str path: The path to the file
564598 :param object extra: An extra reply interface object to attach
565599
600+ .. py :method :: reply_with_location(latitude, longitude, [extra=None ])
601+
602+ Send the geographic location to the user. *extra * is an optional object
603+ which specifies additional reply interface options on the recipient's
604+ end, and can be one of the following types:
605+
606+ * :py:class: `botogram.ReplyKeyboardMarkup `
607+ * :py:class: `botogram.ReplyKeyboardHide `
608+ * :py:class: `botogram.ForceReply `
609+
610+ :param float latitude: The latitude of the location
611+ :param float longitude: The longitude of the location
612+ :param object extra: An extra reply interface object to attach
613+
566614
567615.. py :class :: botogram.Photo
568616
0 commit comments