I don't know whether i am posting in right section or not but anyways here is my post.
I am right now doing some funky stuffs with Google maps in asp.net web form.
My current web form displays listings from the database and we do have the location coordinate for each location to show mark ups on Google maps. This works fine but now i want to update the listings on the form when any user do zooming and panning
on the Google map.
Here is the working example of the scenario that i am talking abouthttp://www.zipcar.com/brighton/find-cars. On this page just Zoom the map or move through
map with cursor and you will see listings on right is updated.
I am using ASP.Net 2.0 so expecting the answer accordingly.
Member
120 Points
41 Posts
Please help with Google maps
Nov 30, 2011 10:34 PM|nishant_g8|LINK
I don't know whether i am posting in right section or not but anyways here is my post.
I am right now doing some funky stuffs with Google maps in asp.net web form.
My current web form displays listings from the database and we do have the location coordinate for each location to show mark ups on Google maps. This works fine but now i want to update the listings on the form when any user do zooming and panning on the Google map.
Here is the working example of the scenario that i am talking about http://www.zipcar.com/brighton/find-cars. On this page just Zoom the map or move through map with cursor and you will see listings on right is updated.
I am using ASP.Net 2.0 so expecting the answer accordingly.
Thanks in advance!!
Cheers.
Participant
1535 Points
545 Posts
Re: Please help with Google maps
Dec 01, 2011 12:55 AM|rkchaudary|LINK
map = new google.maps.Map( ................
google.maps.event.addListener(map, 'tilesloaded', function(event){
// Write logic to load your data
});
google.maps.event.addListener(map, 'dragend', function(event) {
// Write logic to load your data
});
RkChaudary
blog
Member
120 Points
41 Posts
Re: Please help with Google maps
Feb 06, 2012 11:49 PM|nishant_g8|LINK
Can anyone please shade some lights here?
Thanks
Nishant