Guest User

Untitled

a guest
Jul 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <a href="#" onclick="getMarkerID({@Position}); loadMAP(); showInfoWindow(map, marker{@Position}, hotelDetails{@Position});">
  2.  
  3. function getMarkerID(markerID)
  4. {
  5. mID = markerID;
  6. return mID;
  7. }
  8.  
  9.  
  10. function loadMapAndShowIconWindow(map, marker, hotelDetails)
  11. {
  12. if(typeof google !== "undefined"){
  13.  
  14. showInfoWindow(map, marker, hotelDetails);
  15.  
  16. }
  17. else{
  18. setTimeout(loadMapAndShowIconWindow, 250);
  19. }
  20.  
  21. }
Add Comment
Please, Sign In to add comment