0

我已经为我的地图片段实现了一个标记,但是当我在设备上运行应用程序时,地图片段显示为灰色。它应该显示一个标记和一个地理位置。我的问题是这可能是不是 API 版本的问题被支持或调试键有问题。代码实现也可能有问题吗?

 public class MapGmit extends FragmentActivity implements OnGestureListener 
 {    

    private static final int MAJOR_MOVE = 0;
        //MapView map;
        private GoogleMap mMap;

        @Override
        protected void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_map_gmit);
            /*map = (MapView)findViewById(R.id.map);
            map.setBuiltInZoomControls(true);*/

            //code to add a map marker at GMIT geographic location
            GoogleMap mMap = ((SupportMapFragment)  getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
            mMap.addMarker(new MarkerOptions()
                    .position(new LatLng(53.271900177, -9.04889965057))
                    .title("GMIT Galway Location"));;
        }
}
4

0 回答 0