我有一个字段:
{
name: 'location',
title: 'Map',
type: 'geopoint'
}
,我使用@sanity/google-maps-input
。很棒,但是默认本地化是纽约。如何将其更改为其他位置?
答案 0 :(得分:2)
可以在文件config/@sanity/google-maps-input.json
{
"apiKey": "XYZ",
"defaultZoom": 11,
"defaultLocation": {
"lat": 40.7058254,
"lng": -74.1180863
}
}