function openlayers_style_plugin::can_handle_property in Openlayers 6.2
Return true if this plugin can handle the given property
File
- ./
openlayers.module, line 957 - Main OpenLayers API File
Class
- openlayers_style_plugin
- Base class for style plugins
Code
function can_handle_property($propname) {
return array_key_exists($propname, $this
->get_context_properties());
}