Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
C_Lee
Helper I
Helper I

Deneb Vega Lite Map not displaying

Hi,

I am using the deneb visualisation and I am trying to create a map of Australia, there aren't any errors coming up with the below json code but my map is not displaying. Does anyone know what I am doing wrong?

 

{
  "$schema": "https://vega.github.io/schema/vega-lite/v5.json",
  "width": 500,
  "height": 300,
  "layer": [
    {
      "data": {
        "url": "https://raw.githubusercontent.com/alwaysblazing/Australia-State-TopoJson-MapChart/master/au-states-topo.json",
        "format": {
          "type": "topojson"
          }
      },
      "projection": {
        "type": "mercator"
      },
      "mark": {
        "type": "geoshape",
        "fill": "lightgray",
        "stroke": "white"
      }
    },
    {
      "data": {
        "url": "Electorate"
      },
      "projection": {
        "type": "mercator"
      },
      "mark": "circle",
      "encoding": {
        "longitude": {
          "field": "Long",
          "type": "quantitative"
        },
        "latitude": {
          "field": "Lat",
          "type": "quantitative"
        },
        "size": {"value": 10},
        "color": {"value": "steelblue"}
      }
    }
  ]

 

This is the data I am using Australian Post Codes - Matthew Proctor

 

Any help would be appreciated.

 

Cheers,

 

Chris

1 ACCEPTED SOLUTION
dm-p
Super User
Super User

Hi @C_Lee,

I answered this on your stackoverflow post, but for completeness (in case anyone is searching here too), if you're using the certified version of Deneb from AppSource, this is not permitted to access external URLs.

There is a standalone version of Deneb, which can be downloaded separately and has the loader enabled.

Note that custom visuals are heavily sandboxed by Power BI (even uncertified ones) and loading data can only work from endpoints that allow access from an iframe with no origin. There's a little more about this concept here.

Regards,

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




View solution in original post

2 REPLIES 2
dm-p
Super User
Super User

Hi @C_Lee,

I answered this on your stackoverflow post, but for completeness (in case anyone is searching here too), if you're using the certified version of Deneb from AppSource, this is not permitted to access external URLs.

There is a standalone version of Deneb, which can be downloaded separately and has the loader enabled.

Note that custom visuals are heavily sandboxed by Power BI (even uncertified ones) and loading data can only work from endpoints that allow access from an iframe with no origin. There's a little more about this concept here.

Regards,

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




Thank you for responding, it was doing my head in....

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.