Hi Zupca,
I had the same issue when I needed a Europe Geomap for
www.2010shanghai.eu
Here is the workaround I used:
1. I draw a big map covering the whole world:
options['dataMode'] = 'regions';
options['region'] = 'world';
options['width'] = '1668px';
options['height'] = '1041px';
2. I embed the Geomap DIV inside another DIV:
<div id="map_crop">
<div id="map_canvas"></div>
</div>
3. I use the combination of the map_crop and map_canvas DIV to crop
the needed area using CSS:
#main div#map_crop {
position:relative;
float:left;
width:330px;
height:330px;
overflow:hidden;
border:1px solid #000;
}
#main div#map_canvas {
margin-left:-720px;
margin-top:-150px;
}
I know this solution is not perfect but it gives me a geomap of Europe
under most browsers. I still have some issues under Mac (Firefox) and
therefore disabled the geomap for Mac users.
Here is the reference page on which I have this Europe Geomap:
http://www.2010shanghai.eu/eupavilions.html
Regards,
Thierry