mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-12-26 22:41:15 +08:00
update opendb-poi
This commit is contained in:
parent
9de83b418a
commit
186221e627
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"schema": {
|
"schema": {
|
||||||
"bsonType": "object",
|
"bsonType": "object",
|
||||||
"required": [],
|
"required": ["location", "title", "address"],
|
||||||
"permission": {
|
"permission": {
|
||||||
"read": "doc.visible == true",
|
"read": "doc.visible == true",
|
||||||
"create": false,
|
"create": false,
|
||||||
@ -13,12 +13,38 @@
|
|||||||
"description": "ID,系统自动生成"
|
"description": "ID,系统自动生成"
|
||||||
},
|
},
|
||||||
"visible": {
|
"visible": {
|
||||||
|
"title": "是否显示",
|
||||||
"bsonType": "bool",
|
"bsonType": "bool",
|
||||||
"description": "为true代表前端clientDB可直接查询 false则clientDB不可以查询"
|
"description": "为true代表前端clientDB可直接查询 false则clientDB不可以查询"
|
||||||
},
|
},
|
||||||
|
"category": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"title": "分类",
|
||||||
|
"description": "用于区分显示在不同的场景地图下"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"title": "类型",
|
||||||
|
"description": "POI类型,可根据type自动匹配对应的icon,支持直接输入中文"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"title": "图标",
|
||||||
|
"description": "支持https网络路径或本地绝对路径,如果传了icon则不再根据type去匹配icon"
|
||||||
|
},
|
||||||
|
"rotate": {
|
||||||
|
"bsonType": "number",
|
||||||
|
"title": "图标角度",
|
||||||
|
"description": "POI图标的角度,需保证0°的图片方向应朝左(西) 故可得90° 朝上(北) 180° 朝右(东) 270° 朝下(南)"
|
||||||
|
},
|
||||||
|
"level": {
|
||||||
|
"bsonType": "number",
|
||||||
|
"title": "图标显示的层级",
|
||||||
|
"description": "POI图标显示的层级,越高越现在在上面"
|
||||||
|
},
|
||||||
"location": {
|
"location": {
|
||||||
"bsonType": "object",
|
|
||||||
"title": "地理位置",
|
"title": "地理位置",
|
||||||
|
"bsonType": "object",
|
||||||
"description": "地理位置(包含经纬度)"
|
"description": "地理位置(包含经纬度)"
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
@ -26,21 +52,16 @@
|
|||||||
"title": "名称",
|
"title": "名称",
|
||||||
"description": "名称"
|
"description": "名称"
|
||||||
},
|
},
|
||||||
"tel": {
|
|
||||||
"bsonType": "string",
|
|
||||||
"title": "电话",
|
|
||||||
"description": "电话"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"bsonType": "string",
|
|
||||||
"title": "图标",
|
|
||||||
"description": "图标"
|
|
||||||
},
|
|
||||||
"address": {
|
"address": {
|
||||||
"bsonType": "string",
|
"bsonType": "string",
|
||||||
"title": "地址",
|
"title": "地址",
|
||||||
"description": "地址"
|
"description": "地址"
|
||||||
},
|
},
|
||||||
|
"tel": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"title": "电话",
|
||||||
|
"description": "电话"
|
||||||
|
},
|
||||||
"province": {
|
"province": {
|
||||||
"bsonType": "string",
|
"bsonType": "string",
|
||||||
"title": "省",
|
"title": "省",
|
||||||
@ -57,6 +78,7 @@
|
|||||||
"description": "区/县"
|
"description": "区/县"
|
||||||
},
|
},
|
||||||
"create_date": {
|
"create_date": {
|
||||||
|
"title": "创建时间",
|
||||||
"bsonType": "timestamp",
|
"bsonType": "timestamp",
|
||||||
"description": "创建时间",
|
"description": "创建时间",
|
||||||
"forceDefaultValue": {
|
"forceDefaultValue": {
|
||||||
@ -81,6 +103,10 @@
|
|||||||
{
|
{
|
||||||
"IndexName": "create_date",
|
"IndexName": "create_date",
|
||||||
"MgoKeySchema": {"MgoIndexKeys": [{"Name": "create_date","Direction": "1"}],"MgoIsUnique": false}
|
"MgoKeySchema": {"MgoIndexKeys": [{"Name": "create_date","Direction": "1"}],"MgoIsUnique": false}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"IndexName": "category",
|
||||||
|
"MgoKeySchema": {"MgoIndexKeys": [{"Name": "category","Direction": "1"}],"MgoIsUnique": false}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user