Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good afternoon,
While trying out this new extension that comes packaged with version 11.20 SR5, there were two things that got me wondering:
Thanks in advance for your input, ragards,
Philippe
You can find a map that is almost exactly the same as this one (but also has tooltip control) here:
brianwmunz/QuickMap-QV11 · GitHub
If you wanted the MapQuest tileset, you could just put this into the custom tileset property:
The content of the popup in the expression can be based upon the coordinate. It’s similar to anything you might do in a straight table, so it should coincide if you put the right expression in there.
In terms of selecting instead of dragging, holding down the shift key before clicking and dragging should create a box you can use to drag and select.
Thanks.
Hello Brian,
Thank you for taking the time to write.
I have tried what you suggested in regards to managing the content of the Tooltip, but this displays all the bubbles with sizes that vary randomly based on the text that is to be presented in the tooltip. Also, the tooltip title remains "Example Tooltip" for all of the displayed items.
Also, the Shift before click option doesn't react the way you would expect, and does nothing. The only way to select using this extension si by clicking directly on one of the dots.
My belief is that there is a configuration parameter missing, which would allow entering an expression in HTML for for displaying personalised content in the Tooltip.
As for the zone-selection, I guess one would have to program some MouseOver-type feature within the extension to have it interact as expected
Regards,
Philippe
Oh, so you’re wanting the dots to not grow in proportion to the measure and be a uniform size?
My case study was rather to show a bubble that would grow in size by steps based on a quantity of adresses corresponding a given grouping. I've noticed that bubbles with sizes 25, 50, 75 and 100 can be distiguished rather well from one another, and knowing that my total count should be inferior to 10, but most commonly between 1 and two, I set the following expression in the Measurement field:
=RangeMin(100, 25*Count(DISTINCT AddressID))
What bothers me is that for each Bubble I get the following tooltip:
Example Tooltip
25
(or 50, 75, 100 on the second line)
So the Measurement used for the actual size of the bubble is not automatically interesting for someone to see, and I believe it would be more relevant to display data with analytical value, as needed. For example, I could definitely imagine writing this as an expression in a Tooltip Info field:
='<b>Nb of Customers</b>= ' & Count(DISTINCT AddressID) & '</br><b>Avg. Sales</b>= ' & Avg(Sales)
Regards,
Philippe
You can find a map that is almost exactly the same as this one (but also has tooltip control) here:
brianwmunz/QuickMap-QV11 · GitHub
If you wanted the MapQuest tileset, you could just put this into the custom tileset property:
Thank You Brian!
This is exactly what I was looking for!!! 🙂
Cheers,
Philippe
Hi Guys,
I've encountered an issue with loading quickMap to the server. Te extension itself is working. The issue is that my kml map isnt loading. Its working fine on the desktop?
Anyone else encountered this?
Thanks in advance
Now I noticed that its not working on IE9 nor Chrome, but renders fine on FF? Anyone have any ideas?
That is really helpful Brian