thx for the answer but it doesnt fix my problem
im allready centering the map on marker befor zooming by calling this
script:
function zoom_fusiontables(lat,lng){
var point = new google.maps.LatLng(lat,lng);
map.setCenter(point);
if (map.getZoom()>13){
var naeher = map.getZoom()+1;
map.setZoom(naeher);
}else{
map.setZoom(14);
}
if i load the fusiontable on my v3_map:
http://www.mario-baldauf.org/API_v3/verortung/index.html
click third icon from top on menu bar on left side - search e.g.
Bettelwurf
infowinow moves away from marker if i click the zoom-link in infowindow
my fusiontables query/ infowindow/ zoom-code starts on line 54 of
verortung.js file
http://www.mario-baldauf.org/API_v3/verortung/skripte/verortung.js
function load_fusiontables() {
clear_fusiontables();
fusiontables = document.getElementById('fusiontablesUrl').value;
kml_fusiontables = new google.maps.FusionTablesLayer(271720, { map:map,
suppressInfoWindows:true, heatmap:false, query: "SELECT Location FROM
271720 WHERE Name contains '" + fusiontables + "'" });
...
--
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.