I use the Google Maps API v3 Javascript. I know add or delete a marker or an array with :
MarkerLocation = new google.maps.Marker({
...
...
});
and
Marker.setMap(null);
But I want to remove a default marker on a GoogleMaps if it's possible.
Example : When I go to Paris and I zoom in the city. I have marker metro/RER in my map. it is the means of transport in Paris. I want to remove this to use my marker.
It's possible to remove this or override this ?