Mapbox Visual for Power BI - High performance, custom map visuals for Power BI dashboards. This version of Mapbox Visual for Microsoft Power BI is no longer maintained. You can find the live and maintained version of the plugin at: https://github.com/starschema/mapboxgl-powerbi.
Requires changing the dataView model to accommodate changes from v1 API to v2 API.
Visuals will only receive the dataView type that was declared in their capabilities. Visuals that used multiple dataView types will break as a result of this update.
The DataViewScopeIdentity interface is no longer supported, it was replaced with the data.DataRepetitionSelector interface. If you used key property of the DataViewScopeIdentity interface, you can replace it with JSON.stringify(identity)
undefined is replaced by null inside the dataView. When iterating over an array the following way “var item in myArray” it skips on undefined but doesn’t skip on null. Visuals that use this pattern may be broken by this update. Make sure you check for null in array:
@ryanbaumann are you still planning to proceed with this upgrade? we are facing the keepass related bug described here #295 and unfortunately we are unable to use visual in production until it has been resolved.
Requires changing the
dataView
model to accommodate changes from v1 API to v2 API.