[Solved] How to add Google Maps Api in a project? [closed]

if you want to add a map without iframe, check out this jsfiddle http://jsfiddle.net/cQTdc/ <html> <head> <script type=”text/javascript” src=”http://code.jquery.com/ui/1.10.3/jquery-ui.js”></script> <script src=”https://maps.googleapis.com/maps/api/js?sensor=false”></script> <script> function initialize() { var map_canvas = document.getElementById(‘map_canvas’); var map_options = { center: new google.maps.LatLng(51.372658, 1.354386), zoom:16, mapTypeId: google.maps.MapTypeId.HYBRID } var map = new google.maps.Map(map_canvas, map_options) } google.maps.event.addDomListener(window, ‘load’, initialize); </script> <style> #map_canvas { … Read more