Comment on page
How do I hide images from the map but keep them in the profile?
If you want to keep the image associated with an element in the element profile but hide it in the map, use the
element-image-visibility
property in the @settings
section) of the advanced editor (from the map, hit .
to go there).To hide images from all the elements in the map, add this line to the @settings code:
@settings {
element-image-visibility: hidden;
}
To hide images from just a subset of elements in the map, you'll need to add the following line of code to just the subset of elements:
Organization {
image-visibility: hidden;
}