我在django项目中使用django_google_maps
应用。
我在我的settings.py中添加了GOOGLE_MAPS_API_KEY
。
这是我的user
模型:
class UserData(AbstractBaseUser):
first_name = models.TextField(null=False)
last_name = models.TextField(null=False)
email = models.EmailField(null=False, unique=True)
id_code = models.CharField(null=False, max_length=11)
profile_picture = models.ImageField(null=True, blank=True)
rank = models.IntegerField(default=0)
# here is google map fields
address = map_fields.AddressField(max_length=200, null=True)
geolocation = map_fields.GeoLocationField(max_length=100)
并且已经在我的ModelAdmin
类
formfield_overrides = {
map_fields.AddressField: {
'widget': map_widgets.GoogleMapsAddressWidget(attrs={'data-map-type': 'roadmap'})},
}
但是当我想在管理面板中添加用户时,此错误发生在Google的地图部分:
此页面无法正确加载Google Maps。
您拥有这个网站吗?
任何人都可以帮忙吗?