Advertisement
Guest User

Untitled

a guest
Dec 11th, 2012
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for (var s in categories) {
  2.                     title = categories[s]['name'];
  3.                     //window.alert(title); // returns category name, EG Business or Residence
  4.                     if (!isArray($.bgmp.markers[title])){
  5.                         window.alert('$.bgmp.markers['+title+']not Array, creating it');
  6.                         $.bgmp.markers[title] = [];
  7.                     }
  8.                     $.bgmp.markers[title].push(marker); //should push the marker to the bgmp.markers['Business'] array, but fails.
  9.                 }
  10.                 $.bgmp.markers.push( marker );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement