korhan-Ö
11/4/2016 - 7:33 PM

Google Map Scroll engelleme aktif.

Scroll engelleme aktif.

/Users/korhanozbek/MEGAsync/#Workspace/#Not Defterim/HTML - CSS - JavaScript/Google Apis/google map info window
<style>
    #map {
        height: 400px;
    }
</style>


<div id="map"></div>
<script>
    var map;
    function initMap() {
        var myLatLng = {lat: 38.726329, lng: 35.481096};

        // Create a map object and specify the DOM element for display.
        map = new google.maps.Map(document.getElementById('map'), {
            center: myLatLng,
            scrollwheel: false,
            zoom: 16
        });

        // Create a marker and set its position.
        var marker = new google.maps.Marker({
            map: map,
            position: myLatLng,
        });
    }
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAq8eagGyl4kFM8GM5bHeFRZt2WCYXUF9A&callback=initMap"
        async defer></script>