org.geomajas.gwt2.client.service.GeometryOperationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geomajas-client-gwt2-server-extension Show documentation
Show all versions of geomajas-client-gwt2-server-extension Show documentation
Geomajas GWT2 client: Main - Server Extension
/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2014 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/
package org.geomajas.gwt2.client.service;
import com.google.gwt.core.client.Callback;
import org.geomajas.command.dto.BufferInfo;
import org.geomajas.command.dto.UnionInfo;
import org.geomajas.geometry.Bbox;
import org.geomajas.geometry.Geometry;
import java.util.List;
/**
* Service to perform common geometry operations (buffer, union, convex hull, etc...).
*
* @author Jan De Moerloose
*/
public interface GeometryOperationService {
/**
* Compute a buffer area around this geometry.
*
* @param geometry the geometry
* @param bufferInfo info object
* @param callback callback
*/
void buffer(Geometry geometry, BufferInfo bufferInfo, Callback callback);
/**
* Compute a buffer area around these geometries.
*
* @param geometries the geometries
* @param bufferInfo info object
* @param callback callback
*/
void buffer(List geometries, BufferInfo bufferInfo, Callback, Throwable> callback);
/**
* Compute the union of these geometries.
*
* @param geometries the geometries
* @param unionInfo info object
* @param callback callback
*/
void union(List geometries, UnionInfo unionInfo, Callback callback);
/**
* Compute the convex hull of this geometry.
*
* @param geometry the geometry
* @param callback callback
*/
void convexHull(Geometry geometry, Callback callback);
/**
* Compute the convex hull of these geometries.
*
* @param geometries the geometries
* @param callback callback
*/
void convexHull(List geometries, Callback, Throwable> callback);
/**
* Compute the bounds of these geometries.
*
* @param geometries the geometries
* @param callback callback
*/
void bounds(List geometries, Callback callback);
}