Tengo casi terminado un desarrollo en el que puedo pasar a un <input el zoom la latitud la longitud cuando hago clic sobre el mapa de google pero quiero pasar el tipo de mapa:
G_NORMAL_MAP
G_SATELLITE_MAP
G_HYBRID_MAP
para el zoom:
GEvent.addListener(map, "zoom", getMapZoom);
function getMapZoom()
{
document.getElementById("zoom").value = map.getZoomLevel();
document.getElementById("zoom2").value = map.getZoom();
}
para la latitud y longitud mas mapTypes pero nada
GEvent.addListener(map, 'click', function(overlay, point, GLatLng) {
document.position.lat.value=point.lat();
document.position.lng.value=point.lng();
document.position.tipo.value=point.mapTypes();
<input id="tipo" value=""
<input id="lat" value=""
<input id="lng" value=""
<input id="zoom" value=""
<input id="zoom2" value=""
algún ejemplo en la red donde este esta opción
GRACIAS