// Provide a default path to dwr.engine
if (typeof this['dwr'] == 'undefined') this.dwr = {};
if (typeof dwr['engine'] == 'undefined') dwr.engine = {};

if (typeof this['GeoCoder'] == 'undefined') this.GeoCoder = {};

GeoCoder._path = '/dwr';

/**
 * @param {class java.lang.String} p0 a param
 * @param {function|Object} callback callback function or options object
 */
GeoCoder.getLatLon = function(p0, callback) {
  return dwr.engine._execute(GeoCoder._path, 'GeoCoder', 'getLatLon', p0, callback);
};



