google: remove competitors listing from google maps?
url: https://stackoverflow.com/questions/36128968/can-you-remove-competitors-listing-from-google-maps
example:
var mlwStyles =[
{
featureType: "poi",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
}
];
var mapOptions = {
center: new google.maps.LatLng(yourInitLat, yourInitLng),
zoom: yourInitZoom,
mapTypeId: google.maps.MapTypeId.SATELLITE,
mapTypeControl:false,
scaleControl: true,
styles: mlwStyles
};