adding multiple mapviews to tableview - appending to mapview.addRoute()

You must Login before you can answer or comment on any questions.

i want to add small multiple mapviews to a table - i have all the code working fine except i need to obviously add a unique number/character to the name

mapview.addRoute(route);
i have a unique id in the for loop ie
for (var c=0;c<categoryArray.length;c++) {
how would i append that to mapview ?

eg

mapview0.addRoute(route);
mapview1.addRoute(route);
mapview2.addRoute(route);

— asked 8 months ago by adrian harris
1 Comment
  • i'd need as well to add it to

    row.add(mapview);

    — commented 8 months ago by adrian harris

1 Answer

forget that - i realised i had the same variable "c" in the for loop that pulls the map route in as the for loop that builds the overall tableview

Your Answer

Think you can help? Login to answer this question!