Using Mapstraction and Google maps API - map not showing

147 Views Asked by At

I'm trying to upgrade a RoR app that uses mapstraction and google maps api, but I can't seem to get the map to show...I already posted a question with the code from that app here but haven't got an answer yet:

Upgrading google maps api with mapstraction in Rails 3

Because I still can't get that to work I created a test app and tried to get mapstraction working with the google maps api from scratch to see if I can replicate the issue and therefore fix it....but I still can't seem to get this to work.

In html of the test app I have:

<DOCTYPE! HTML>
<html>
  <head>
    <script src="//maps.googleapis.com/maps/api/js?sensor=false" type="text/javascript"></script>
    <script src="http://mapstraction.com/mxn/build/latest/mxn.js?(googlev3)" type="text/javascript"></script>
    <style type="text/css">
    #map {
      height: 100px;
    }
    </style>
   </head>
   <body>
   <div id="map"></div>

   <script type="text/javascript">
    var map = new mxn.Mapstraction('map', 'googlev3');
    var latlon = new mxn.LatLonPoint(39.74,-104.98);
    map.setCenterAndZoom(latlon, 10);
   </script>
  </body>
</html>

This code is based on the tutorial for mapstraction that can be found here.

The map is still not showing when I run this code, however it is showing "Map data Terms of Use" at the bottom of the div, as if the map is there...

Any ideas on what I'm doing wrong here? I'm really stuck... :(

1

There are 1 best solutions below

0
On

So by playing around with some of the css I found out that the map hadn't been showing because I had the div display style set to inline-block...this still takes me back to square one with my original problem (Upgrading google maps api with mapstraction in Rails 3) but at least I know mapstraction and google maps is working :)