/[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 255 by torben, Mon Aug 10 17:01:51 2009 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
14  public class GoogleStationProvider implements StationProvider {  public class GoogleStationProvider implements StationProvider {
15    
16          List<StationBean> stations = new ArrayList<StationBean>();          
17            
18            public StationBean lookupStationsByName(String name) {
19                    return null; // Not supported
20            }
21            
22            @Override
23            public StationBean lookupStationsByIds(String ids) {
24                    return null;
25            }
26                    
27          @Override          @Override
28          public void lookupStations(Location location) {          public StationBean lookupStations(Location location) {
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";
35    
36                  try {                  try {
37                          String data = DownloadUtil.getContent(urlSource, 30000, "UTF-8");                          String data = DownloadUtil.getContentString(urlSource, 30000);
38                          StringBuilder builder = new StringBuilder(data);                          StringBuilder builder = new StringBuilder(data);
39    
40                          while (builder.charAt(0) != '{')                          while (builder.charAt(0) != '{')
# Line 54  public class GoogleStationProvider imple Line 66  public class GoogleStationProvider imple
66                                  Log.e("Location", title + " " + lat +"," + lng);                                  Log.e("Location", title + " " + lat +"," + lng);
67                          }                          }
68    
   
69                  } catch (Exception e) {                  } catch (Exception e) {
70                          Log.e("Location","Location",e);                          Log.e("Location","Location",e);
71                  }                          return null;
72          }                  }*/
   
         @Override  
         public List<StationBean> getStations() {  
73                  return stations;                  return stations;
74          }          }
   
   
75  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20