Hi, I create a FeatureCollectionTable and add features using table.createFeatures(attributes, point). I'm adding attributes so that I can identify the features when they are clicked in the map.
attributes.put("id", poiId)
attributes.put("title", poiTitle) Then I add the features and the table to a FeatureCollection that I display on a map. I can now select the feature on the map and see that this is exactly the feature I placed (I only have one, so I'm sure it is the one) but the attributes are gone. I only have one attribute attached to this feature and it is called "ObjectID".
Can you give me a hint what's going on here?