no need to use nameInfo or typeInfo any more

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@288 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-10-13 09:54:26 +00:00
parent dd9461585e
commit ee22585482

View file

@ -978,9 +978,9 @@ public abstract class AbstractEfaProvider implements NetworkProvider
{
if ((location.type == LocationType.POI || location.type == LocationType.ADDRESS) && location.lat != 0 && location.lon != 0)
{
uri.append("&nameInfo_").append(paramSuffix).append("=").append(String.format("%2.6f:%2.6f", location.lon / 1E6, location.lat / 1E6))
.append(":WGS84[DD.dddddd]");
uri.append("&typeInfo_").append(paramSuffix).append("=coord");
uri.append("&type_").append(paramSuffix).append("=coord");
uri.append("&name_").append(paramSuffix).append("=").append(String.format("%2.6f:%2.6f", location.lon / 1E6, location.lat / 1E6)).append(
":WGS84[DD.dddddd]");
}
else
{