Package ehistory.web.server.frontend

Examples of ehistory.web.server.frontend.MapBean.zoom()


                int mapDeltaX = request.getMapDeltaX() == null ? 0 : request.getMapDeltaX();
                int mapDeltaY = request.getMapDeltaY() == null ? 0 : request.getMapDeltaY();
                mapBean.move(mapDeltaX, mapDeltaY);
            }
            if (request.getMapZoom() != null) {
                mapBean.zoom(request.getMapZoom());
            }
            map.setObjectsTitles(mapBean.getObjectTitles());
            map.setObjectsAreas(mapBean.getObjectsToIntArray());
            response.setMap(map);
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.