django-location-field
django-location-field copied to clipboard
location_field.forms.spacial.LocationField always thinks it's changed (even if it hasn't)
The problem is that LocationField stores its value as a lat,long string most of the time, but when it comes back from the database, it's a Point
. By default it gets compared using ==
and this fails because there's no generic way to compare those types.
I'll post a PR shortly.