Asked 6 years ago
27 Jun 2017
Views 858
Cimb

Cimb posted

how to integrate google map in website ?

how to integrate google map in website ? with marker
Mitul Dabhi

Mitul Dabhi
answered Nov 30 '-1 00:00


<div id="googleMap" class="projects-map" style="width: 100%; height: 300px;"></div>
<script>
function myMap()
{
       var myLatLng = {lat: 29.265105, lng:48.081915};

        var map = new google.maps.Map(document.getElementById('googleMap'), {
          zoom: 11,
          center: myLatLng
        });
 </script>
Post Answer