为什么 maps/google 地图没有显示街道号码?

Why are maps/google maps not showing the street number?

当有人点击“导航到该地址”时,我正在打开地图和 google 地图。

  const openMaps = () => {
    const scheme = Platform.select({ ios: "maps:0,0?q=", android: "geo:0,0?q=" })
    //@ts-ignore
    const latLng = `${address.latitude},${address.longitude}`
    const label = name
    const url = Platform.select({
      ios: `${scheme}${label}@${latLng}`,
      android: `${scheme}${latLng}(${label})`,
    })

    Linking.openURL(url)
  }

它工作得很好,唯一的问题是它没有显示街道号码。当我在此站点上输入坐标时:Reverse Geocoding Convert Lat Long to Address

我是不是做错了什么?任何帮助将不胜感激。

这里的解决方案实际上是删除标签。现在可以正常使用了。