Lorem Ipsum/DOL Differet Solmena

Separat existentie 2010 Unee MYT por scientie, musica, sport etc, litot Europa usa li sam Vocabular Lingues, differe solmen in li grammatica, li pronunciation. Delete this widget in Dashboard and add yours. This is just an example. Read More

Re: [gtug-bsas] pregunta basica en js

miércoles, 29 de mayo de 2013

  fijate este codigo como empieza y fijate la llamada al final del codigo en la api ya esta la llamada   a initialize a travez de   google.maps.event.addDomListener(window, 'load', initialize);    var geocoder;  var map;  function initialize() {    geocoder = new google.maps.Geocoder();    var latlng = new google.maps.LatLng(-34.397, 150.644);    var mapOptions = {      zoom: 8,      center: latlng,      mapTypeId: google.maps.MapTypeId.ROADMAP    }    map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);  }    function codeAddress() {    var address = document.getElementById('address').value;    geocoder.geocode( { 'address': address}, function(results, status) {      if (status == google.maps.GeocoderStatus.OK) {        map.setCenter(results[0].geometry.location);        var marker = new google.maps.Marker({            map: map,            position: results[0].geometry.location        });      } else {        alert('Geocode was not successful for the following reason: ' + status);      }    });  }    google.maps.event.addDomListener(window, 'load', initialize);    FIJATE AQUI LA LLAMADA AL PROCEDIMIENTO    https://developers.google.com/maps/documentation/javascript/examples/geocoding-simple?hl=es  

0 comentarios:

Publicar un comentario

Nota: solo los miembros de este blog pueden publicar comentarios.