A small google maps app I have written works on my development machine (WEBrick) but fails on HostingRails. The Google map box is displayed but there is no map.
I have tried the Hello World example code in both environments with the same results.
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
Note,I have setup and use a different API key for each environment. The keys are correct since I dont get a key error in either environment.
I was wondering if anyone knows of any possible reasons why I might get this behaviour on HostingRails (or a shared host)
Rhubarb