Skip to content Skip to sidebar Skip to footer

Googlemaps Getting Offset

Hey everyone anyone ever tried similar incident its inside a jquery tab system and it works alone or any other place at the website but when inside a tab its getting this offset in

Solution 1:

You need to call google.maps.event.trigger(map, 'resize');


Solution 2:

$("#liKort").click(function () {
        google.maps.event.trigger(map, 'resize');
        map.setCenter(marker.position);
    });

Post a Comment for "Googlemaps Getting Offset"