Yah also you might be talking about using a LatLngBounds object, with one of those you create one then use the extend method on it to add new LatLngs to it then you can get the center from the LatLngBounds object and set the map to center to the result of that something along these lines:
http://code.google.com/apis/maps/documentation/flash/reference.html#LatLngBounds var latLngBounds:LatLngBounds = new LatLngBounds(); latLngBounds.extend(someLatLng); /*maybe a few of these if you want to center around multiple ones, also can get and set the zoom using this object*/ map.setCenter(latLngBounds.getCenter()); -- You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-api-for-flash/-/Ed41X-UixZ0J. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api-for-flash?hl=en.
