Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. function Grantee(name1, address1, yearsReceived1, grantsReceived1, grantAmts1, pocLed1, latlng1){
  2. this.name = name1;
  3. this.address = address1;
  4. this.yearsReceived = yearsReceived1;
  5. this.grantsReceived = grantsReceived1;
  6. this.grantAmts = grantAmts1;
  7. this.pocLed = pocLed1;
  8. this.latlng = latlng1;
  9. var icon = {
  10. url: 'http://www.arcencieldeco.com.tn/wp-content/uploads/2015/10/icon.png',
  11. scaledSize: new google.maps.Size(73, 50),
  12. origin: new google.maps.Point(0,0),
  13. anchor: new google.maps.Point(36.5,50)
  14. };
  15. var iconShape = {
  16. coords: [20,0,45,0,45,40,0,40,0,0],
  17. type: 'poly'
  18. };
  19. this.marker = new google.maps.Marker({
  20. position: granteeArray[i].latlng,
  21. map: map,
  22. icon: icon,
  23. shape: iconShape
  24. });
  25. for (i = 0; i<granteeArray.length; i++){
  26. markerArray.push(this.marker)
  27. };
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement