我可以使用以下代码从Android发布到Google Place操作,以便在here中发布地点。
public void postMyPlaces(final double lat, final double lng, String name){
Log.i(TAG," postMyPlaces called");
Thread t = new Thread(){
@Override
public void run() {
super.run();
String url = "https://maps.googleapis.com/maps/api/place/add/json?sensor=true&key=" +GOOGLE_API_KEY ;
HttpParams httpParameters = new BasicHttpParams();
// Set the timeout in milliseconds until a connection is established.
// The default value is zero, that means the timeout is not used.
int timeoutConnection = 3000;
HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
// Set the default socket timeout (SO_TIMEOUT)
// in milliseconds which is the timeout for waiting for data.
int timeoutSocket = 5000;
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
DefaultHttpClient httpClient = new DefaultHttpClient(httpParameters);
HttpPost httpPost = new HttpPost(url);
Log.i(TAG," postMyPlaces called "+ url);
httpPost.setHeader("Content-type", "application/json");
//Create a json request object to send it via HTTPS
LocationModel uLocation = new LocationModel(Double.toString(lat),Double.toString(lng));
MyPlacesModelImpl myPlacesPayload = new MyPlacesModelImpl("50","My Car","parking","en-AU",uLocation);
StringEntity entity = null;
try {
entity = new StringEntity(myPlacesPayload.toJSON().toString());
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
httpPost.setEntity(entity);
HttpResponse httpResponse = null;
try {
httpResponse = httpClient.execute(httpPost);
String resp = httpResponse.toString();
Log.i(TAG,resp);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
};
};
t.start();
}
我得到了回复#34;好的"。 但是如何看到我在地图中添加的这些地方????请帮忙
答案 0 :(得分:0)
"地点报告请求用于添加新地点或删除现有地点。新地点将立即在您的应用程序启动的放置附近搜索中提供,并将进入审核队列以考虑用于Google地图。在审核过程批准之前,新添加的地方不会出现在地方文本搜索或雷达搜索结果中,也不会出现在其他应用程序中。 (从:https://developers.google.com/places/documentation/actions#PlaceReports)
此网页包含放置附近搜索: https://developers.google.com/places/documentation/search