1

I wonder if it's possible to remove native marker inside a google map. For instance, every marker in orange, blue, subways markers, name of stores...

native google map

Vince
  • 109
  • 1
  • 8
  • related question: [I am not able to place markers on the places which is already marked by google with other symbols](http://stackoverflow.com/questions/28186720/i-am-not-able-to-place-markers-on-the-places-which-is-already-marked-by-google-w) – geocodezip Jan 19 '17 at 11:22

2 Answers2

1

you can change the style for suppressing the POI labels off eg:

      var myStyles =[
        {
            featureType: "poi",
            elementType: "labels",
            stylers: [
                  { visibility: "off" }
            ]
        }
    ];
    var mapOptions = {
        center: new google.maps.LatLng(initLat, initLng),
        zoom: 15,
        mapTypeId: google.maps.MapTypeId.SATELLITE,
        mapTypeControl:false,
        scaleControl: true, 
        tilt: 0,
       styles: mlwStyles           
    };

    map = new google.maps.Map(document.getElementById("map"), mapOptions); 
ScaisEdge
  • 131,976
  • 10
  • 91
  • 107
0

Yes, you can do it with Google Maps APIs Styling Wizard.

It allows you to style pretty much everything on the map, from roads to water color.

To remove a native marker, just select its category and change the visibility to hidden.

After Styling the map, you can extract the json and use it in your application.

Wilder Pereira
  • 2,249
  • 3
  • 21
  • 31