OpenLayers 使用 BBOX 策略找出用户的缩放级别
我目前正在制作一个使用 OpenLayers 并使用 BBOX 策略进行绘图的网站。数据库中可能有很多点可以绘制。当 OpenLayers 发送 BBOX 坐标时,我希望 OpenLayers 发送当前的缩放级别。我将使用此缩放级别来决定是否应该发送所有结果或最近的 10 个条目。当OpenLayers发送BBOX信息时,OpenLayers是否可以将当前的缩放级别发送回服务器?
I am currently making a site which uses OpenLayers and plotting with the BBOX strategy. Potentially there can be alot of points to plot in the db. When OpenLayers sends the BBOX coordinates I would like OpenLayers to send what the current zoom level is. I would use this zoom level to decide whether I should send all results or the 10 most recent entries. Is it possible for OpenLayers to send what the current zoom level is back to the server when OpenLayers sends the BBOX information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下不是这样,但您可以重写triggerRead 函数并自行添加缩放级别。像这样的东西(未经测试):
或者,当然只是使用 BBOX 参数计算缩放级别。
Not by default, but you could override the triggerRead function and add the zoom level yourself. Something like this (untested):
Or, of course just calculate the zoom level with the BBOX parameters.
我已经测试过这个并且它有效:
I have tested this and it works: