only call getMapBounds if loaded

This commit is contained in:
j 2014-04-11 21:08:02 +00:00
parent 0de8f278da
commit 9129908cf8

View file

@ -138,7 +138,7 @@ Ox.Map = function(options, self) {
sort: '-area'
});
}
getMapBounds(function(mapBounds) {
self.loaded && getMapBounds(function(mapBounds) {
if (mapBounds) {
self.map.fitBounds(mapBounds);
} else {
@ -714,11 +714,6 @@ Ox.Map = function(options, self) {
}
function getMapBounds(callback) {
if (!window.google) {
setTimeout(function() {
getMapBounds(callback);
}, 100);
} else {
// get initial map bounds
self.options.places({}, function(result) {
var area = result.data.area;
@ -728,7 +723,6 @@ Ox.Map = function(options, self) {
));
});
}
}
function getMapHeight() {
return self.options.height