2

is there support for geo fencing on Android if yes then what is the earliest platform that support Geo fencing feature.

waseemwk
  • 1,499
  • 3
  • 15
  • 44
  • 1
    http://stackoverflow.com/questions/10497977/how-to-notify-user-when-he-entered-into-a-movie-theater-in-android might help you – dss539 Sep 17 '12 at 16:41

2 Answers2

1

There wasn't support at the time of your question but Google just released that feature as part of Google IO 2013:

http://developer.android.com/reference/com/google/android/gms/location/Geofence.html

Ejmedina
  • 509
  • 5
  • 13
0

By Google Maps, do you mean the Android location manager? The Google Maps application itself doesn't appear to have that feature built in.

Depending on what you're planning to use it for, you could most definitely implement a simple geofencing feature yourself using the GPS libraries (i.e. LocationManager) and a simple collision detection algorithm like point-in-polygon or a bounding box check, and display it on a map control.

ravuya
  • 8,586
  • 4
  • 30
  • 33