myScenes


URI

<myContent_uri>/scenes[.<format>]

支持的方法

GETHEAD

父资源

myContent

介绍

myScenes 资源是当前用户添加的所有场景的集合。

支持的方法:

支持的表述格式:RJSON、JSON、HTML、XML。

资源层次

HTTP 请求方法

对如下 URI 执行 HTTP 请求,以 rjson 输出格式为例加以说明,其中,supermapiportal 是服务器名。

http://supermapiportal:8190/iportal/web/mycontent/scenes.rjson

GET 请求

获取当前用户添加的所有场景信息。

请求参数

如果参数未设置,则返回当前用户添加的当前第一页中的场景列表信息,设置参数后,会返回用户指定的场景列表信息,请求参数必须包含在 URI 中。

字段 类型 说明
tags String[] 根据场景的标签过滤。
userNames String[] 根据场景添加者名称过滤。该参数已过期,即 SuperMap iPortal 9D 版或更高版本将不再沿用此参数。
orderBy SceneOrderBy 根据排序字段过滤。
orderType OrderType 根据升序还是降序过滤。
keywords String[] 根据关键字过滤。
currentPage int 根据分页页码过滤。
pageSize int 根据分页大小过滤。
filterFields FilterFields[] 用于关键字查询时的字段过滤。字段名称需大写。例如:根据场景名称的关键字符过滤,则需要设置 keywords=["osgb"]&filterFields=["NAME"]。

响应结构

对 myScenes 资源执行 GET 请求,返回当前用户有权查看的所有场景列表信息。由以下字段组成:

字段 类型 说明
content List<SceneInfo> 页面内容。
currentPage int 当前第几页。
pageSize int 每页大小。
searchParameter SearchParameter 当前页搜索参数。
total int 总记录数。
totalPage int 总页数。

响应示例

对 myScenes 资源:http://localhost:8190/iportal/web/mycontent/scenes.rjson 执行 GET 请求,返回的 rjson 格式的表述结构如下:

{

    "content": [

        {

            "authorizeSetting": [

                {

                    "aliasName": "admin",

                    "entityId": null,

                    "entityName": "admin",

                    "entityType": "USER",

                    "permissionType": "DELETE"

                }

            ],

            "createTime": 1461672562050,

            "description": null,

            "id": 12,

            "name": "ChinaProvinces",

            "nickname": "admin",

            "tags": null,

            "thumbnail": null,

            "updateTime": 1461672562050,

            "url": "http://192.168.120.40:8090/iserver/services/3D-ChinaProvinces/rest/realspace/scenes/ChinaProvinces",

            "userName": "admin",

            "visitCount": 0

        },

        {

            "authorizeSetting": [

                {

                    "aliasName": "admin",

                    "entityId": null,

                    "entityName": "admin",

                    "entityType": "USER",

                    "permissionType": "DELETE"

                }

            ],

            "createTime": 1461672464399,

            "description": null,

            "id": 11,

            "name": "Theme3d",

            "nickname": "admin",

            "tags": null,

            "thumbnail": null,

            "updateTime": 1461672464399,

            "url": "http://192.168.120.40:8090/iserver/services/3D-sample/rest/realspace/scenes/Theme3d",

            "userName": "admin",

            "visitCount": 0

        },

        {

            "authorizeSetting": [

                {

                    "aliasName": "admin",

                    "entityId": null,

                    "entityName": "admin",

                    "entityType": "USER",

                    "permissionType": "DELETE"

                }

            ],

            "createTime": 1461719177139,

            "description": null,

            "id": 13,

            "name": "osgb",

            "nickname": "admin",

            "tags": null,

            "thumbnail": null,

            "updateTime": 1461719177139,

            "url": "http://192.168.120.40:8090/iserver/services/3D-osgb/rest/realspace/scenes/osgb",

            "userName": "admin",

            "visitCount": 0

        },

        {

            "authorizeSetting": [

                {

                    "aliasName": "admin",

                    "entityId": null,

                    "entityName": "admin",

                    "entityType": "USER",

                    "permissionType": "DELETE"

                }

            ],

            "createTime": 1461719177139,

            "description": null,

            "id": 14,

            "name": "webgl",

            "nickname": "admin",

            "tags": null,

            "thumbnail": null,

            "updateTime": 1461719177139,

            "url": "http://192.168.120.40:8090/iserver/services/3D-osgb/rest/realspace/scenes/webgl",

            "userName": "admin",

            "visitCount": 0

        }

    ],

    "currentPage": 1,

    "pageSize": 9,

    "searchParameter": {

        "currentPage": 1,

        "currentUser": null,

        "dirIds": null,

        "filterFields": null,

        "groupIds": null,

        "isNotInDir": false,

        "keywords": null,

        "orderBy": null,

        "orderType": "ASC",

        "pageSize": 9,

        "resourceIds": null,

        "tags": null,

        "userNames": [

            "admin"

        ]

    },

    "total": 4,

    "totalPage": 1

}

HEAD 请求

返回跟 GET 请求一样的 HTTP 响应头,但是没有响应实体。可以在不必传输整个响应内容的情况下,获取包含在响应消息头中的元数据信息。元数据信息包括媒体类型,字符编码,压缩编码,实体内容长度等。

HEAD 请求可以用来判断 myScenes 资源是否存在,或者客户端是否有权限访问 myScenes 资源。通过对加.<format>的 URI 执行 HEAD 请求,还可以快速判断 myScenes 资源是否支持<format>格式的表述。

请参见