如何在创建时设置ol.Feature
ID。
到目前为止的示例和结果:
// attempt 1
var fea = new ol.Feature({ id : 123 });
console.log(fea);
// attempt 2
var fea = new ol.Feature();
fea.id = 123;
console.log(fea);
// attempt 3
var fea = new ol.Feature();
fea.id = "123";
console.log(fea);
结果:
尝试1:
尝试2:
尝试3:
答案 0 :(得分:1)
创建后使用feature.setId(id)
http://openlayers.org/en/v3.8.2/apidoc/ol.Feature.html#setId