mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-10 21:36:24 +10:00
12 lines
315 B
Ruby
12 lines
315 B
Ruby
class MapService
|
|
|
|
def getLocation(lat, lng)
|
|
addr = "#{lat},#{lng}"
|
|
RestClient.get 'http://api.map.baidu.com/geocoder',
|
|
{:params => {output: 'json',
|
|
key: ENV["BAIDU_MAP_KEY"],
|
|
location: addr
|
|
}}
|
|
end
|
|
|
|
end |