I'm creating an Android app that searches for items based on the visible area of the MapView. Is there a way to set up a listener on my MapView to detect when a map has been panned or zoomed?
feedback
|
|
try mapview-overlay-manager, it is a extension for overlayer for android maps, it has some simplified OnGestureListener, few example:
link:http://code.google.com/p/mapview-overlay-manager/ hope it helps | ||||
|
feedback
|
|
You can create a SimpleMapView that extends MapView.
You have the Listeners you can put the code for pan or zoom. Then in you xml:
And then in your code you can specify the Pan Listener:
| |||
|
feedback
|
|
The only way that I can think of is to extends the MapView and override the OnTouchEvent and watch for the Up action. This will tell you that the user has finished moving and you can get the lat/lon span to determine the region you should check out. | |||
|
feedback
|
|
look at this this solves the problem at the origin! http://pa.rezendi.com/2010/03/responding-to-zooms-and-pans-in.html | |||
|
feedback
|
|
Sadly, there is no built-in functionality to do this in the MapView tools (a strange oversight since this functionality is in the JavaScript SDK, as well as the iOS SDK). You can deal with this easily enough though by using a Runnable and just polling the MapView. I do this by keeping track of the "last" state of:
And then comparing them to the current values. If the values of changed, you know the map view has moved. If not, you can do nothing. Either way, reschedule the runnable for another run after 500ms or so and repeat the process. You can use onResume() and onPause() to remove the callback for the Runnable and restart it as necessary. | |||
feedback
|
|
The MapView class can track changes using the onLayout method. i.e.
| |||||
feedback
|
|
There is no built-in Google Maps functionality in Android to deal with this issue. However, you can extend the MapView and implement the needed events. See this blog post for details (comes with Github source code): http://bricolsoftconsulting.com/2011/10/31/extending-mapview-to-add-a-change-event/ | |||
|
feedback
|
|
You can create a SimpleMapView that extends MapView.
You have the Listeners you can put the code for pan or zoom. Then in you xml:
| |||
|
feedback
|