Django MultipolygonField don't display map when map has polys

In Heroku don't display map when edit/update polys Heroku. But when I backup the database in docker the map is displayed without trouble Docker.

Heroku has the next configuration:

  • Stack 22
  • GDAL 3.5.0
  • Python 3.9.13
  • Django 1.11.25

And docker has:

  • GDAL 2.4.0
  • Python 3.9.13
  • Django 1.11.25

The problem is the buildpack (heroku-geo-buildpack) or something else?

The code of that field is:

models.MultiPolygonField(
        pgettext_lazy("Store service field", "polygons"), geography=True, null=True, blank=True
    )
Back to Top