Yes, you can do this using the Styled Maps feature of the Google Maps API v3.
Specifically, this style will disable all labels:
[
{
featureType: "all",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
}
]
You can apply it to a current map by using:
var customStyled = [];//(array shown above)
map.set('styles',customStyled);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…