I have a map view on my app that includes a small address list.
Would like to keep the data view very basic (address only).
Is it possible to remove/hide the column that lists the distance in miles?
See screenshot of sample mobile view. Thanks!
I have a map view on my app that includes a small address list.
Would like to keep the data view very basic (address only).
Is it possible to remove/hide the column that lists the distance in miles?
See screenshot of sample mobile view. Thanks!
FYI, actual address data has been masked for privacy
Nino
I got this code to achieve the result of hiding the distance, so try this:
/* Hide the kilometres in a specific map scene */
#kn-scene_460 .kn-geo-distance {
visibility: hidden;
}
Another option might be “display:none;”
Awesome! Thanks for your help!
I ended up using the following to hide the distance in all map views:
.kn-geo-distance {
visibility: hidden;
}