我有带有 WFS 协议的矢量图层。而且因为我有大量数据,地图上加载功能之前还有一段时间。
所以我需要通过显示“等待”动画来告诉用户等待他们加载。
我发现了这个https://gis.stackexchange.com/questions/26072/waiting-for-vector-wfs-loading
到目前为止没有运气尝试过。
这是我所做的:
我放置了 LoadingPanel.js
我添加了这个样式表:
.olControlLoadingPanel { background-image:url(loading.gif); position: relative; width: 195px; height: 11px; background-position:center; background-repeat:no-repeat; display: none; } </style>
最后添加了 LoadingPanel 控件:
map.addControl(new OpenLayers.Control.LoadingPanel());