• Thomas.Kurtz
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hi All,

I want to know that Is there any way to use soql join for creating report in salesforce.

thanks
 

Hi Team,

 

we have written a javascript in visualforce page. how to get the variables "latitude" and "longitude" from it.

 

<script>
function xyz(){
if(navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
}
function showPosition(pos){
var latitude=pos.coords.latitude;
var longitude=pos.coords.longitude;
}

</script>

 

Thanks,

Anil