按照示例代码,查询获得结果在serviceResult.result中,result和result.features的内部结构是什么样的?
L.supermap.featureService(url).getFeaturesBySQL(sqlParam,function (serviceResult) {
// 获取服务器返回的结果
var featuers = serviceResult.result.features;
});
如果查询结果有多个要素,想要读取所有查询到的要素的某个property的值,但不使用示例代码的L.geoJSON(serviceResult.result.features).addTo(map).bindPopup();弹窗显示(比如把查询到的属性值依次存放在一个数组中),应该怎么编写代码?