Skip to main content

How to give cluster symbol transparency in HTML5

Comments

2 comments

  • Berend Veldkamp
    You could add some custom css to [VIEWER]\VirtualDirectory\Resources\Styles\Custom\Desktop.css (And tablet and handheld). For example, to make all circles 50% transparent:

     

      svg circle { opacity: 0.50; } Or to other markers transparent too: svg { opacity: 0.5; }

     

    You may need to use a more specific selector (e.g. #map_gc)
    0
  • Permanently deleted user
    Thanks Berend!

     

    That worked.  I decided to use: svg circle { fill-opacity: 0.5; }

     

     
    0

Please sign in to leave a comment.