Do something when I'm inside radius of circle

后端 未结 2 1807
灰色年华
灰色年华 2020-12-05 21:43

I\'m using Google Maps API.

What I want is when I move into some specific location and there is a circle I already have draw on the map, it will then go to another A

相关标签:
2条回答
  • 2020-12-05 22:18

    It sounds like describing Google's geofences API Geofencing tutorial

    0 讨论(0)
  • 2020-12-05 22:30

    You could use geofencing, but if you are simply trying to determine if your current location is within a circle drawn on a map, you could use this technique.

    Simply compare the distance from the current location to the center of the circle, and check if the distance is less than the radius.

    I answered a similar question here, where you can see more info, and screenshot examples.

    Note that the code below uses the depricated onMyLocationChangeListener, but you could use any type of location callback to do this, including FusedLocationProviderApi.

    googleMap.setOnMyLocationChangeListener(new GoogleMap.OnMyLocationChangeListener() {
                @Override
                public void onMyLocationChange(Location location) {
                    float[] distance = new float[2];
    
                    Location.distanceBetween( location.getLatitude(), location.getLongitude(),
                            mCircle.getCenter().latitude, mCircle.getCenter().longitude, distance);
    
                    if( distance[0] < mCircle.getRadius() ){
                        //current location is within circle
                        //start new activity
                        Intent i = new Intent(ThisActivity.this, OtherActivity.class);
                        ThisActivity.this.startActivity(i);
                    }
    
                }
            });
    

    Edit: Here is a fully working and tested class that uses the FusedLocationApi to get the current location:

    import android.content.Intent;
    import android.graphics.Color;
    import android.location.Location;
    import android.os.Bundle;
    import android.support.v7.app.ActionBarActivity;
    import android.util.Log;
    import android.widget.Toast;
    
    import com.google.android.gms.common.ConnectionResult;
    import com.google.android.gms.common.api.GoogleApiClient;
    import com.google.android.gms.location.LocationListener;
    import com.google.android.gms.location.LocationRequest;
    import com.google.android.gms.location.LocationServices;
    import com.google.android.gms.maps.CameraUpdateFactory;
    import com.google.android.gms.maps.GoogleMap;
    import com.google.android.gms.maps.SupportMapFragment;
    import com.google.android.gms.maps.model.Circle;
    import com.google.android.gms.maps.model.CircleOptions;
    import com.google.android.gms.maps.model.LatLng;
    import com.google.android.gms.maps.model.LatLngBounds;
    import com.google.android.gms.maps.model.MarkerOptions;
    
    public class MapsActivity extends ActionBarActivity implements
            GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, LocationListener {
    
        private GoogleMap mMap;
        LocationRequest mLocationRequest;
        GoogleApiClient mGoogleApiClient;
        Circle mCircle;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_maps);
            setUpMapIfNeeded();
    
            buildGoogleApiClient();
            mGoogleApiClient.connect();
        }
    
        @Override
        protected void onResume() {
            super.onResume();
            setUpMapIfNeeded();
        }
    
        @Override
        protected void onPause(){
            super.onPause();
            if (mGoogleApiClient != null) {
                LocationServices.FusedLocationApi.removeLocationUpdates(mGoogleApiClient, this);
            }
        }
    
    
        protected synchronized void buildGoogleApiClient() {
            Toast.makeText(this,"buildGoogleApiClient",Toast.LENGTH_SHORT).show();
            mGoogleApiClient = new GoogleApiClient.Builder(this)
                    .addConnectionCallbacks(this)
                    .addOnConnectionFailedListener(this)
                    .addApi(LocationServices.API)
                    .build();
        }
    
        @Override
        public void onConnected(Bundle bundle) {
            Toast.makeText(this,"onConnected", Toast.LENGTH_SHORT).show();
    
            mLocationRequest = new LocationRequest();
            mLocationRequest.setInterval(10);
            mLocationRequest.setFastestInterval(10);
            mLocationRequest.setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY);
            mLocationRequest.setSmallestDisplacement(0.1F);
    
            LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this);
        }
    
    
        private void setUpMapIfNeeded() {
            // Do a null check to confirm that we have not already instantiated the map.
            if (mMap == null) {
                // Try to obtain the map from the SupportMapFragment.
                mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
                        .getMap();
                // Check if we were successful in obtaining the map.
                if (mMap != null) {
                    setUpMap();
                }
            }
        }
    
        private void setUpMap() {
            mMap.getUiSettings().setMapToolbarEnabled(true);
            mMap.getUiSettings().setZoomControlsEnabled(true);
            mMap.setMyLocationEnabled(true);
    
            circle();
    
        }
    
        public void circle()
        {
            double radiusInMeters = 50.0;
            int strokeColor = 0xffff0000; //red outline
            int shadeColor = 0x44ff0000; //opaque red fill
    
            mCircle = mMap.addCircle (new CircleOptions()
                    .center(new LatLng(37.9614, -122.105))
                    .radius(radiusInMeters)
                    .fillColor(shadeColor)
                    .strokeColor(strokeColor)
                    .strokeWidth(1));
        }
    
        @Override
        public void onConnectionSuspended(int i) {
            Toast.makeText(this,"onConnectionSuspended",Toast.LENGTH_SHORT).show();
        }
    
        @Override
        public void onConnectionFailed(ConnectionResult connectionResult) {
            Toast.makeText(this,"onConnectionFailed",Toast.LENGTH_SHORT).show();
        }
    
        @Override
        public void onLocationChanged(Location location) {
    
            Log.d("locationtesting",  "lat: " + location.getLatitude() + " lon: " + location.getLongitude());
    
            Toast.makeText(this,"Location Changed",Toast.LENGTH_SHORT).show();
    
            float[] distance = new float[2];
    
            Location.distanceBetween( location.getLatitude(), location.getLongitude(),
                    mCircle.getCenter().latitude, mCircle.getCenter().longitude, distance);
    
            if( distance[0] < mCircle.getRadius() ){
                //current location is within circle
                //start new activity
                Intent i = new Intent(this, OtherActivity.class);
                startActivity(i);
            }
        }
    }
    

    Layout xml:

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
        android:layout_height="match_parent" android:id="@+id/map" tools:context=".MapsActivity"
        android:name="com.google.android.gms.maps.SupportMapFragment" />
    

    Dependencies in build.gradle:

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile 'com.android.support:appcompat-v7:22.1.1'
        compile 'com.google.android.gms:play-services:7.0.0'
    }
    

    First I did a test without the call to startActivity() just to make sure that my current location was within the circle. As you can see in the screenshot, it was:

    Map Test

    Then, I added the call to startActivity() in the onLocationChanged() callback, and it launched OtherActivity immediately after launching the app.

    0 讨论(0)
提交回复
热议问题