yes, you'll want to have a container for each model, since you apply
the FLAR transformations to containers, not models.
you can create containers on the fly, in a MARKER_ADDED event
handler. then, you can hash them by FLARMarker, and retrieve them
using the FLARMarker (provided by a FLARMarkerEvent) as a key.
basically:
var containersByMarker:Dictionary = new Dictionary();
onMarkerAdded (evt:FLARMarkerEvent) {
this.containersByMarker[evt.marker] = new Sprite();
//...
}
onMarkerUpdated (evt:FLARMarkerEvent) {
var container:Sprite = this.containersByMarker[evt.marker];
//...
}
-eric