git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@35 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-07-29 07:45:14 +00:00
parent 2b76ff857a
commit 8a67ce69dd

View file

@ -61,6 +61,14 @@ public interface NetworkProvider
*/
List<Station> nearbyStations(double lat, double lon, int maxDistance, int maxStations) throws IOException;
/**
* Look up location of station.
*
* @param stationId
* id of station to look up
* @return location
* @throws IOException
*/
StationLocationResult stationLocation(String stationId) throws IOException;
/**