We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi - Thanks for the awesome code. Can you show how you get multiple different GEOS geometry fields into 1 admin map (polygon, line, points)?
This example only brings in the Point:
import floppyforms as forms
class GeoForm(forms.Form): point = forms.gis.PointField()
I would like points, lines and polygons like the top of your map below the GeoDjango widgets title.
Cheers
The text was updated successfully, but these errors were encountered:
There are a couple of widgets for geo data: http://django-floppyforms.readthedocs.io/en/latest/geodjango.html
If I remember correctly the MultiPolygonField will do the trick.
MultiPolygonField
Sorry, something went wrong.
No branches or pull requests
Hi -
Thanks for the awesome code. Can you show how you get multiple different GEOS geometry fields into 1 admin map (polygon, line, points)?
This example only brings in the Point:
import floppyforms as forms
class GeoForm(forms.Form):
point = forms.gis.PointField()
I would like points, lines and polygons like the top of your map below the GeoDjango widgets title.
Cheers
The text was updated successfully, but these errors were encountered: