如何在Google地图上动态添加标记

时间:2017-10-14 21:29:55

标签: android google-maps android-layout android-fragments google-api

我已在Google map中创建并添加了标记,现在我将用户位置作为输入,并根据用户位置,我想添加另一个标记并在其间绘制一条线。

这就是我所做的。

     //OnCreate()
     mClient= new GoogleApiClient.Builder(this).
                addConnectionCallbacks(this).
                addOnConnectionFailedListener(this).
                addApi(Places.GEO_DATA_API).enableAutoManage(this, this).build();




        mapFragment = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);

     /**
         *
         * @PLACES API
         */


        PlaceAutocompleteFragment autocompleteFragment = (PlaceAutocompleteFragment)
                getFragmentManager().findFragmentById(R.id.place_autocomplete_fragment);

        autocompleteFragment.setOnPlaceSelectedListener(new PlaceSelectionListener() {
            @Override
            public void onPlaceSelected(Place place) {
                // TODO: Get info about the selected place.
                Log.i("Place Name", "Place: " + place.getName());
                LatLng latLng = place.getLatLng();
                destinationLat= latLng.latitude;
                destinationLng= latLng.longitude;


                destinationLatLng= new LatLng(destinationLat, destinationLng);
               /* mapFragment.addMarker(new MarkerOptions().position(destinationLatLng)
                        .title("PAF-KIET"));*/
            }

            @Override
            public void onError(Status status) {
                // TODO: Handle the error.
                Log.i("Error", "An error occurred: " + status);
            }
        });

   @Override
    public void onMapReady(GoogleMap googleMap) {
        LatLng pafKietLocation = new LatLng(24.865498, 67.073302);
        googleMap.addMarker(new MarkerOptions().position(pafKietLocation)
                .title("University"));
        googleMap.setMinZoomPreference(14.0f);
        googleMap.setMaxZoomPreference(74.0f);
        googleMap.moveCamera(CameraUpdateFactory.newLatLng(pafKietLocation));

    }

问题是我无法找到将用户LatLng传递给地图的任何方法。

2 个答案:

答案 0 :(得分:3)

在您的活动中声明GoogleMap map,在onMapReady(GoogleMap googleMap)内添加this.map = googleMap。并且在使用this.map时始终检查为null。在onPlaceSelected

if(this.map != null)
{
    this.map.addMarker(new MarkerOptions().position(destinationLatLng)
                    .title("PAF-KIET"));
}

答案 1 :(得分:1)

像Gurgen说的那样,使用GoogleMap的全局实例然后在需要时使用它,但首先你应该在onCreate()方法中获得map的实例。