Viewing 2 replies - 1 through 2 (of 2 total)
  • Amazemedia,

    How did you achieve the black and white base map?

    It looks fantastic.

    Thread Starter amazemedia

    (@amazemedia)

    Hi FireSite,

    I used inspect element to select the map only css and used the css below. Obviously your css path will be different.

    #bgmp_map-canvas > div > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) {
    filter: url(“data:image/svg+xml;utf8,<svg xmlns=\’https://www.w3.org/2000/svg\’><filter id=\’grayscale\’><feColorMatrix type=\’matrix\’ values=\’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\’/></filter></svg>#grayscale”);
    -webkit-filter: grayscale(100%);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%)
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can the map be made Black and White’ is closed to new replies.