方法列表
(static) get(uid, onSuccess可选, onError可选)
根据地图的uid来获取对象
Parameters:
Name |
Type |
Attributes |
Description |
uid |
String
|
|
地图的uid |
onSuccess |
function
|
<optional>
|
请求成功的回调函数 |
onError |
function
|
<optional>
|
请求失败的回调函数 |
Returns:
Example
GAPI.mapping.get(
'36e9debaf3354dd29802405010c0d45c',
function(data){console.log(data)},
function(error){console.error(error)}
);
(static) list(options, onSuccess可选, onError可选)
获取地图列表
Parameters:
Name |
Type |
Attributes |
Description |
options |
Object
|
|
选项
Properties
Name |
Type |
Attributes |
Default |
Description |
search |
String
|
<optional>
|
|
过滤部分结果 |
page |
String
|
<optional>
|
0
|
指定页数 |
limit |
String
|
<optional>
|
10
|
指定每页最多返回的结果 |
|
onSuccess |
function
|
<optional>
|
请求成功的回调函数 |
onError |
function
|
<optional>
|
请求失败的回调函数 |
Returns:
Example
GAPI.mapping.list(
{
search: '空气',
page: 2,
limit: 10
},
function(data){console.log(data)},
function(error){console.error(error)}
);
(static) update(uid, obj, onSuccess可选, onError可选)
更新某个地图
Parameters:
Name |
Type |
Attributes |
Description |
uid |
String
|
|
地图的uid |
obj |
Object
|
|
更新的地图对象值
Properties
Name |
Type |
Attributes |
Default |
Description |
def |
String
|
<optional>
|
|
地图的定义 |
name |
String
|
<optional>
|
|
地图的名字 |
description |
String
|
<optional>
|
|
地图的描述信息 |
width |
Number
|
<optional>
|
1000
|
配置地图时屏幕的宽度,生成缩略图时有用 |
height |
Number
|
<optional>
|
1000
|
配置地图时屏幕的高度,生成缩略图时有用 |
|
onSuccess |
function
|
<optional>
|
请求成功的回调函数 |
onError |
function
|
<optional>
|
请求失败的回调函数 |
Returns:
Example
GAPI.mapping.update(
'36e9debaf3354dd29802405010c0d45c',
{
name: 'test'
},
function(data){console.log(data)},
function(error){console.error(error)}
);