- GPS: Inline
- GMaps: Inline - get_coords() gibt jetzt auch die Adresse zurück
This commit is contained in:
parent
8a1b16429d
commit
40dd62c477
@ -4,6 +4,9 @@ gMaps.command = 'loc <Ort>'
|
|||||||
|
|
||||||
function gMaps:init(config)
|
function gMaps:init(config)
|
||||||
gMaps.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('loc', true).table
|
gMaps.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('loc', true).table
|
||||||
|
gMaps.inline_triggers = {
|
||||||
|
"^loc (.*)"
|
||||||
|
}
|
||||||
gMaps.doc = [[*
|
gMaps.doc = [[*
|
||||||
]]..config.cmd_pat..[[loc* _<Ort>_: Sendet Ort via Google Maps]]
|
]]..config.cmd_pat..[[loc* _<Ort>_: Sendet Ort via Google Maps]]
|
||||||
end
|
end
|
||||||
@ -16,6 +19,16 @@ function gMaps:get_staticmap(area, lat, lon)
|
|||||||
return file
|
return file
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function gMaps:inline_callback(inline_query, config)
|
||||||
|
local place = matches[1]
|
||||||
|
local coords = utilities.get_coords(place, config)
|
||||||
|
if type(coords) == 'string' then utilities.answer_inline_query(self, inline_query) return end
|
||||||
|
|
||||||
|
local results = '[{"type":"venue","id":"'..math.random(100000000000000000)..'","latitude":'..coords.lat..',"longitude":'..coords.lon..',"title":"Ort","address":"'..coords.addr..'"}]'
|
||||||
|
|
||||||
|
utilities.answer_inline_query(self, inline_query, results, 10000)
|
||||||
|
end
|
||||||
|
|
||||||
function gMaps:action(msg, config)
|
function gMaps:action(msg, config)
|
||||||
local input = utilities.input(msg.text)
|
local input = utilities.input(msg.text)
|
||||||
if not input then
|
if not input then
|
||||||
@ -26,6 +39,7 @@ function gMaps:action(msg, config)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
utilities.send_typing(self, msg.chat.id, 'find_location')
|
utilities.send_typing(self, msg.chat.id, 'find_location')
|
||||||
local coords = utilities.get_coords(input, config)
|
local coords = utilities.get_coords(input, config)
|
||||||
if type(coords) == 'string' then
|
if type(coords) == 'string' then
|
||||||
|
@ -5,6 +5,13 @@ gps.command = 'gps <Breitengrad>,<Längengrad>'
|
|||||||
function gps:init(config)
|
function gps:init(config)
|
||||||
gps.triggers = {
|
gps.triggers = {
|
||||||
"^/gps ([^,]*)[,%s]([^,]*)$",
|
"^/gps ([^,]*)[,%s]([^,]*)$",
|
||||||
|
"google.de/maps/@([^,]*)[,%s]([^,]*)",
|
||||||
|
"google.com/maps/@([^,]*)[,%s]([^,]*)",
|
||||||
|
"google.de/maps/place/@([^,]*)[,%s]([^,]*)",
|
||||||
|
"google.com/maps/place/@([^,]*)[,%s]([^,]*)"
|
||||||
|
}
|
||||||
|
gps.inline_triggers = {
|
||||||
|
"^gps ([^,]*)[,%s]([^,]*)$",
|
||||||
"google.de/maps/@([^,]*)[,%s]([^,]*)",
|
"google.de/maps/@([^,]*)[,%s]([^,]*)",
|
||||||
"google.com/maps/@([^,]*)[,%s]([^,]*)",
|
"google.com/maps/@([^,]*)[,%s]([^,]*)",
|
||||||
"google.de/maps/place/@([^,]*)[,%s]([^,]*)",
|
"google.de/maps/place/@([^,]*)[,%s]([^,]*)",
|
||||||
@ -14,6 +21,15 @@ function gps:init(config)
|
|||||||
]]..config.cmd_pat..[[gps* _<Breitengrad>_,_<Längengrad>_: Sendet Karte mit diesen Koordinaten]]
|
]]..config.cmd_pat..[[gps* _<Breitengrad>_,_<Längengrad>_: Sendet Karte mit diesen Koordinaten]]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function gps:inline_callback(inline_query, config)
|
||||||
|
local lat = matches[1]
|
||||||
|
local lon = matches[2]
|
||||||
|
|
||||||
|
local results = '[{"type":"location","id":"'..math.random(100000000000000000)..'","latitude":'..lat..',"longitude":'..lon..',"title":"Standort"}]'
|
||||||
|
|
||||||
|
utilities.answer_inline_query(self, inline_query, results, 10000)
|
||||||
|
end
|
||||||
|
|
||||||
function gps:action(msg, config, matches)
|
function gps:action(msg, config, matches)
|
||||||
utilities.send_typing(self, msg.chat.id, 'upload_photo')
|
utilities.send_typing(self, msg.chat.id, 'upload_photo')
|
||||||
local lat = matches[1]
|
local lat = matches[1]
|
||||||
|
@ -363,9 +363,7 @@ end
|
|||||||
|
|
||||||
-- Gets coordinates for a location. Used by gMaps.lua, time.lua, weather.lua.
|
-- Gets coordinates for a location. Used by gMaps.lua, time.lua, weather.lua.
|
||||||
function utilities.get_coords(input, config)
|
function utilities.get_coords(input, config)
|
||||||
|
local url = 'https://maps.googleapis.com/maps/api/geocode/json?address='..URL.escape(input)..'&language=de'
|
||||||
local url = 'https://maps.googleapis.com/maps/api/geocode/json?address=' .. URL.escape(input)
|
|
||||||
|
|
||||||
local jstr, res = https.request(url)
|
local jstr, res = https.request(url)
|
||||||
if res ~= 200 then
|
if res ~= 200 then
|
||||||
return config.errors.connection
|
return config.errors.connection
|
||||||
@ -378,9 +376,9 @@ function utilities.get_coords(input, config)
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
lat = jdat.results[1].geometry.location.lat,
|
lat = jdat.results[1].geometry.location.lat,
|
||||||
lon = jdat.results[1].geometry.location.lng
|
lon = jdat.results[1].geometry.location.lng,
|
||||||
|
addr = jdat.results[1].formatted_address
|
||||||
}
|
}
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Get the number of values in a key/value table.
|
-- Get the number of values in a key/value table.
|
||||||
|
Reference in New Issue
Block a user