function detectBrowser() {
    var useragent = navigator.userAgent;
    var mapdiv = document.getElementById("map");

    if (useragent.indexOf('iPhone') != -1 || useragent.indexOf('Android') != -1 ) {
        mapdiv.style.width = '300px';
        mapdiv.style.height = '300px';
    } else {
        mapdiv.style.width = '825px';
        mapdiv.style.height = '623px';
    }

    initialize();
}

function initialize() {
    geocoder = new google.maps.Geocoder();
    var latlng = new google.maps.LatLng(-36.827115203703386,-73.05024147033691);
    var myOptions = {
        zoom: 15,
        center: latlng,
        scrollwheel: false,
        mapTypeControl: true,
        mapTypeControlOptions: {
            style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
        },
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById("map"), myOptions);

    marker = new google.maps.Marker({
        position: latlng,
        draggable: true,
        map: map
    });


    google.maps.event.addListener(marker, 'dragend', function() {
        showInfo("Coordenadas: <strong>"+marker.getPosition().toString()+"</strong>");
        $("#ItemLng").val(marker.getPosition().lng());
        $("#ItemLat").val(marker.getPosition().lat());

        codeLatLng();
    });

}
