GameThirsty , thanks for the answer. I thought it was better to separate questions for a logic reason....
Anyway, i checked the link you provided and i'll soon try it. Thanks !
The script i'll have to insert is a simple google maps invocation showing current position of user . Like this :
----
navigator.geolocation.getCurrentPosition (function (pos)
{
var lat = pos.coords.latitude;
var lng = pos.coords.longitude;
var myLatLng = new google.maps.LatLng(lat,lng);
var marker = new google.maps.Marker({
map: control.map,
position: myLatLng
});
control.center = myLatLng;
control.map.setCenter(myLatLng);
});
---
Hoping it will work. I'll report you soon . Thanks !
TheMac