我用
google-react-maps
具有
zoomControl
和
mapTypeControl
:
<Map onMount={(map, maps) => {}} {...mapProps} style={{
height: '100%'
}} api-key={key} optionsConstructor={(maps) => {
return {
disableDefaultUI: true,
keyboardShortcuts: true,
mapTypeId: maps.MapTypeId.HYBRID,
mapTypeControl: true,
mapTypeControlOptions: {
style: maps.MapTypeControlStyle.DROPDOWN_MENU,
position: maps.ControlPosition.TOP_RIGHT
},
scaleControl: true,
rotateControl: true,
rotateControlOptions: {
position: maps.ControlPosition.RIGHT_TOP
},
zoomControl: true,
zoomControlOptions: {
position: maps.ControlPosition.RIGHT_TOP
}
}
}}>
如何更改缩放和贴图类型控件背景颜色?