提交 a2e91a35 authored 作者: 张国庆's avatar 张国庆

Update PolygonsController.java

上级 8d1cfd2e
...@@ -38,7 +38,7 @@ public class PolygonsController ...@@ -38,7 +38,7 @@ public class PolygonsController
@Override @Override
public void doMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) { public void doMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
String methodId = call.method; String methodId = call.method;
LogUtil.i(CLASS_NAME, "doMethodCall===>" +methodId); LogUtil.i(CLASS_NAME, "doMethodCall===>" + methodId);
switch (methodId) { switch (methodId) {
case Const.METHOD_POLYGON_UPDATE: case Const.METHOD_POLYGON_UPDATE:
invokePolylineOptions(call, result); invokePolylineOptions(call, result);
...@@ -56,7 +56,6 @@ public class PolygonsController ...@@ -56,7 +56,6 @@ public class PolygonsController
} }
/** /**
*
* @param methodCall * @param methodCall
* @param result * @param result
*/ */
...@@ -77,17 +76,26 @@ public class PolygonsController ...@@ -77,17 +76,26 @@ public class PolygonsController
if (null == methodCall) { if (null == methodCall) {
return; return;
} }
String id = methodCall.argument("id"); String dartId = methodCall.argument("id");
LatLng position= ConvertUtil.toLatLng(methodCall.argument("point")); LatLng position = ConvertUtil.toLatLng(methodCall.argument("point"));
LogUtil.d(CLASS_NAME, "invokeContains===>" + position+" dartId===>"+dartId);
LogUtil.w("123",id); if (null != dartId) {
LogUtil.w("123",position.toString()); PolygonController controller = controllerMapByDartId.get(dartId);
result.success(null); LogUtil.d(CLASS_NAME, "invokeContains===>1");
if (null != controller) {
LogUtil.d(CLASS_NAME, "invokeContains===>2");
boolean bool = controller.contains(position);
result.success(bool);
LogUtil.d(CLASS_NAME, "invokeContains===>3");
return;
}
}
result.success(null);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论