Mapviewで地図を読み込むと地図が表示されるのですが、地図を操作するときは非常にカタンです。でマップを読み込むととてもスムーズSupportMapFragment
です。これは私のコードです:
private void initialize() {
setContentView(R.layout.activity_main);
boolean success = com.here.android.mpa.common.MapSettings.setIsolatedDiskCacheRootPath(
getApplicationContext().getExternalFilesDir(null) + File.separator + ".here-maps",
"com.here.android.tutorial.MapService");
if (!success) {
Toast.makeText(getApplicationContext(), "Unable to set isolated disk cache path.", Toast.LENGTH_LONG);
} else {
final MapView mapView = findViewById(R.id.mapview);
mapView.setVisibility(View.VISIBLE);
ApplicationContext context = new ApplicationContext(this);
MapEngine.getInstance().init(context, new OnEngineInitListener() {
@Override
public void onEngineInitializationCompleted(Error error) {
Map map = new Map();
mapView.setMap(map);
}
});
}
}
私を助けることができる誰か?