var myLocation;

if ((typeof google == 'object') && google.loader && google.loader.ClientLocation) {
myLocation = {
'lat': google.loader.ClientLocation.latitude,
'lng': google.loader.ClientLocation.longitude,
'city': google.loader.ClientLocation.address.city
}
}

function initialize() {
var myLatlng = new google.maps.LatLng(myLocation['lat'], myLocation['lng']);
var myOptions = {
zoom: 13,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.SATELLITE
}
var map = new google.maps.Map(document.getElementById("google-maps"), myOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: myLocation['city']
});
}

$(document).ready(function() {
initialize();
});

