Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. function initialize() {
  2. var mapOptions = {
  3. zoom: 7
  4. };
  5. var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
  6.  
  7.  
  8. navigator.geolocation.getCurrentPosition(function (position) {
  9. var pos = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
  10. map.setCenter(pos);
  11. var curMark = new google.maps.Marker({
  12. position: pos,
  13. map: map,
  14. });
  15. });
  16.  
  17.  
  18. }
  19. $(document).on('pagecreate','#math', initialize);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement