Closed andyscott12 closed 11 years ago
@andyscott12 Don't understand your question 1, but for question 2:
$(".yourtextbox").geocomplete({
mapOptions: { scrollwheel: true },
//...other args
});
You can add any options to the plugin map constructor via mapOptions
.
To add new controls, simply pass the options like this.
$(".yourtextbox").geocomplete({
mapOptions: {
panControl: false,
zoomControl: false,
scaleControl: true
},
//...other args
});
More infos here: https://developers.google.com/maps/documentation/javascript/controls#Adding_Controls_to_the_Map
Awesome thanks!
Hi,
Just wondering whether its possible to:
I can't seem to find how to do that ?