Looks like a scope problem. If the bounds should contain every clicked
point it must defined globally, not with every click anew.

To avoid my previously mentioned conflict you can do this

bounds.extend(location);
carte.setCenter(bounds.getCenter());

or simply

carte.fitBounds(bounds);

or without involving the bounds

carte.setCenter(location);


On Jun 18, 12:06 pm, olivier <[email protected]> wrote:
> OK, seemed obvious for the center problem. But isn't ther a "simple
> way" (a readymade function like fitBounds ;-D) doing the job ? Do i
> have to calculate the new NorthEast and southWest bounds with the new
> marker?
>
> But anyway, even without centering the redrawn map, if i remove the
> line
> carte.setCenter(location);
> the zoom doesn't fit optimally the map.
>
> I could'nt find a example sofar for v3 to do it.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
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-js-api-v3?hl=en.

Reply via email to