我有一个巨大的GeoJson
文件(大约 12MB)要添加到地图片段中。我正在使用 android maps 实用程序库在地图上呈现它。在地图上显示图层大约需要 5-10 秒,在此期间应用程序变得无响应。由于必须在主 UI 线程上添加图层,我无法将其移动到后台线程。有什么办法在此期间保持应用程序响应?或使用该Geojosn
文件的任何替代方法?
我已将该addLayer()
方法移至 UI 线程及其工作。我遇到了一些问题。这是代码。
ThreatMap.java
public class ThreatMap extends AppCompatActivity implements OnMapReadyCallback {
private static final String TAG = "ThreatMap";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.threat_map);
Toolbar toolbar = (Toolbar) findViewById(R.id.app_bar_threat_map);
TextView title = (TextView) findViewById(R.id.main_title);
title.setText(R.string.actionbar_threat_map);
setSupportActionBar(toolbar);
getSupportActionBar().setHomeButtonEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowTitleEnabled(false);
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
ThreatMapRenderingTask task = new ThreatMapRenderingTask();
task.execute(googleMap);
}
private class ThreatMapRenderingTask extends AsyncTask<GoogleMap, Void, GeoJsonLayer> {
ProgressDialog progressDialog;
public ThreatMapRenderingTask() {
progressDialog = new ProgressDialog(ThreatMap.this);
}
@Override
protected void onPreExecute() {
progressDialog.setMessage("Loading Threat Map");
progressDialog.show();
}
@Override
protected GeoJsonLayer doInBackground(GoogleMap... googleMap) {
GoogleMap gMap = googleMap[0];
GeoJsonLayer layer = null ;
PolygonOptions first = new PolygonOptions();
try {
layer = new GeoJsonLayer(gMap, R.raw.threatmap, getApplicationContext());
} catch (IOException e) {
e.printStackTrace();
} catch (JSONException e) {
e.printStackTrace();
}
return layer;
}
@Override
protected void onPostExecute(GeoJsonLayer layer) {
layer.addLayerToMap();
for (GeoJsonFeature feature : layer.getFeatures()) {
if (feature.hasProperty("EX_BOX_ID")) {
String state = feature.getProperty("STATE_PROV");
int ex_box_id = Integer.parseInt(feature.getProperty("EX_BOX_ID"));
String pb_box_id = feature.getProperty("PB_BOX_ID");
if (ex_box_id < 25) {
GeoJsonPolygonStyle polygonStyleRed = new GeoJsonPolygonStyle();
polygonStyleRed.setFillColor(Color.RED);
feature.setPolygonStyle(polygonStyleRed);
} else if (ex_box_id < 50 && ex_box_id > 25) {
GeoJsonPolygonStyle polygonStyleYellow = new GeoJsonPolygonStyle();
polygonStyleYellow.setFillColor(Color.YELLOW);
feature.setPolygonStyle(polygonStyleYellow);
} else {
GeoJsonPolygonStyle polygonStyleGreen = new GeoJsonPolygonStyle();
polygonStyleGreen.setFillColor(Color.GREEN);
feature.setPolygonStyle(polygonStyleGreen);
}
}
}
if (progressDialog.isShowing()) {
progressDialog.dismiss();
}
}
}
}
威胁地图片段.xml
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ThreatMap"
map:cameraTargetLat="78.00"
map:cameraTargetLng="16.00"
map:cameraZoom="3"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto" />
威胁地图.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/app_bar_threat_map"
layout="@layout/appbar" />
<include
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/threat_map_fragment"
android:layout_below="@id/app_bar_threat_map"/>
</LinearLayout>
我有几个问题。
地图片段未缩放到 xml 文件中定义的默认位置。
我使用
GeoJsonPolygonStyle
了方法,并为图层上的多边形添加了颜色。颜色在所有缩放级别都不可见。我必须放大很多,才能看到一些多边形的颜色。这是什么原因,有什么解决办法吗?