0

在这里,我可以通过获取用户的纬度和经度来在谷歌地图上显示用户现在我想显示在用户位置发生的事件附近,并希望显示附近的场地,因此选择了foursquare api。这是 第二个 这是我在地图上显示用户的代码

        R.id.map)).getMap();
    // Creating location manager and location classes instances
    locationManager = (LocationManager) this
            .getSystemService(LOCATION_SERVICE);
    locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0,
            0, this);
    ;
    mCurrentLocation = locationManager
            .getLastKnownLocation(LocationManager.GPS_PROVIDER);
    // if location found display as a toast the current latitude and
    // longitude
    if (mCurrentLocation != null) {

        Toast.makeText(
                this,
                "Current location:\nLatitude: "
                        + mCurrentLocation.getLatitude() + "\n"
                        + "Longitude: " + mCurrentLocation.getLongitude(),
                Toast.LENGTH_LONG).show();
        USER_LOCATION = new LatLng(mCurrentLocation.getLatitude(), mCurrentLocation.getLongitude());

        // adding marker
        googleMap.addMarker(new MarkerOptions().position(USER_LOCATION).icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_ROSE)).title("Your current location"));
         // Move the camera instantly to hamburg with a zoom of 15.
        googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(USER_LOCATION, 12));

        // Zoom in, animating the camera.
        googleMap.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);

根据我的代码,给我一个简短的想法如何使用该 api.based。

4

1 回答 1

0

抱歉,您想要完整的复制和粘贴教程吗?

你设法获得了一个位置,你有一个你想使用的 api 的文档......所以使用它吗?

从 Android 获取您拥有的位置。格式化它以便 api 可以使用它(也许他们需要坐标,也许是城市名称,...),然后调用 Web 服务。你会得到一个结果并且必须解释它。

你的问题究竟出在哪里?

于 2013-10-03T08:23:33.760 回答