ChartDirector Ver 4.1 (PHP Edition Edition)

WebChartViewer.makeDelayedMap


Usage

makeDelayedMap(imageMap [, compress ])

Description

Creates a delayed image map suitable for use in JsChartViewer.

Normally, for any web page with an image and an image map, the server will send the HTML part of the page to the browser first, which contains the <IMG> tag and the image map (<MAP> and <AREA> tags). The browser, after receiving the HTML, will following the URL in the <IMG> tag to get the image. That means the image map is delivered before the image.

For charts that have a lot of data points, the size of the image map can become significant. For example, a chart with 1000 hot spots, each with a tool tips text and clickable, can easily mean an image map of the order of 100 Kbytes (around 100 bytes per hot spot). Including the image map in the HTML may slow down loading of the web page and loading of the image.

The delayed image map is a new kind of image map delivery method. The image map is not included in the HTML web page, but instead is delivered by AJAX means after the HTML web page and the image are delivered. In this way, the entire web page can be displayed faster, with image map features (like tool tips) available later.

Another advantage of delayed image map is that it can be independently compressed.

Virtually all browsers today supports HTTP compressed web pages. Some web servers are configured to apply HTTP compression to web pages, but most servers nowadays are not configured to use HTTP compression at all.

On the other hand, image maps are usually very compressible. It is common to see compression ratio of the order of 10x (so 100 Kbytes will become 10 Kbytes). If your web server do not already compress HTTP contents, you may ask WebChartViewer to compress the delayed image map. The WebChartViewer will then check if the browser can support HTTP compression (by examining the HTTP headers sent from the browser), and compress the image map if the browser supports it.

In deciding whether to use delayed image map or not, one should compare the advantages of using delayed image map with the disadvantages:

AdvantagesDisadvantages
The HTML web page and the image will display faster, because no image map is including in the HTML web page. Server loading is increased because it needs to create the delayed image map, and to service an additional AJAX request for delayed image map delivery. Also, image map features may not be immediately available when the content is displayed.
Image map compression may further improve network performance. Image map compression will increase server CPU loading.

In general, if the browser to server connection is high speed (like in an intranet), or if the image map is not large compared to the network bandwidth, it is not necessary to use delayed image map.

On the other hand, if the browser to server connection can be low speed (like in locations where broadband is not common), and the image map is large compared to the network bandwidth, and it is acceptable to have the image map not immediately available when the content is displayed, then the delayed image map feature will be useful.

Because the delayed image map is to be by the browser from a separate HTTP connection at a later time, it needs to be stored in some place that can persists across HTTP connections.

The makeDelayedMap method stores the delayed image map in a session variable, and returns a query string so that the delayed image map can be retrieved later using "getchart.php". The URL for retrieving the delayed image map should be passed to WebChartViewer.setImageMap for transferring to the browser. For example:

$viewer->setImageMap("getchart.php?".$viewer->makeDelayedMap($imageMap));

Note that the above assumes the "getchart.php" is located in the same directory as the web page. If it is in a different directory, you would need to modify the path to "getchart.php".

Arguments

ArgumentDefaultDescription
imageMap(Mandatory)The image map to be converted to a delayed image map.
compressfalseUse HTTP compression if the browser supports it.

Return Value

A string representing the query parameters for retrieving the delayed image map using the "getchart.php" utility.