
function Location() { }
Location._path = '/dwr';

Location.getCoordinateSystem = function(callback) {
    DWREngine._execute(Location._path, 'Location', 'getCoordinateSystem', callback);
}

Location.getX = function(callback) {
    DWREngine._execute(Location._path, 'Location', 'getX', callback);
}

Location.getY = function(callback) {
    DWREngine._execute(Location._path, 'Location', 'getY', callback);
}
