我在我的项目中使用了Google地图。我在构建项目时看到此错误。
error: cannot find symbol method getMap()
我没有关于此错误的任何详细信息,也无法构建我的项目, 这是我的代码:
mGoogleApiClient = new GoogleApiClient.Builder(ActivityMaps.this)
.addApi(Places.GEO_DATA_API)
.enableAutoManage(this, GOOGLE_API_CLIENT_ID, this)
.addConnectionCallbacks(this)
.build();
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
//SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
// .findFragmentById(R.id.map);
map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
map.getUiSettings().setZoomGesturesEnabled(true);
map.setTrafficEnabled(true);
map.getUiSettings().setZoomControlsEnabled(true);
map.setMyLocationEnabled(true);
map.setOnMyLocationButtonClickListener(new GoogleMap.OnMyLocationButtonClickListener() {
@Override
public boolean onMyLocationButtonClick() {
statusCheck();
return false;
}
});
如果可以,请帮助我!谢谢。