'Google Maps API for Android. Hide POIs in MAP_TYPE_HYBRID mode

I want to hide all (or most of) points of interest at GoogleMap in my app. And i've seen tons of answers about styling maps with json like:

"featureType": "poi",
    "elementType": "all",
    "stylers": [
      {
        "visibility": "off"
      }
    ]

And it works great in MAP_TYPE_NORMAL mode. But for some reason doesn't work at all in MAP_TYPE_HYBRID mode... Unfortunately, the HYBRID is the default (and desired) type for the map in my app. Maybe somebody knows, how can I get rid of POIs in that map type? I would be very grateful )



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source