Android AddMarker今天停止工作

时间:2015-04-12 14:54:08

标签: android google-maps-markers google-maps-api-2

我的应用程序存在问题,2周前应用正常运行。今天停止...谷歌地图加载,但不添加迈克尔,不要getlatlong。我尝试着每一个人。这是我的代码:

private void initilizeMap() {
    if (googleMap == null) {
        googleMap = ((MapFragment) getFragmentManager().findFragmentById(
                R.id.map)).getMap();

        // check if map is created successfully or not
        if (googleMap == null) {
            Toast.makeText(getActivity(), "Sorry! unable to create maps",
                    Toast.LENGTH_SHORT).show();
        }
    }
    lm = (LocationManager)  getActivity().getSystemService(getActivity().LOCATION_SERVICE);
    location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER); // <5>
    if (location != null) {
        Log.d(TAG, location.toString());
        this.onLocationChanged(location); // <6>
    }
    }

我添加标记:

    Marker m = googleMap.addMarker(new MarkerOptions()
                        .title("title")
                        .position(new LatLng(lat, lng)));

我不知道为什么停止工作。; /在清单中我获得了所有许可。

0 个答案:

没有答案