views:

54

answers:

0

Am looking for sample code snippets which will help me specifially on how to tag locations on my flex based google maps using coordinates stored in a database. Am using Zend Amf and RemoteObjects to achieve this end.

So far I have succesfully display the map on the onReady event

map.setCenter(new LatLng(0.402096, 37.701416), 6, MapType.PHYSICAL_MAP_TYPE);
map.addControl(new ZoomControl());
map.addControl(new MapTypeControl());

The main challenge is the parsing of coordinates on the zend server end point and looping through in flex to tag the locations with a custom marker.