Fused Map
Type: fused-map
Interactive map with tile and vector layers.
Supports children: No
Interactive map with Mapbox GL (mvt, raster, geojson) and deck.gl (h3, heatmap, arc, scatterplot) layers.
Example — MVT tile layer
{
"type": "fused-map",
"props": {
"layers": [{
"id": "counties",
"type": "mvt",
"tileUrl": "https://tiles.fused.io/public/my_tileset/{z}/{x}/{y}",
"style": { "fillColor": [100, 150, 200], "opacity": 0.6 }
}]
}
}
Example — SQL with lat/lng points
{
"type": "fused-map",
"props": {
"layers": [{
"id": "sites",
"type": "geojson",
"sql": "SELECT name, lat, lng FROM {{my_udf}}",
"style": { "fillColor": [255, 80, 0], "pointRadius": 8 }
}]
}
}
Every widget is defined as { "type": "fused-map", "props": { ... } }. The properties below describe the props object.
Props
Loading ....
Raw schema
Download the full schema file: /widget-schema/fused-map.json