Latitude:
Longitude:
111
[geomaap_iframe] andjQuery(document).ready(function($) {
$.ajax({
url: “https://geolocation-db.com/jsonp”,
jsonpCallback: “callback”,
dataType: “jsonp”,
success: function(location) {
// After the geolocation data is fetched, set the iframe src attribute
$(‘#gmap_canvas’).attr(‘src’, ‘https://maps.google.com/maps?q=’ + location.latitude + ‘,’ + location.longitude + ‘&hl=en;z=14&output=embed’);
}
});
});