GeoDjango 中新 GeometryField 的通用输入元素
我已经安装了 GeoDjango 和 GeoAdmin,并且可以正常工作,没有任何问题。
我有一个具有字段的模型
geom = models.GeometryField()
当我在管理界面中为该模型创建新记录时,我会得到一张地图,但无法输入数据。我希望能够从点、多线、多边形等中进行选择,然后绘制形状。
如果这不在 GeoDjango 中,那也没关系,我必须自己编写代码。但由于 GeometryField 是一个完全有效的定义,并且 Django 管理模块通常工作正常,我很好奇:我是否做错了什么,忘记了什么?
I have GeoDjango and GeoAdmin up and working, no problems.
I have a models that has a field
geom = models.GeometryField()
When I create a new record for that model in the admin interface, I get a map, but no way to enter data. I'd expect to be able to choose from Point, MultiLine, Polygon, etc and then draw the shape.
If this is not in GeoDjango, that's fine, I'll have to code it myself. But since GeometryField is a perfectly valid definition, and the Django admin module works fine usually, I'm curious: am I doing something wrong, forgetting something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用 olwidget 完美地解决了这个问题:
http://olwidget.org/
通过将其添加到我的 Django 项目并使用使用 olwidget 替换管理小部件的说明,它开箱即用。
非常感谢 Charlie DeTar 提供此内容。
I solved this problem beautifully by using olwidget:
http://olwidget.org/
By adding this to my Django project and using the instructions to replace the admin widgets with olwidget, it worked right out of the box.
Many thanks to Charlie DeTar for making this available.