function load() { if (navigator.geolocation) // check if browser support this feature or not { navigator.geolocation.getCurrentPosition(function(position) { var lat = position.coords.latitude; var lng = position.coords.longitude; if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(lat,lng),10); var blueIcon = new GIcon(G_DEFAULT_ICON); blueIcon.image = "images/marker.png"; blueIcon.iconSize = new GSize(30,13); blueIcon.iconAnchor = new GPoint(0,0); blueIcon.shadow = ""; markerOptions = { icon:blueIcon }; map.setUIToDefault(); } } ); } else { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(41.034823,28.974861),10); var blueIcon = new GIcon(G_DEFAULT_ICON); blueIcon.image = "images/marker.png"; blueIcon.iconSize = new GSize(30,13); blueIcon.iconAnchor = new GPoint(0,0); blueIcon.shadow = ""; markerOptions = { icon:blueIcon }; map.setUIToDefault(); } } }