QueryLayerEvent.as 382 B

1234567891011121314151617
  1. package
  2. {
  3. import com.supermap.framework.events.BaseEvent;
  4. public class QueryLayerEvent extends BaseEvent
  5. {
  6. public static const QUERY_SUCCESS:String = "QUERY_SUCCESS";
  7. public static const QUERY_FAULT:String = "QUERY_FAULT";
  8. public function QueryLayerEvent(type:String, data:Object=null)
  9. {
  10. super(type);
  11. if (data != null) _data = data;
  12. }
  13. }
  14. }