GuillaumeLeclerc / vue-google-maps

Google maps component for vue with 2-way data binding
560 stars 653 forks source link

Is there a way to disable street view? #138

Open nshahpazov opened 6 years ago

nshahpazov commented 6 years ago

Is there an option for disabling street view for the map component?

Thanks in advance!

1e4 commented 5 years ago

You can pass in streetViewControl as false to disable it.

`<GmapMap :center="{lat:52.1698798, lng:4.8822357}" :zoom="13" map-type-id="terrain" style="width: 600px; height: 350px; margin-left: auto;max-width:100%" :options="{ streetViewControl: false }"

`