Unfortunately, the Google Maps API does not offer a way to selectively hide shortcuts in an area. You can only remove tags for the entire map in several categories - for example. using a MapTypeStyle containing:
{ featureType: "administrative.country", elementType: "labels", stylers: [ { visibility: "off" } ] }
hides labels with country names.
To hide the area, you must create your own overlay β some type of polygon or map overlay.
If you want to display only the area of ββthe map, perhaps it is also a good idea to limit the visible area of ββthe map .
Tomik source share