001    package com.google.gwt.maps.client.events.position;
002    
003    import com.google.gwt.ajaxloader.client.Properties;
004    import com.google.gwt.maps.client.events.MapEvent;
005    
006    public class PositionChangeMapEvent extends MapEvent<PositionChangeMapHandler, PositionChangeMapEvent> {
007    
008      public static Type<PositionChangeMapHandler> TYPE = new Type<PositionChangeMapHandler>();
009      
010      public PositionChangeMapEvent(Properties properties) {
011        super(properties);
012      }
013    
014      @Override
015      public com.google.gwt.event.shared.GwtEvent.Type<PositionChangeMapHandler> getAssociatedType() {
016        return TYPE;
017      }
018    
019      @Override
020      protected void dispatch(PositionChangeMapHandler handler) {
021        handler.onEvent(this);
022      }
023      
024    }