If anyone's been to yelp.com, I'd like to do something like their google map with markers for the search results.

Right now I'm just trying to figure out how to take the zip, geocode it, and recenter the gmap to the zip.

If I can find where the zip code is stored from the $form I can run it through some geocoding code and hopefully get a $lat and $lon.

It's somewhere in

[filter0][#default_value]
[view][#value]stdClass Object ([used_filters][filter0]

But my skills are lacking to
1) print it so I know I've located it
2) code reuse some geocoding to get the $lat $lon (gmap and location modules do geocoding, location seems easier to api into)

$lat = 75;
$lon  = 16;
$mymap=array('id' => 'mymap',
             'latitude' => $lat,
             'longitude'=> $lon,
             'zoom' => 13,
             'width' => '100%',
             'height' => '400px',
             'type' => 'Satellite',
);
echo theme('gmap', array('#settings' => $mymap));

The final step would be getting lat's and lon's for each table result's marker... w/ custom markers for their numbering (1st closest = 1, 2nd closest = 2 etc.)