Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function initMap() {
  2. var image = 'common/img/img-map-pin.png';
  3.  
  4. var center = {
  5. lat: 35.136249,
  6. lng: 138.912401
  7. };
  8.  
  9.  
  10. var map = new google.maps.Map(document.getElementById('map'), {
  11. zoom: 13,
  12. center: center,
  13. });
  14.  
  15. new google.maps.Marker({
  16. position: center,
  17. map: map,
  18. icon: image
  19. });
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement