Android™
Android™
Google Maps Geolocation Request
See more REST Examples
Demonstrates how make a Google Maps Geolocation REST API request.Chilkat Android™ Downloads
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
boolean success = false;
// This example duplicates the following CURL request:
// curl -d @your_filename.json -H "Content-Type: application/json" -i "https://www.googleapis.com/geolocation/v1/geolocate?key=YOUR_API_KEY"
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkRest rest = new CkRest();
// Connect to the Google API REST server.
boolean bTls = true;
int port = 443;
boolean bAutoReconnect = true;
success = rest.Connect("www.googleapis.com",port,bTls,bAutoReconnect);
// Add the Content-Type request header.
rest.AddHeader("Content-Type","application/json");
// Add your API key as a query parameter
rest.AddQueryParam("key","YOUR_API_KEY");
// The JSON query is contained in the body of the HTTP POST.
// This is a sample query (which we'll dynamically build in this example)
// {
// "homeMobileCountryCode": 310,
// "homeMobileNetworkCode": 260,
// "radioType": "gsm",
// "carrier": "T-Mobile",
// "cellTowers": [
// {
// "cellId": 39627456,
// "locationAreaCode": 40495,
// "mobileCountryCode": 310,
// "mobileNetworkCode": 260,
// "age": 0,
// "signalStrength": -95
// }
// ],
// "wifiAccessPoints": [
// {
// "macAddress": "01:23:45:67:89:AB",
// "signalStrength": 8,
// "age": 0,
// "signalToNoiseRatio": -65,
// "channel": 8
// },
// {
// "macAddress": "01:23:45:67:89:AC",
// "signalStrength": 4,
// "age": 0
// }
// ]
// }
CkJsonObject json = new CkJsonObject();
json.AppendInt("homeMobileCountryCode",310);
json.AppendInt("homeMobileNetworkCode",260);
json.AppendString("radioType","gsm");
json.AppendString("carrier","T-Mobile");
CkJsonArray aCellTowers = new CkJsonArray();
json.AppendArray2("cellTowers",aCellTowers);
CkJsonObject oCellTower = new CkJsonObject();
aCellTowers.AddObjectAt2(0,oCellTower);
oCellTower.AppendInt("cellId",39627456);
oCellTower.AppendInt("locationAreaCode",40495);
oCellTower.AppendInt("mobileCountryCode",310);
oCellTower.AppendInt("mobileNetworkCode",260);
oCellTower.AppendInt("age",0);
oCellTower.AppendInt("signalStrength",-95);
CkJsonArray aWifi = new CkJsonArray();
json.AppendArray2("wifiAccessPoints",aWifi);
CkJsonObject oPoint = new CkJsonObject();
aWifi.AddObjectAt2(0,oPoint);
oPoint.AppendString("macAddress","01:23:45:67:89:AB");
oPoint.AppendInt("signalStrength",8);
oPoint.AppendInt("age",0);
oPoint.AppendInt("signalToNoiseRatio",-65);
oPoint.AppendInt("channel",8);
aWifi.AddObjectAt2(1,oPoint);
oPoint.AppendString("macAddress","01:23:45:67:89:AC");
oPoint.AppendInt("signalStrength",4);
oPoint.AppendInt("age",0);
String responseJson = rest.fullRequestString("POST","/geolocation/v1/geolocate",json.emit());
if (rest.get_LastMethodSuccess() == false) {
Log.i(TAG, rest.lastErrorText());
return;
}
// When successful, the response code is 200.
if (rest.get_ResponseStatusCode() != 200) {
// Examine the request/response to see what happened.
Log.i(TAG, "response status code = " + String.valueOf(rest.get_ResponseStatusCode()));
Log.i(TAG, "response status text = " + rest.responseStatusText());
Log.i(TAG, "response header: " + rest.responseHeader());
Log.i(TAG, "response JSON: " + responseJson);
Log.i(TAG, "---");
Log.i(TAG, "LastRequestStartLine: " + rest.lastRequestStartLine());
Log.i(TAG, "LastRequestHeader: " + rest.lastRequestHeader());
return;
}
json.put_EmitCompact(false);
Log.i(TAG, "JSON request body: " + json.emit());
// The JSON response should look like this:
// {
// "location": {
// "lat": 37.4248297,
// "lng": -122.07346549999998
// },
// "accuracy": 1145.0
// }
Log.i(TAG, "JSON response: " + responseJson);
CkJsonObject jsonResp = new CkJsonObject();
jsonResp.Load(responseJson);
CkJsonObject jsonLoc = new CkJsonObject();
jsonResp.ObjectOf2("location",jsonLoc);
// Any JSON value can be obtained as a string..
String latitude = jsonLoc.stringOf("lat");
Log.i(TAG, "latitude = " + latitude);
String longitude = jsonLoc.stringOf("lng");
Log.i(TAG, "longitude = " + longitude);
String accuracy = jsonResp.stringOf("accuracy");
Log.i(TAG, "accuracy = " + accuracy);
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}