codevar chicago = new google.maps.LatLng(41.850033, -87.6500523);
//map = new google.maps.Map(document.getElementById('map-canvas'),
map = new google.maps.Map(Appery("map").get(0), {
center: chicago,
zoom: 15,
mapTypeId: 'roadmap'
});
var layer = new google.maps.FusionTablesLayer({
query: {
select: 'geometry',
from: '1BtUFVysjCE7X6lmiWcPl0D5Pf5SJU4DJXJSp5Ic'
},
});
layer.setMap(map);/code
I keep getting an error
SCRIPT5007: Unable to get property 'offsetWidth' of undefined or null reference
main.js, line 28 character 2138
http://appery.io/app/mobile-frame?src...
Made Public
Its supposed to show our locations
A Question about this system also
Is the map element considered html5 or is it considered an device element, that is to say should I use the javascript references for html, or should I be using javascript and calls for the native device?
Also, as to the rest services api for google they have two different portals one for html and one for android which one should I use
I have this on an click event, but would really like it to load after the map loads without an even got any suggestions