![JAR search and dependency download from the Maven repository](/logo.png)
tech.spiro.addrparser.common.ContainPointJudge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of addrparser Show documentation
Show all versions of addrparser Show documentation
Tool for parsing longitude/latitude to region info in china.
The newest version!
package tech.spiro.addrparser.common;
import java.util.List;
/**
* Interface to judge whether a point in polygons
* @author Spiro Huang
* @since 1.0
*/
public interface ContainPointJudge {
/**
* Initialize polygons
* @param polyline Multi polygons point list
*/
void initPolygons(List> polyline);
boolean contain(Point point);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy