pusatdata

Kode Google Maps Embed

May 2nd, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script
  5. src="http://maps.googleapis.com/maps/api/js?key=MyKey&sensor=false">
  6. </script>
  7.  
  8. <script>
  9. function initialize()
  10. {
  11. var mapPin = "/path/to/image.png";
  12. var Marker = new google.maps.Marker({
  13. position: new google.maps.LatLng(23.0300,72.5800),
  14. map: map,
  15. icon: mapPin
  16. });
  17. var mapProp = {
  18. center:new google.maps.LatLng(23.0300,72.5800),
  19. zoom:5,
  20. mapTypeId:google.maps.MapTypeId.ROADMAP
  21. }
  22. var map=new google.maps.Map(document.getElementById("googleMap"),mapProp);
  23. }
  24.  
  25. google.maps.event.addDomListener(window, 'load', initialize);
  26. </script>
  27. </head>
  28.  
  29. <body>
  30. <div id="googleMap" style="width:500px;height:380px;"></div>
  31.  
  32. </body>
  33. </html>
Add Comment
Please, Sign In to add comment