/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/provider/GoogleStationProvider.java
ViewVC logotype

Diff of /android/TrainInfo/src/dk/thoerup/traininfo/provider/GoogleStationProvider.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1065 by torben, Mon Aug 2 23:18:53 2010 UTC revision 1066 by torben, Thu Sep 16 15:32:42 2010 UTC
# Line 8  import org.json.JSONObject; Line 8  import org.json.JSONObject;
8    
9  import android.location.Location;  import android.location.Location;
10  import android.util.Log;  import android.util.Log;
11  import dk.thoerup.traininfo.StationBean;  import dk.thoerup.android.traininfo.common.StationBean;
12  import dk.thoerup.traininfo.util.DownloadUtil;  import dk.thoerup.traininfo.util.DownloadUtil;
13  @Deprecated  @Deprecated
14  public class GoogleStationProvider implements StationProvider {  public class GoogleStationProvider implements StationProvider {
15    
16                    
17                    
18          public List<StationBean> lookupStationsByName(String name) {          public StationBean lookupStationsByName(String name) {
19                  return null; // Not supported                  return null; // Not supported
20          }          }
21                    
22          @Override          @Override
23          public List<StationBean> lookupStationsByIds(String ids) {          public StationBean lookupStationsByIds(String ids) {
24                  return null;                  return null;
25          }          }
26                    
27          @Override          @Override
28          public List<StationBean> lookupStations(Location location) {          public StationBean lookupStations(Location location) {
                 List<StationBean> stations = new ArrayList<StationBean>();  
29                                    
30                    StationBean stations = new StationBean();
31                    /*
32                  //ToDo: to be nice put the api key into the request                  //ToDo: to be nice put the api key into the request
33                  String urlSource = "http://www.google.com/uds/GlocalSearch?callback=google.search.LocalSearch.RawCompletion&context=1&q=Train%20station&near=" + location.getLatitude() + "%2C" + location.getLongitude() + "&v=1.0";                  String urlSource = "http://www.google.com/uds/GlocalSearch?callback=google.search.LocalSearch.RawCompletion&context=1&q=Train%20station&near=" + location.getLatitude() + "%2C" + location.getLongitude() + "&v=1.0";
34                  //String urlSource = "http://www.google.com/uds/GlocalSearch?callback=google.search.LocalSearch.RawCompletion&context=1&q=Train%20station&near=56.2%2C9.0&v=1.0";                  //String urlSource = "http://www.google.com/uds/GlocalSearch?callback=google.search.LocalSearch.RawCompletion&context=1&q=Train%20station&near=56.2%2C9.0&v=1.0";
# Line 68  public class GoogleStationProvider imple Line 69  public class GoogleStationProvider imple
69                  } catch (Exception e) {                  } catch (Exception e) {
70                          Log.e("Location","Location",e);                          Log.e("Location","Location",e);
71                          return null;                          return null;
72                  }                  }*/
73                  return stations;                  return stations;
74          }          }
75  }  }

Legend:
Removed from v.1065  
changed lines
  Added in v.1066

  ViewVC Help
Powered by ViewVC 1.1.20