| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/360/campeole-eurosurf/indexdata/graphics/KolorMap/lib/ |
Upload File : |
mxn.register('google', {
Geocoder: {
init: function() {
this.geocoders[this.api] = new GClientGeocoder();
},
geocode: function(address, rowlimit){
var me = this;
if (!address.hasOwnProperty('address') || address.address === null || address.address === '') {
address.address = [ address.street, address.locality, address.region, address.country ].join(', ');
}
if (address.hasOwnProperty('lat') && address.hasOwnProperty('lon')) {
var latlon = address.toProprietary(this.api);
this.geocoders[this.api].getLocations(latlon, function(response) {
me.geocode_callback(response);
});
} else if (address.hasOwnProperty('address')) {
this.geocoders[this.api].getLocations(address.address, function(response) {
me.geocode_callback(response);
});
} else {
this.geocoders[this.api].getLocations(address, function(response) {
me.geocode_callback(response);
});
}
},
geocode_callback: function(response){
var return_location = {};
if (typeof(response) === 'undefined' || !response.hasOwnProperty('Status') || response.Status.code != 200) {
this.error_callback(response);
}
else {
return_location.street = '';
return_location.locality = '';
return_location.region = '';
return_location.country = '';
var place = response.Placemark[0];
mxn.util.traverse(place,
function(o){ return o.AddressDetails; },
function(o){ return o.Country; },
function(o){
return_location.country = o.CountryName;
return o.AdministrativeArea;
},
function(o){
return_location.region = o.AdministrativeAreaName;
// There may or may not be a sub administrative area
return o.SubAdministrativeArea || o;
},
function(o){
return o.Locality;
},
function(o){
return_location.locality = o.LocalityName;
return o.Thoroughfare;
},
function(o){
return_location.street = o.ThoroughfareName;
return null;
}
);
return_location.point = new mxn.LatLonPoint(place.Point.coordinates[1], place.Point.coordinates[0]);
this.callback([return_location]); //returns as an array of 1 - FIX so uses rowlimit or leave to be deprecated in sept 2013
}
}
}
});