As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I have a business request that they want to show the USA and Canada and the State/Provence would be sized according to the data that is represented. Then when they pick or zoom in to a State/Provence then the counties will be sized to the data.
Can this be done? If so, how?
We are using WF 8.0.08 and the App Center.This message has been edited. Last edited by: David Sibert,
dksib DC Tech Services Inc WF 8.2.1M
Posts: 117 | Location: US | Registered: February 09, 2004
Normally those maps zoom to the data that is within the data points drawn on the map when initially drawn.
If you need to control it manually and I remember correctly the map is drawn in a div that is usually called something like "mapcontrol1". This being the case then you can control the zoom using JavaScript -
var map = getMapObject("mapcontrol1");
map.setMapZoom(n);
// where n is a number from 1 to 17 I think?
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Tony - Thanks for the reply. I believe that the setMapZoom is for the whole map that is currently displayed. What I want to do is to control the Size of each State example would be CA would be 2, TX would be 4, IL would be 1, NY would be 1, FL would be 5, MA would be 3, and so forth.
David
dksib DC Tech Services Inc WF 8.2.1M
Posts: 117 | Location: US | Registered: February 09, 2004
It looks like that feature is available only if you are using ESRI maps. In google maps, you can zoom the whole map only instead of the particular selection.