我有一个直接使用MapView且没有片段的活动。我需要渲染Geoshapes https://developers.google.com/maps/documentation/android-sdk/shapes,所以使用MapView是不可能的,我需要GoogleMap对象。我已经找到了很多使用getMapAsync()的示例,但是使用了片段,这不是我的情况。
public class MapActivity extends Activity{
private MapView map;
protected void onCreate(Bundle savedInstanceState) {
map = findViewById(R.id.mapview);
谢谢。