I need to write attribute value in specific location (ID number of each tower ) as in the code below, but it seems wrong ,in spite of the draw statement works well except the highlighted one , any note please
create towers from: vor with:[location.x::int(read('pos_x')),
location.y::int(read('pos_y')),
tower::int(read('id'))];
species towers { int tower;
aspect base { draw rectangle(10,1000) at:location color: rgb('blue') ;
draw "ID " + tower with_precision 2 at:location color:rgb('green') size:5;
draw shape at:location color:rgb (10,150,10) ; }