var locsearch; var zoom_map = {'100':8,'50':9,'20':10,'10':11,'5':12}; function loadLocationSearch(){ var current = window.onload; window.onload = function(){ current(); locsearch = new LocationSearch(); } } function LocationSearch (){ this.prepareVars(); this.initMap(); this.mapEvents(); } LocationSearch.prototype.results; LocationSearch.prototype.map; LocationSearch.prototype.map_types; LocationSearch.prototype.marker; LocationSearch.prototype.poly; LocationSearch.prototype.proximity; LocationSearch.prototype.lat; LocationSearch.prototype.lng; LocationSearch.prototype.zoom; LocationSearch.prototype.default_lat = -28.722436; LocationSearch.prototype.default_lng = 24.609375; LocationSearch.prototype.default_zoom = 5; LocationSearch.prototype.min_scale = 5; LocationSearch.prototype.max_scale = 12; LocationSearch.prototype.initMap = function (){ this.map = new GMap2(document.getElementById("map_canvas")); this.map_types = this.map.getMapTypes(); this.setResolutions(this.min_scale, this.max_scale); this.prepareMap(); } LocationSearch.prototype.setResolutions = function (min, max){ for (var i=0; i