ops, the extended class should be like this

package map
{
    import com.google.maps.overlays.Polygon;
    import com.google.maps.overlays.PolygonOptions;

    public class CustomPolygon extends Polygon
    {

        private var _obj:Object;

        public function CustomPolygon(arg0:Array, arg1:PolygonOptions=null)
        {
            super(arg0, arg1);
        }

        public function get obj():Object {
            return this._obj;
        }

        public function set obj(v:Object):void {
            this._obj = v;
        }
    }
}

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API For Flash" group.
To post to this group, send email to google-maps-api-for-flash@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-api-for-flash+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-api-for-flash?hl=en.

Reply via email to