$latitud
$longito
En esas dos variables guardo las longitud y latitud exacta del punto,pero no se como mandarselo a google maps,conoceis de alguna clase que permita hacer lo que quiero?o me podeis guiar como tengo que hacerlo?
Las clases que he encontrado es introduciendo la dirección pero no se como hacer para introducir la latitud y longitud.
El java script que uso es este.
Código:
// JavaScript Document var latlng; var marker; function load(){ if(GBrowserIsCompatible()){ var map=new GMap2(document.getElementById("mapa")); map.addControl(new GSmallMapControl()); map.setCenter(new GLatLng(39.48152048366842,-0.377826690673828),14); var baseIcon = new GIcon(G_DEFAULT_ICON); baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png"; baseIcon.iconSize = new GSize(20, 34); baseIcon.shadowSize = new GSize(37, 34); baseIcon.iconAnchor = new GPoint(9, 34); baseIcon.infoWindowAnchor = new GPoint(9, 2); var blueIcon = new GIcon(G_DEFAULT_ICON); blueIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png"; // Set up our GMarkerOptions object markerOptions = { icon:blueIcon }; // Add 10 markers to the map at random locations var bounds = map.getBounds(); var southWest = bounds.getSouthWest(); var northEast = bounds.getNorthEast(); var lngSpan = northEast.lng() - southWest.lng(); var latSpan = northEast.lat() - southWest.lat(); var latlng = new GLatLng(southWest.lat() + latSpan * Math.random(), southWest.lng() + lngSpan * Math.random()); map.addOverlay(new GMarker(latlng, markerOptions)); }//compatible }//load