79295757

Date: 2024-12-19 22:44:39
Score: 1
Natty:
Report link
map = new google.maps.Map(document.getElementById('map'), {
            center: {lat: 39.769145, lng: -86.158176},
            zoom: 14,
            gestureHandling: 'greedy'
        });

When you create your map object shown above, the props "center" and "zoom" are static props and do not allow for dynamic changes to your map view.

Try changing "center" to "defaultCenter" and "zoom" to "defaultZoom".

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Gaz