GeoEntityCodeQuery

GeoGlobe.Query. GeoEntityCodeQuery

GeoEntityCode地理实体编码服务查询类。

Constructor

new GeoEntityCodeQuery()

Members

url :String

GeoEntityCode服务地址。
Type:
  • String

version :String

GeoEntityCode服务版本
Type:
  • String

Methods

getEntityCode(feature, successFn, failFn)

查询空间数据对应的地理实体编码接口。
Example
var geocodeQuery = new GeoGlobe.Query.GeoEntityCodeQuery('hhttp://192.168.101.59:83/geostar/test_bm/geoentitycode');
		gssQuery.getEntityCode(
            feature,
            function(e){
                //TODO success
            },function(e){
                //TODO faile
            }
        )
Parameters:
Name Type Description
feature Object [必选]用于匹配的空间数据。
successFn function 请求成功的回调函数。
failFn function 请求失败的回调函数。