SimpleFeature sf = (SimpleFeature) fi.next();
featureRetrieved = true;
context.setCurrentFeature(sf);
// only create the basic placemark here, the rest is delegated to decorators
Placemark pm = new Placemark();
pm.setId(sf.getID());
// call onto the decorators
for (KmlDecorator callback : callbacks) {
pm = (Placemark) callback.decorate(pm, context);
if (pm == null) {