[]
The Symbol Map scenario is used to place symbols or markers on a map at geographic locations. Symbols can represent categories, measures, or other attributes, making it easy to compare values across different places.
The following map has been created using this native query dataset from the AdventureWorks Data Warehouse:
SELECT
st.SalesTerritoryCountry AS Country,
st.SalesTerritoryRegion AS Region,
CASE st.SalesTerritoryCountry
WHEN 'United States' THEN 37.0902
WHEN 'Canada' THEN 56.1304
WHEN 'United Kingdom' THEN 55.3781
WHEN 'Australia' THEN -25.2744
WHEN 'France' THEN 46.2276
ELSE NULL
END AS Latitude,
CASE st.SalesTerritoryCountry
WHEN 'United States' THEN -95.7129
WHEN 'Canada' THEN -106.3468
WHEN 'United Kingdom' THEN -3.4360
WHEN 'Australia' THEN 133.7751
WHEN 'France' THEN 2.2137
ELSE NULL
END AS Longitude,
SUM(fact.SalesAmount) AS TotalSales,
CASE
WHEN SUM(fact.SalesAmount) > 2000000 THEN 'High'
WHEN SUM(fact.SalesAmount) BETWEEN 1000000 AND 2000000 THEN 'Medium'
ELSE 'Low'
END AS SymbolCategory
FROM
dbo.FactInternetSales fact
INNER JOIN
dbo.DimSalesTerritory st
ON fact.SalesTerritoryKey = st.SalesTerritoryKey
GROUP BY
st.SalesTerritoryCountry,
st.SalesTerritoryRegion
ORDER BY
TotalSales DESC;
Data is configured in the Data Binding Panel on the right side of the dashboard designer.
Region
Bind a geographic field (e.g., city, state, country, or county) to automatically position symbols on the map.
Latitude
Bind a numeric latitude value when using coordinate-based datasets instead of named regions.
Longitude
Bind a numeric longitude value when using coordinate-based datasets instead of named regions.
Long/Lat Label
Assign a label (such as a city name or site identifier) to identify points when working with Latitude/Longitude instead of a region field.
Symbol
Bind a categorical field (e.g., product type, region category, status) or measure to control which symbol is displayed. Each distinct value is represented by a different symbol or marker style.
Tooltip
Bind additional fields you want displayed when hovering over a symbol. Tooltips provide extra context such as numeric values, categories, or descriptive text.
At minimum, the Symbol Map requires either:
Region, or
Latitude + Longitude
The Symbol binding is commonly used to distinguish categories or measures, while Tooltip is optional but recommended for added clarity.
You can customize the appearance of the Symbol Map scenario using the Inspector Panel properties on the right side of the dashboard designer window.

Show Base Map – Enable or disable the reference map. Wyn Enterprise uses Mapbox GIS as a base map. Default: True.
Base Map Type – Choose from:
OpenStreetMap (default)
Mapbox – Available if “Use Mapbox” is set to True in Admin Portal → Dashboard Settings. When selected, the Base Map Style property appears (choose Normal, Dark, Light, or a custom Mapbox style).
Custom – When selected, the Custom GIS Base Styles property appears.
Scroll to Zoom – Allows zooming in/out while scrolling. Default: True. If set to False, zooming works only with double-click.
Tilt Angle – Adjusts the map tilt for angled views.
Display Area – Options:
Auto – Automatically fits all data points.
By Area – Displays an area selector. Clicking a symbol adjusts the map boundary to that bubble.
By Longitude & Latitude – Manually set zoom level, longitude, and latitude.
Zoom Level: Range 2–16.
Longitude: Slider or input value.
Latitude: Slider or input value.
Show Boundary – Enable/disable map boundaries. Default: False. When enabled:
Boundary Area: Select from World, Country, State, or City (default: United States).
Boundary Color: Set line color.
Boundary Width: Set line thickness.

Symbol Size – Set symbol size (default: 20).
Symbol Opacity – Set opacity (default: 100%).
Symbol Manage –
If no data is bound to the Symbol container: select a symbol or image from dropdown.
If data is bound: use the Manage button to assign symbols per value via the Assign Symbol popup.