Advertisement
Fhernd

app.js

Nov 25th, 2017
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function () {
  2.  
  3. });
  4.  
  5. function initMap() {
  6.  
  7.     mapaLugares = new google.maps.Map(document.getElementById('divMapa'), {
  8.         center: {lat: 1.9299262, lng: -76.2153626},
  9.         zoom: 8
  10.     });
  11.  
  12.     var mkrBogota = new google.maps.Marker({
  13.         position: new google.maps.LatLng(4.6668989, -74.1072278),
  14.         map: map,
  15.         draggable: true,
  16.         title: 'Bogota D.C.'
  17.     });
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement