Google map not displaying in the page

João Guerreiro

Already have my id="ieatmaps" to call the googlemaps.js. But some how it is not beeing displayed. Maybe I'm doing something wrong.

      function initMap() {
        var map = new google.maps.Map(document.getElementById('ieatmaps'), {
          center: {lat: 40.674, lng: -73.945},
          zoom: 12,
          styles: [
]

        });
      }
.ieatmaps {
    border:0;
    height: 100%;
    width: 200px;
}
<section id="map">
  <div id="ieatmaps"></div>
      <script src="js/googlemaps.js"></script>
      <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB-aH4ym18aYYe86IiamWV88X-JrVhFLt8&callback=initMap"
      async defer></script>
</section>

Zaid Bin Khalid

#ieatmaps not a class

function initMap() {
        var map = new google.maps.Map(document.getElementById('ieatmaps'), {
          center: {lat: 40.674, lng: -73.945},
          zoom: 12,
          styles: [
]

        });
      }
#ieatmaps {
    height: 200px;
    width: 200px;
    border:1px solid #000;
}
<section id="map">
  <div id="ieatmaps"></div>
      <script src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyB-aH4ym18aYYe86IiamWV88X-JrVhFLt8&callback=initMap"
      async defer></script>
</section>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

google map not displaying on mobile

From Dev

Google Maps API --Map not displaying

From Dev

TextView is not displaying on the top of the Google map

From Dev

Displaying multiple points on google map

From Dev

Android App with Google map not displaying

From Dev

Google Map not displaying on HTML <div>?

From Dev

Google map is not displaying in android appication

From Dev

Displaying multiple points on google map

From Dev

TextView is not displaying on the top of the Google map

From Dev

Google Maps API --Map not displaying

From Dev

displaying google map within a UIView

From Dev

Google map is displaying but not loading map and directions in android

From Dev

Google Map is not appearing in page

From Dev

error in displaying Directions webservice result on to the google map

From Dev

Trouble displaying Google map in jquery mobile

From Dev

Google map marker not displaying dynamically via ajax

From Dev

Displaying marker in Google map on click event

From Dev

Google map's polylines not displaying correctly

From Dev

Google Map not displaying after applying custom style

From Dev

Google map tiles on retina displaying incorrectly

From Dev

Google map API displaying marker location in an infowindow

From Dev

Google map is not displaying on bootstrap modal popup

From Dev

Bad access displaying circle on Google Map

From Dev

displaying google map within a UIView Correctly

From Dev

Multiple Google charts not displaying properly on the same page

From Dev

Displaying google analytic page views on your site?

From Dev

Displaying multiple Google charts on same page

From Dev

Displaying "my map" layers in Google maps for iOS SDK

From Dev

Having trouble displaying a Google Map inside the Edittemplate of a FormView

Related Related

  1. 1

    google map not displaying on mobile

  2. 2

    Google Maps API --Map not displaying

  3. 3

    TextView is not displaying on the top of the Google map

  4. 4

    Displaying multiple points on google map

  5. 5

    Android App with Google map not displaying

  6. 6

    Google Map not displaying on HTML <div>?

  7. 7

    Google map is not displaying in android appication

  8. 8

    Displaying multiple points on google map

  9. 9

    TextView is not displaying on the top of the Google map

  10. 10

    Google Maps API --Map not displaying

  11. 11

    displaying google map within a UIView

  12. 12

    Google map is displaying but not loading map and directions in android

  13. 13

    Google Map is not appearing in page

  14. 14

    error in displaying Directions webservice result on to the google map

  15. 15

    Trouble displaying Google map in jquery mobile

  16. 16

    Google map marker not displaying dynamically via ajax

  17. 17

    Displaying marker in Google map on click event

  18. 18

    Google map's polylines not displaying correctly

  19. 19

    Google Map not displaying after applying custom style

  20. 20

    Google map tiles on retina displaying incorrectly

  21. 21

    Google map API displaying marker location in an infowindow

  22. 22

    Google map is not displaying on bootstrap modal popup

  23. 23

    Bad access displaying circle on Google Map

  24. 24

    displaying google map within a UIView Correctly

  25. 25

    Multiple Google charts not displaying properly on the same page

  26. 26

    Displaying google analytic page views on your site?

  27. 27

    Displaying multiple Google charts on same page

  28. 28

    Displaying "my map" layers in Google maps for iOS SDK

  29. 29

    Having trouble displaying a Google Map inside the Edittemplate of a FormView

HotTag

Archive