Hi all,
I am trying to get my basemaps titles to show in JQuery. I am really not sure why It is not currently showing.
Here is my script.
Any ideas are welcome!
Thank you,
Alex
Solved! Go to Solution.
Looks like the bootstrapmap.css file has a rule that turns off the label display. If you comment out this rule the labels will display for the base map gallery.
LIne 234 of bootstrapmap.css
.esriBasemapGalleryLabelContainer{
display:none;
}
Looks like the bootstrapmap.css file has a rule that turns off the label display. If you comment out this rule the labels will display for the base map gallery.
LIne 234 of bootstrapmap.css
.esriBasemapGalleryLabelContainer{
display:none;
}
I got rid of this css line but did not get any labels.
It looks like your app is referencing the bootstrapmap.css file on esri.github. If you don't have access to this file you can make a local copy, make the update then update the link in map-widget.html to point to your local copy.
http://esri.github.io/bootstrap-map-js/src/css/bootstrapmap.css
Alternatively you can add this rule to the style section of map-widget.html:
Got it! Thank you!