Hey there!
Are you talking about the zoom level that you get when you click on zoom?
it is hard coded in the hotspots.js file (media/com_hotspots/js)
if(this.map.getZoom() < 10) {
zoom = new Element('span', {
'html' : this.locale.zoom,
'class' : 'link',
events: {
click: function(){
self.map.setCenter(new google.maps.LatLng(hotspot.latitude, hotspot.longitude));
self.map.setZoom(10);
self.infoWindow.close();
}
}
});
}
Change 10 from this code to something higher and you'll get a higher zoom when you click the button.
Daniel