GeoDjango - 如何在地图上显示点?
简单的“示例” - 在特定地理位置内有数百万个点。 一切都已加载,并且能够在 GeoAdmin 中看到整个 9 码。
所以。 如何显示地图上的所有点 - 并基于缩放级别? 有没有简单的例子?
Simple 'Example' - have millions of points within specific geography. Have everything loaded and able to see in GeoAdmin the whole 9 yards.
So. How do I show all points on a map - and base it on zoom level? Are there any simple examples out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用我为 django 编写的 GTileOverlay lass。 它需要一个包含大量点的查询集,然后将它们分割成 256*256 的方块,以便轻松覆盖到谷歌地图上。
项目网址
You can use my GTileOverlay lass I wrote for django. It takes a queryset with lots of points, then splits them up into 256*256 squares for easy overlaying onto google maps.
project url