var geo=function() {
geo.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
geo.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return geo._staticInstance.get_path();},
Search:function(minLat,maxLat,minLon,maxLon,InitialLoad,succeededCallback, failedCallback, userContext) {
/// <param name="minLat" type="Number">System.Single</param>
/// <param name="maxLat" type="Number">System.Single</param>
/// <param name="minLon" type="Number">System.Single</param>
/// <param name="maxLon" type="Number">System.Single</param>
/// <param name="InitialLoad" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Search',false,{minLat:minLat,maxLat:maxLat,minLon:minLon,maxLon:maxLon,InitialLoad:InitialLoad},succeededCallback,failedCallback,userContext); }}
geo.registerClass('geo',Sys.Net.WebServiceProxy);
geo._staticInstance = new geo();
geo.set_path = function(value) {
geo._staticInstance.set_path(value); }
geo.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return geo._staticInstance.get_path();}
geo.set_timeout = function(value) {
geo._staticInstance.set_timeout(value); }
geo.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return geo._staticInstance.get_timeout(); }
geo.set_defaultUserContext = function(value) { 
geo._staticInstance.set_defaultUserContext(value); }
geo.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return geo._staticInstance.get_defaultUserContext(); }
geo.set_defaultSucceededCallback = function(value) { 
 geo._staticInstance.set_defaultSucceededCallback(value); }
geo.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return geo._staticInstance.get_defaultSucceededCallback(); }
geo.set_defaultFailedCallback = function(value) { 
geo._staticInstance.set_defaultFailedCallback(value); }
geo.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return geo._staticInstance.get_defaultFailedCallback(); }
geo.set_path("/geo.asmx");
geo.Search= function(minLat,maxLat,minLon,maxLon,InitialLoad,onSuccess,onFailed,userContext) {
/// <param name="minLat" type="Number">System.Single</param>
/// <param name="maxLat" type="Number">System.Single</param>
/// <param name="minLon" type="Number">System.Single</param>
/// <param name="maxLon" type="Number">System.Single</param>
/// <param name="InitialLoad" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
geo._staticInstance.Search(minLat,maxLat,minLon,maxLon,InitialLoad,onSuccess,onFailed,userContext); }
