Package org.geomajas.puregwt.client.map.event

Examples of org.geomajas.puregwt.client.map.event.ViewPortChangedEvent


      position = newBbox.getCenterPoint();
      if (eventBus != null) {
        if (dX == 0 && dY == 0) {
          eventBus.fireEvent(new ViewPortScaledEvent(this));
        } else {
          eventBus.fireEvent(new ViewPortChangedEvent(this));
        }
      }
    }
  }
View Full Code Here


      }
    } else {
      position = tempPosition;
      scale = newScale;
      if (eventBus != null) {
        eventBus.fireEvent(new ViewPortChangedEvent(this));
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.geomajas.puregwt.client.map.event.ViewPortChangedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.