Google Maps API v3 | shows no map data

See Mike Williams’ description on percentage sized maps from his v2 tutorial You need to add definitions to all the parent elements of the map to allow the browser to calculate a non-zero size. working example <!DOCTYPE html> <html> <head> <title></title> <meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ /> <style type=”text/css”> html,body { width: 100%; height: 100%; } … Read more

Google Maps API V3 : weird UI display glitches (with screenshot)

We ran into the same problem. The css designer was using this style: style.css img {max-width: 100%; } Instead of disabling the zoom control, we fixed the problem by overriding the img style for map_canvas elements like so: style.css: #map_canvas img { max-width: none; } The zoom control now displays correctly. Setting “img max-width:100%” is … Read more