我需要从Android客户端保存从A点到B点的位置列表,我正在使用带有EntityFramework和SQL Server的WebApi。在android项目中,我正在使用类LatLng
并创建这些位置的List,所以我想在JSON中转换对象latLng并保存为字符串,这将是一个很好的存储方式吗? / p>
public List<LatLng> buildJSONRoute(String jsonRoutes) throws JSONException {...
latLngs = buildJSONRoute(s);
String routes = new Gson().toJson(latLngs);