Saca Coordenas Geograficas con Google Maps
Map
¿Donde quieres ir? Latitud: Longitud: | Habilitar o desabilitar Marcas para extraer Coordenadas Geograficas al hacer click dentro del api de GoogleMap Latitud: Longitud: |
Saca Coordenas Geograficas con Google Maps
¿Donde quieres ir? Latitud: Longitud: | Habilitar o desabilitar Marcas para extraer Coordenadas Geograficas al hacer click dentro del api de GoogleMap Latitud: Longitud: |
Inserte un mapa satelital de google map en su pagina webInsertando el api de google map
map.setCenter(new GLatLng(37.4419, -122.1419), 13);Ahora modifica las coordenadas geograficas, lo que esta aqui
map.setCenter(new GLatLng(37.4419, -122.1419), 13);por las coordenadas q desees, x ejemplo ( 123.123 , 123.123 ), lo reemplazas y listo.
map.setCenter(new GLatLng(37.4419, -122.1419), 13 );
por un valor entre 0 y 60, mientras mayor sea el numero, mas acercamiento obtendras.map.setCenter(new GLatLng(37.4419, -122.1419), 13);
map.addControl(new GLargeMapControl());
map.setMapType(G_SATELLITE_MAP);
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
map.addControl(new GLargeMapControl());
map.setMapType(G_SATELLITE_MAP);
function createMarker(point, title, content) {
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml("" + title + "" + content);
}); return marker;
}
map.addOverlay(createMarker( new GLatLng( 123.123, 123.123 ) , "Mi Casa", "Aqui pones tu mensaje :p"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
map.addControl(new GLargeMapControl());
map.setMapType(G_SATELLITE_MAP);
function createMarker(point, title, content) {
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml("" + title + "" + content);
}); return marker;
}
map.addOverlay(createMarker( new GLatLng( 123.123, 123.123 ) , "Mi Casa", "Aqui pones tu mensaje :p"));