是否可以在sanity.io中设置默认地理位置?

时间:2019-04-11 15:47:50

标签: sanity

我有一个字段:

{
  name: 'location',
  title: 'Map',
  type: 'geopoint'
}

,我使用@sanity/google-maps-input。很棒,但是默认本地化是纽约。如何将其更改为其他位置?

1 个答案:

答案 0 :(得分:2)

可以在文件config/@sanity/google-maps-input.json

{
  "apiKey": "XYZ",
  "defaultZoom": 11,
  "defaultLocation": {
    "lat": 40.7058254,
    "lng": -74.1180863
  }
}