You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting this error when I used this package.
Do I need to add 'position' field in database?
My models.py looks like- class Building(models.Model): postal_code = models.CharField(max_length=6) address = models.TextField() latitude = models.FloatField(validators=[MinValueValidator(-90.0), MaxValueValidator(90.0)]) longitude = models.FloatField(validators=[MinValueValidator(-180.0), MaxValueValidator(180.0)]) position = GeopositionField()