我想vue2-leaflet-googlemutant
,并且要禁用和启用某些Google地图的按钮(例如,streetViewControl
,traffic
等)
我尝试使用以下代码:
<LMap style="display: block;" :zoom="14" :center="initialLocation" :option="{ Vue2Leaflet: true }" ref="myMap">
<Vue2LeafletGoogleMutant :apikey="apikey" :options="{
type: 'satellite',
streetViewControl: true,
}"></Vue2LeafletGoogleMutant>
</LMap>
仅输入:“ 卫星”有效,并且地图以卫星模式显示。但是,streetViewControl选项不起作用。
要添加zoomControl
等地图选项,我该怎么做?