提高高标记密度地图的可用性
我正在开发一个使用 Google 地图的应用程序来显示 Google 地图中多个类别的一些数据。必须启用平移和缩放控件。
类别具有不同的标记密度,对于密度最高的类别,显示的标记太多,导致难以导航。
有什么方法可以提高过于拥挤的地图的可用性吗?
I'm working on an application using Google Maps to display some data for a number of categories in a Google Map. Panning and zooming controls have to be enabled.
The categories have different marker densities, and for the categories with highest density, there are so many markers are displayed, making it difficult to navigate in.
Are there any way I can improve the usability of overly crowded maps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请在此处查看查看端口标记管理:http:// code.google.com/intl/sv/apis/maps/articles/tooomymarkers.html#viewportmarkermanagement
基本上,您可以使用 MarkerClusterer (API v2,API v3)。您还可以部署一些服务器端解决方案来使用ajax仅获取当前视口中的标记。还可以从这个问题中获得启发。
Look at View port marker management here: http://code.google.com/intl/sv/apis/maps/articles/toomanymarkers.html#viewportmarkermanagement
Basically, you can use MarkerClusterer (API v2, API v3). You can also deploy some server-side solution to ajax-obtain only markers in current viewport. Also get inspired by this question.