[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
xampp182
/
htdocs
/
simpeg
/
mobile
/
[
Home
]
File: gmps.php
<!DOCTYPE html> <html> <body> <h1>My First Google Map</h1> <div id="googleMap" style="width:100%;height:400px;"></div> <script> function myMap() { var mapProp= { center:new google.maps.LatLng(-6.3305163,106.8268773), zoom:19, }; var map = new google.maps.Map(document.getElementById("googleMap"),mapProp); } </script> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB8Sjbiew3YRW9LWEzu5_0mCryA9ZreO3c&callback=myMap"></script> <div id="googleMap" style="width:100%;height:400px"></div> </body> </html>