在 Android Studio [Java] 中加载 mapbox 地图后绘制标记
Drawing markers after mapbox map loads in Android Studio [Java]
这是我在 Android Studio 中的第一个项目,基本上我正在尝试使用 Mapbox 开发具有多个标记的地图。所以,我的问题是在地图上加载标记时需要花费大量时间来加载 ~3-5 秒并且应用程序冻结,直到我从 API 调用中获得 json。
这是我对 API:
的 retrofit2 调用
private void getNearbyStations() {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("***")//my API, not relevant
.addConverterFactory(GsonConverterFactory.create())
.build();
jsonPlaceHolderApi = retrofit.create(JsonPlaceHolderApi.class);
Utilizator utilizator = Utilizator.getUtilizatorInstance();
Call<ResponseNearbyStations> call = jsonPlaceHolderApi.getNearbyStations(utilizator.getAuthentificationKey(), 47.1744354, 27.5746688);//Static Lat and Long for test, in future will use current location
try {
ResponseNearbyStations body = call.execute().body();
JsonObject jsonObject = body.getData();
JsonArray ja_data = jsonObject.getAsJsonArray("stationAround");
Station[] statiiPrimite = gson.fromJson(ja_data, Station[].class);
stationList = new ArrayList<>(Arrays.asList(statiiPrimite));
} catch (IOException e) {
e.printStackTrace();
}
}
我将我所有的 Stations 保存在一个名为 stationList 的 ArrayList 中。在 Station class 除了其他信息外,我还有纬度和经度坐标。
这是我的 addMarkers 函数:
private void addMarkers(@NonNull Style loadedMapStyle) {
List<Feature> features = new ArrayList<>();
for(Station statie:stationList){
features.add(Feature.fromGeometry(Point.fromLngLat(Double.valueOf(statie.getCoordinates().getLongitude()),
Double.valueOf(statie.getCoordinates().getLatitude()))));
}
loadedMapStyle.addSource(new GeoJsonSource(MARKER_SOURCE, FeatureCollection.fromFeatures(features)));
loadedMapStyle.addLayer(new SymbolLayer(MARKER_STYLE_LAYER, MARKER_SOURCE)
.withProperties(
PropertyFactory.iconAllowOverlap(true),
PropertyFactory.iconIgnorePlacement(true),
PropertyFactory.iconImage(MARKER_IMAGE),
PropertyFactory.iconOffset(new Float[]{0f, -52f})
));
}
所以经过几次搜索我发现这里的"problem"是我在getNearbyStations中使用call.execute() () 这不是异步的,所以主线程正在等待 Stations 加载。我尝试使用 call.enqueue 但之后我遇到了另一个问题,在我的函数 addMarkers 中我得到 NullPointerException 因为 stationList 没有有足够的时间加载
for(Station statie:stationList){
features.add(Feature.fromGeometry(Point.fromLngLat(Double.valueOf(statie.getCoordinates().getLongitude()),
Double.valueOf(statie.getCoordinates().getLatitude()))));
}
我猜我必须使用某种线程来解决这个问题,但我是 Android Studio 使用线程的初学者,我想不通。
我认为解决方案是:
1.Display地图空
2.Add 标记加载后。
这样用户就不会遇到任何卡顿现象。欢迎任何想法如何解决这个问题。
由于问题是您希望应用程序不等待同步功能,因此我建议为此使用异步任务。一旦调用异步任务的 onPostExecute
回调,您就可以执行 addMarkers
函数。但是请确保仅在 onMapReady
中设置样式后才 运行 addMarkers
请参阅有关如何使用异步任务的文档:https://developer.android.com/reference/android/os/AsyncTask
使用异步任务获得的好处是,Android 将在不同的线程中执行它,从而减轻主线程的负载。
这是我在 Android Studio 中的第一个项目,基本上我正在尝试使用 Mapbox 开发具有多个标记的地图。所以,我的问题是在地图上加载标记时需要花费大量时间来加载 ~3-5 秒并且应用程序冻结,直到我从 API 调用中获得 json。 这是我对 API:
的 retrofit2 调用private void getNearbyStations() {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("***")//my API, not relevant
.addConverterFactory(GsonConverterFactory.create())
.build();
jsonPlaceHolderApi = retrofit.create(JsonPlaceHolderApi.class);
Utilizator utilizator = Utilizator.getUtilizatorInstance();
Call<ResponseNearbyStations> call = jsonPlaceHolderApi.getNearbyStations(utilizator.getAuthentificationKey(), 47.1744354, 27.5746688);//Static Lat and Long for test, in future will use current location
try {
ResponseNearbyStations body = call.execute().body();
JsonObject jsonObject = body.getData();
JsonArray ja_data = jsonObject.getAsJsonArray("stationAround");
Station[] statiiPrimite = gson.fromJson(ja_data, Station[].class);
stationList = new ArrayList<>(Arrays.asList(statiiPrimite));
} catch (IOException e) {
e.printStackTrace();
}
}
我将我所有的 Stations 保存在一个名为 stationList 的 ArrayList 中。在 Station class 除了其他信息外,我还有纬度和经度坐标。
这是我的 addMarkers 函数:
private void addMarkers(@NonNull Style loadedMapStyle) {
List<Feature> features = new ArrayList<>();
for(Station statie:stationList){
features.add(Feature.fromGeometry(Point.fromLngLat(Double.valueOf(statie.getCoordinates().getLongitude()),
Double.valueOf(statie.getCoordinates().getLatitude()))));
}
loadedMapStyle.addSource(new GeoJsonSource(MARKER_SOURCE, FeatureCollection.fromFeatures(features)));
loadedMapStyle.addLayer(new SymbolLayer(MARKER_STYLE_LAYER, MARKER_SOURCE)
.withProperties(
PropertyFactory.iconAllowOverlap(true),
PropertyFactory.iconIgnorePlacement(true),
PropertyFactory.iconImage(MARKER_IMAGE),
PropertyFactory.iconOffset(new Float[]{0f, -52f})
));
}
所以经过几次搜索我发现这里的"problem"是我在getNearbyStations中使用call.execute() () 这不是异步的,所以主线程正在等待 Stations 加载。我尝试使用 call.enqueue 但之后我遇到了另一个问题,在我的函数 addMarkers 中我得到 NullPointerException 因为 stationList 没有有足够的时间加载
for(Station statie:stationList){
features.add(Feature.fromGeometry(Point.fromLngLat(Double.valueOf(statie.getCoordinates().getLongitude()),
Double.valueOf(statie.getCoordinates().getLatitude()))));
}
我猜我必须使用某种线程来解决这个问题,但我是 Android Studio 使用线程的初学者,我想不通。 我认为解决方案是:
1.Display地图空
2.Add 标记加载后。
这样用户就不会遇到任何卡顿现象。欢迎任何想法如何解决这个问题。
由于问题是您希望应用程序不等待同步功能,因此我建议为此使用异步任务。一旦调用异步任务的 onPostExecute
回调,您就可以执行 addMarkers
函数。但是请确保仅在 onMapReady
addMarkers
请参阅有关如何使用异步任务的文档:https://developer.android.com/reference/android/os/AsyncTask
使用异步任务获得的好处是,Android 将在不同的线程中执行它,从而减轻主线程的负载。