24/06/2015, 15:12
|
| | Fecha de Ingreso: octubre-2008 Ubicación: Colombia
Mensajes: 450
Antigüedad: 16 años, 1 mes Puntos: 2 | |
Respuesta: Geolocalizacion
Código HTML:
Ver original<!DOCTYPE> <!-- <input type="Submit" onclick="init()" value="Cargar Mapa"> --> <div id="map" style="width: 100%; heigth: 1024px;"> <script src="http://maps.google.com/maps/api/js?sensor=false&callback=init"></script> <script type="text/javascript"> var map; var marker; function init() { var mapOptions = { center: new google.maps.LatLng(8.8001153,-75.8506026), zoom: 15, mapTypeId: google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById("map"),mapOptions); var place = new.google.maps.LatLng(8.8001309,-75.8505986,21); marker = new google.maps.Marker({ position: place, title: "Estacion 1", map: map }); }
__________________ Desarrollo de Aplicaciones de Escritorio, Sitios Web, Audio y Video en SISGUS
Última edición por karenlorenadg; 24/06/2015 a las 15:14
Razón: Correccion
|