Lasar
Lasar

Reputation: 11

Custom CSS/Styles in Here Map for InfoBubble

I'm using Info Bubble in HereMap, which brings up a popup when the Marker is clicked. In this popup, I'm using custom CSS classes including bootstrap classes to match to the UI requirements.

When I click the marker, the custom styles are not being applied to the popup and its shows a scattered popup.

I'm not able to find any examples that shows a popup in HereMap having rich UI with CSS.

Can anyone of you help me on this.

Upvotes: 1

Views: 1316

Answers (1)

Nic Raboy
Nic Raboy

Reputation: 3153

You should be able to override the CSS for an InfoBubble like this:

.H_ib_body {
    width: 275px;
}

Of course your CSS could be more complex than mine, but you'll want to look at .H_ib_body. Does that accomplish what you're looking for?

Best,

Upvotes: 4

Related Questions