I have created labels ,legends scale and North-direction pointer but I now need to conditionally hide or show the points using button in mapbasic program but I don't know the syntax.
Where can I find syntax examples to interact with map window?
I want to change current view in mapinfo window and plot map using values from same table but using certain condition.Any Example. My Code:
Open Table "geoLocation.TAB" Interactive
Map From geoLocation
select * from geoLocation where vendor = "V1" into selection
Now I want to redraw this selection in same map window but when i do :
Map From Selection
It draws in new window.How to avoid this and is my way correct way ?