复杂页面中使用分屏对比,按http://support.supermap.com.cn:8090/webgl/Build/Documentation/S3MTilesLayer.html所述,如何通过setVisibleInViewport中的index指定是哪个div?
您好,参考范例http://support.supermap.com.cn:8090/webgl/examples/editor.html#multiViewport_kml;
$('#kml input[type=checkbox]').on("input propertychange", function (evt) { var value = Number($(this).attr('data-value')); kmlLayer.setVisibleInViewport(value, $(this).prop("checked")); });
有相关范例吗?这和http://support.supermap.com.cn:8090/webgl/examples/editor.html 里的都不一样