how to get current location instead off map latlng

49 Views Asked by At

how can add current location on map default show me only latlng show here

$(document).ready(function() {

var mapCenter = new google.maps.LatLng(47.6145, -122.3418); //Google map Coordinates
var map;

map_initialize(); // initialize google map

//############### Google Map Initialize ##############
function map_initialize()
{
        var googleMapOptions = 
        { 
            center: mapCenter, // map center
            zoom: 17, //zoom level, 0 = earth view to higher value
            maxZoom: 18,
            minZoom: 16,
            zoomControlOptions: {
            style: google.maps.ZoomControlStyle.SMALL //zoom control size
        },
            scaleControl: true, // enable scale control
            mapTypeId: google.maps.MapTypeId.ROADMAP // google map type
        };

        map = new google.maps.Map(document.getElementById("google_map"), googleMapOptions); 
0

There are 0 best solutions below