0

我正在设计 Google 地图 API 3,并希望删除地图右上角标签中显示为“Practice Office”的地图名称。

http://new.therefrog.com/contact/

这可能吗?这是引用地图名称的代码片段。

var styledMapType = new google.maps.StyledMapType(styles, { name: 'Practice Office' });
maphull.mapTypes.set('Styled', styledMapType);
4

1 回答 1

0

请参阅mapTypeControl上的文档

var options = {
mapTypeControlOptions: {
    mapTypeIds: [ 'Styled']
},
    mapTypeControl: false,  
//center: new google.maps.LatLng(53.741365, -0.3361),
center: new google.maps.LatLng(53.775906, -0.736771),
zoom: 9,
mapTypeId: 'Styled'
};
于 2013-05-30T13:30:01.557 回答