The Null geocoder object is in map.js, not it's own file.
authorMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 4 Mar 2010 16:04:26 +0000 (11:04 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 4 Mar 2010 16:05:49 +0000 (11:05 -0500)
Fixes Bug: #8898

horde/js/hordemap/map.js

index 0dec891..db760a3 100644 (file)
@@ -40,7 +40,7 @@ HordeMap = {
         }
         this._addScript(path + this._opts.driver.toLowerCase() + '.js');
 
-        if (this._opts.geocoder) {
+        if (this._opts.geocoder && this._opts.geocoder != 'Null') {
             this._addScript(this._getProviderUrl(this._opts.geocoder));
             this._addScript(path + this._opts.geocoder.toLowerCase() + '.js');
         }