Deneb Vega 精简版地图未显示

Deneb Vega Lite Map not displaying

我在 PowerBI 中使用 deneb 可视化,我正在尝试创建澳大利亚地图,下面的 json 代码没有出现任何错误,但我的地图没有显示。有谁知道我做错了什么?

{
  "$schema": "https://vega.github.io/schema/vega-lite/v5.json",
  "width": 500,
  "height": 300,
  "layer": [
    {
      "transform": [
        {"filter": "isValid(datum.id)"},
        {
          "lookup": "id",
          "from": {
            "data": {
              "url": "https://raw.githubusercontent.com/cartdeco/Australia-json-data/master/aus25fgd_r.topojson",
              "format": {
                "type": "topojson"
              }
            },
            "key": "id"
          },
          "as": "geo"
        }
      ],
      "projection": {
        "type": "mercator"
      },
      "mark": {
        "type": "geoshape",
        "fill": "lightgray",
        "stroke": "white"
      }
    },
    {
      "data": {"name": "Electorate"},
      "projection": {
        "type": "mercator"
      },
      "mark": "circle",
      "encoding": {
        "longitude": {
          "field": "Long",
          "type": "quantitative"
        },
        "latitude": {
          "field": "Lat",
          "type": "quantitative"
        },
        "size": {"value": 10},
        "color": {"value": "steelblue"}
      }
    }
  ]
}

这是我使用的数据https://www.matthewproctor.com/australian_postcodes

如有任何帮助,我们将不胜感激。

干杯,

克里斯

您似乎正在尝试从远程 URL 加载您的地图图层。由于 AppSource 中的 Deneb 已通过认证,因此不允许从外部 URL 加载数据。您可以使用独立版本解决此问题,该版本可从 GitHub 存储库下载 - documentation here