jamesdales
4 years agoKudo Kingpin
Icon Map Capabilities and Guide
Icon Map is a custom visual providing a flexible set of mapping capabilities for Power BI.
Background layers:
A choice of raster background layers including custom URLs that can be configur...
jamesdales
2 years agoKudo Kingpin
Using some of the examples from https://docs.snowflake.com/en/sql-reference/data-types-geospatial
If you have two rows of data, a point and a linestring, the WKT would look like:
POINT(-122.35 37.55)
LINESTRING(-124.2 42,-120.01 41.99)
The equivalent 2 rows of geojson would look like:
{ "coordinates": [-122.35, 37.55], "type": "Point" }
{ "coordinates": [[-124.2, 42], [-120.01, 41.99]], "type": "LineString" }
Given PowerQuery has a max character limit of just over 30000 characters, I'd recommend using WKT over GeoJSON if you can as it's more compact.
wins123
2 years agoFrequent Visitor
Hi James,
Thank you so much for your help. Your Icon Map visual is legendary.