|
@@ -168,6 +168,9 @@ public class GeoToolsUtil {
|
|
|
* Update By lijie 2021/11/24 16:22
|
|
|
*/
|
|
|
private static Boolean isPolyInPolyInternal(ArrayNode fromOutLines, ArrayNode toOutLines) {
|
|
|
+ if (!toOutLines.get(0).isArray()){
|
|
|
+ return decidePolyInPoly(fromOutLines,toOutLines);
|
|
|
+ }
|
|
|
for (JsonNode outLine : toOutLines) {
|
|
|
if (outLine.isArray() && outLine.get(0).isArray()){
|
|
|
ArrayNode subOutlines = (ArrayNode)outLine;
|