BadgeRenderer
Last updated
Last updated
The BadgeRenderer
class is used and exposed by the Web SDK. Internally, it is used to visualize live data updates for different locations. Based on the type of live data updates we receive for a location, the badge may look different. The following example showcases the style of badge temperature
updates.
Since the BadgeRenderer
is a public class, you have the option to customize and make use of it in your own application. (class definition)
Following the next example will allow you to update a location's icon with a custom badge.
Create a new instance of our BadgeRenderer
class providing a config optionally including the following properties:
Get the location's icon as an Image
instance. You can use the MapsIndoors
instance for this.
Invoke the overlay
method on the badgeRenderer
object. The overlay
method takes 2 parameters.
image - the image you want to modify. Please make sure that it is an instance of Image
and not just a simple string URL.
custom settings - This parameter offers the flexibility to override and tailor the badge configuration according to your specific requirements, thereby allowing customization beyond the default settings established during the instantiation of a new instance of the BadgeRenderer
. You have the option to customize any of the properties described above for the BadgeRenderer
class.
Set the a new Display Rule for your location.
Name | Type | Description | Default Value |
---|---|---|---|
backgroundColor
string
The background color of the badge.
#1E2025
fontFamily
string
The font family is used for the text inside the badge.
'Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
fontSize
string
The font size used for the text inside the badge.
14px
fontWeight
string
The font-weight used for the text inside the badge.
bold
position
string
The position of the badge in relation to the icon. Options are: top_left
, top_right
, bottom_right
, bottom_left
. Please note that other badges may overlap. E.g. the highlight badge is on the top left corner of the icon.
bottom_left
size
object
The size of the badge.
{ width: number, height: number }
null
strokeColor
string
The color of the outline of the badge.
null
strokeWidth
string
The width of the outline of the badge.
0
text
string
The text inside the badge.
null
textColor
string
The color of the text inside the badge.
#FCFCFC