Hi! Thanks for this package! When used with https://github.com/makinacorpus/django-leaflet and no initial value, [`GeoJSONFormField`](https://github.com/makinacorpus/django-geojson/blob/master/djgeojson/fields.py#L48) raises the follow error: ``` Error creating geometry from value 'null' (String input unrecognized as WKT EWKT, and HEXEWKB.) ``` Indeed, the value is `None` and is dumped by [`JSONField`](https://github.com/rpkilby/jsonfield/blob/master/src/jsonfield/forms.py#L64) into `"null"`. The initial value should be `jsonfield.forms.InvalidJSONInput("")`. It can be set here if undefined: https://github.com/makinacorpus/django-geojson/blob/master/djgeojson/fields.py#L51