pitommasi
Members-
Content count
166 -
Joined
-
Last visited
-
Days Won
1
Everything posted by pitommasi
-
I know that it might be tto early to say, but I als need this feature, is there any news about it? I am a licenced customer: is there a way to be notified when this will be implemented?
-
I have an application that uses FusionMaps 3.1. Depending on a user interaction, javascript onclick event, the application switches to a different map: this is the onlick event of the links that change the map: onclick = changeMap ("Europe"); onclick = changeMap ("Asia"); onclick = changeMap ("Africa"); and so on function changeMap (map) { var mapswf = "/mapFiles/FCMap_"+ map +".swf"; var bkcol = "#ff0000"; var map = new FusionMaps(mapswf , "MapID", "990", "610", "0", "1",bkcol); var dataURL = "text.xml"; map.setDataURL(dataURL); map.setTransparent(true); map.render("TheMap"); } TheMap is the ID of the DIV that contains the map The problem is thatif you click several times on the different links to change the map, at some point no map is show for a while (a minuto or two) and then it shows up.. Any idea?
-
Which release are you talking about? When will be this released?
-
Hi! Two issues here: 1. See the chart in the screenshot: if I show the datalabels, I need a way to uniquiely identify to which serie is each label related: e. g. a different colour for each set of labels 2. I need to programmatically hide or show the labels for a serie, usin Javascript: e.g. like the interactive legend does in the MSCombi3D.swf chart. Thanks in advance
-
Hi. How can I test if the JS fallback works? Should I uninstall the flash player or there is a simpler way? (I cannot uninstall/reinstall every time I want to perform a test) Thank you in advance
-
seriously, guys, please, read the messages before answering: I've already tried to disable the plugin and the result is exaclty why I asked in the first place...
-
How?On a desktop PC, I mean, not a mobile device.
-
Thank you. So, to recap: - If I do not put any directive in the code, the fallback is automatic - I cannot test the automatic fallback without uninstalling the flash plugin completly Am I right? Also, do you have any idea about when Fusion Maps fallback might be available?
-
Let me be more clear: I do not want to render in JS only, I want to render in flash and take advantage of the automatic fallback only if flash is disabled/unsupported. As per FusionMaps: if there is no flash support, I cannot render any map?
-
OK, so how come that the fallback doesn't work? What should I check? And what about fusionmaps? Is i capable of automatic fallback as well?
-
update: I've disabled the flash plugin, in firefox, to perform a test, but instead of the javascript charts, I see the error message saying that I need to download the flash plugin... what am I missing?
-
Here I am with another feature request: is it possible (without custom maps) to hide some entities (contry or states) from a map? I.e.: let's say that I want to show the entire world map (the one with all countries) except north america: is that possible?
-
Question: is it possible to get something like this? http://labig.net/ima...america-map.gif I need to create a frame like the one in the left bottom of the picture, the one containing alaska, and put a picture in it. thanks in advance
-
Hi! I need to show data for countries not included in any map, for example (but not only) Maldives. For Maldives, for example, I've seen that there is a AsiaMap.as file in the "MapsSource\com\fusionmaps\maps", which contains, commented, the following line of code: super.addEntity("029", "029", "MV", "Maldives"); is that something that can be used or there is no way to show those countries on a map? Thanks in advance Regards
-
Obviously, it doesn't!!!!!! I have been very specific, I said: "a chart with just ONE bar", which is rendered like the screenshot attached. Here is the XML: <chart decimalprecision="1" showlegend="0" bgcolor="e8efef" bgAlpha="100" plotGradientColor=" " plotSpacePercent="80" showBorder="0" labelDisplay="Rotate" slantLabels="1" rotateValues="1"> <set label="NE" value="204360.0" color="4C96C9" ></set> </chart> since, in other charts of my applications, there are more bars, that are way thinner, this looks very UGLY!
-
If you give a look to the attachment, you could see that the width of the columnds is not the same for all of them... (for example, columns number 1, 4, 6, 7...) Do you have an explanation/solution? Thank you in advance.
-
It looks like it was a matter of proportions: the size is: width 423 x height 475, I changed the margins to 1px and now it's rendering perfectly. Thanks for pointing me to the right direction
-
Is it possible to show labels inside the slices of a 2d piechart, like in the attachment?
-
anybody?
-
How can I change the color for the border on the map? The one marked with the circle and the arrow in the attachment... P.S.: how is it possible that I cannot use the word "border" to perform a search within this forum?
-
Is it possible to prevent charts to get "squashed" when a label is too long? In other words: can I define the height of the canvas, instead of the height of the whole swf? The current situation, as you know, is that f I set the height of a chart at, let's say, 500px, that is the height of the entire swf, meaning that a chart with longer labels will have a shorter canvas than one with short labels, right? Is there a way to control this behaviour? If you take a look to the attachment, you see that the chart on the left is shorter than the one on the right, because its labels are longer. I want to avoid this difference Note that the labels are not fixed, so there is no way to predict the space that thei will require. Thanks
-
Solved! I opted for the first method, thanks!
-
Maybe, if I could make the map transparent...
-
ok, thanks
-
Ok, it turned out that it wasn't the canvas border, but the white background of the containing DIV "peeking" from around the map, wich is strage, considering that the map and the div have the same dimensions...