Class: BaiduLBS::Geodata::Column
- Inherits:
-
Client
- Object
- Client
- BaiduLBS::Geodata::Column
show all
- Defined in:
- lib/baidu_lbs/geodata/column.rb
Class Method Summary
collapse
Methods included from Request
#connection, #get, #post, #request
Class Method Details
.create(params) ⇒ Object
4
5
6
|
# File 'lib/baidu_lbs/geodata/column.rb', line 4
def create(params)
post '/geodata/v3/column/create', params
end
|
.delete(params) ⇒ Object
20
21
22
|
# File 'lib/baidu_lbs/geodata/column.rb', line 20
def delete(params)
post '/geodata/v3/column/delete', params
end
|
.detail(params) ⇒ Object
12
13
14
|
# File 'lib/baidu_lbs/geodata/column.rb', line 12
def detail(params)
get '/geodata/v3/column/detail', params
end
|
.list(params) ⇒ Object
8
9
10
|
# File 'lib/baidu_lbs/geodata/column.rb', line 8
def list(params)
get '/geodata/v3/column/list', params
end
|
.update(params) ⇒ Object
16
17
18
|
# File 'lib/baidu_lbs/geodata/column.rb', line 16
def update(params)
post '/geodata/v3/column/update', params
end
|