Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. var maplace = new Maplace({
  2. map_div: '#mappanel',
  3. controls_type: 'dropdown',
  4. controls_title: 'Select a point:',
  5. controls_position: google.maps.ControlPosition.TOP_LEFT
  6. });
  7.  
  8. function loadMap() {
  9. $.ajax({
  10. url: 'includes/ajax_getmap.php',
  11. type: 'POST',
  12. cache: false,
  13. timeout: 5000,
  14. data: { date: $('#dateselect').val() },
  15. dataType: 'json',
  16. success: function(data) {
  17. maplace.SetLocations(data.locations, true);
  18. },
  19. error: function(XMLHttpRequest, textStatus, errorThrown) {
  20. alert(errorThrown)
  21. }
  22. });
  23. }
  24.  
  25. {"locations":[
  26. {"lat":52.1,"lon":11.3,"title":"Title 1","html":"<h3>Content 1</h3>","zoom":8},
  27. {"lat":51.2,"lon":22.2,"title":"Title 2","html":"<h3>Content 2</h3>","zoom":8},
  28. {"lat":49.4,"lon":35.9,"title":"Title 3","html":"<h3>Content 3</h3>","zoom":8},
  29. {"lat":47.8,"lon":15.6,"title":"Title 4","html":"<h3>Content D2</h3>","zoom":8}
  30. ]}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement