This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
An error occurs at line 813
if maxDistance < db.minRadius then maxDistance = db.minRadius end
if adaptivezoom has never been turned on, minradius is nil.Should probably be:
if db.minradius and maxDistance < db.minRadius then maxDistance = db.minRadius end
To post a comment, please login or register a new account.