Guest User

Untitled

a guest
Aug 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Advice needed: Geolocation for c# web app - need country location to set what user can see or not
  2. if(navigator.geolocation) {
  3. navigator.geolocation.getCurrentPosition(function(position) {
  4. var latitude = position.coords.latitude;
  5. var longitude = position.coords.longitude;
  6. });
  7. }
Add Comment
Please, Sign In to add comment