我几乎没有开始使用亚马逊地图v2,它一直很好用。现在我想在我的代码中引用地图作为亚马逊网站(https://developer.amazon.com/public/apis/experience/maps/docs-v2/displaying-an-interactive-map-with-the-amazon-maps-api-v2)的解释。
问题是android studio无法识别“getMapAsync”方法。
这是我的代码:
mMapFragment = (MapFragment) getFragmentManager().findFragmentById(
R.id.mapFragment);
// Call .getMapAsync() and pass it an object that implements
// the OnMapReadyCallback interface.
mMapFragment.getMapAsync(new OnMapReadyCallback() {
@Override
public void onMapReady(AmazonMap amazonMap) {
// This method is called when the map is ready. The AmazonMap
// object provided to this method will never be null.
// Use the map reference to set UI settings and other options.
amazonMap.getUiSettings().setZoomControlsEnabled(true);
amazonMap.setTrafficEnabled(true);
}
});
在我的build.gradle(项目)中我有这个:
allprojects {
repositories {
jcenter()
mavenLocal()
}
}
在我的build.gradle(模块)中我包含了这个:
dependencies {
...other unrelated dependencies
compile ('com.amazon.android:amazon-maps-api:2.0')
}
先谢谢你们。
答案 0 :(得分:0)