getProperty

Returns a copy of the value of the feature's property with the given name.

// Display all the properties for a feature in the console log.
const propertyIds = feature.getPropertyIds();
const length = propertyIds.length;
for (let i = 0; i < length; ++i) {
const propertyId = propertyIds[i];
console.log(propertyId + ': ' + feature.getProperty(propertyId));
}

Return

The value of the property or undefined if the feature does not have this property.

Parameters

name

The case-sensitive name of the property.

See also