Advertisement
Guest User

cod gmappanet

a guest
May 8th, 2012
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. {
  2. id: 'portlet-5',
  3. title: 'Portlet 5',
  4. tools: this.getTools(),
  5. html: content,
  6. items: Ext.create(
  7. {
  8. xtype: 'gmappanel',
  9. center: {
  10. geoCodeAddr: '4 Yawkey Way, Boston, MA, 02215-3409, USA',
  11. marker: {title: 'Fenway Park'}
  12. },
  13. markers: [{
  14. lat: 42.339641,
  15. lng: -71.094224,
  16. title: 'Boston Museum of Fine Arts',
  17. listeners: {
  18. click: function(e){
  19. Ext.Msg.alert('It\'s fine', 'and it\'s art.');
  20. }
  21. }
  22. },{
  23. lat: 42.339419,
  24. lng: -71.09077,
  25. title: 'Northeastern University'
  26. }]
  27. }
  28. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement