Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There is a google MapView and projection circle zone. if user keep move inside projection circle there should be pop up messagebox so that i need listener and projection implementanion.

I dont know which listener i have to use. ıf you help me i appreciate that. thanks

share|improve this question

1 Answer

try with the distance it works for you I think: distanceBetween

Yo can implement your listener with a Runnable:

  private Handler handler = new Handler();
  public static final int circleCheckingDelay = 1000; // in ms


  private Runnable circleChecker = new Runnable()
  {
      public void run()
      {
          float distance= getDistance(GeoPoint p1, GeoPoint p2);
          if(distance < ...)
          {
            //do something
          }
          handler.removeCallbacks(circleChecker);
          handler.postDelayed(circleChecker, circleCheckingDelay);
      }
  };

Add the following functions in your mapActivity:

OnResume:

  handler.postDelayed(circleChecker, circleCheckingDelay);

OnPause:

  handler.removeCallbacks(circleChecker);

Check this link too: how to find the distance between two geopoints?

for example the function to get the distance:

public float getDistance(GeoPoint p1, GeoPoint p2) {
    double lat1 = ((double)p1.getLatitudeE6()) / 1e6;
    double lng1 = ((double)p1.getLongitudeE6()) / 1e6;
    double lat2 = ((double)p2.getLatitudeE6()) / 1e6;
    double lng2 = ((double)p2.getLongitudeE6()) / 1e6;
    float [] dist = new float[1];
    Location.distanceBetween(lat1, lng1, lat2, lng2, dist);
    return dist[0];
}
share|improve this answer
ıt is not a listener – KSBeyaz Jan 16 at 19:30
I edited hope it helps you – tato469 Jan 17 at 10:14
thanks for your help – KSBeyaz Jan 21 at 22:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.