Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
marcohadiyanto
Partner - Specialist
Partner - Specialist

create static map for different map when selection

hi all

how to create static map for different map according what user selected..

anyone can help me?

thank you in advance.

1 Solution

Accepted Solutions
pover
Luminary Alumni
Luminary Alumni

Marco, Go the the Colors tab in the properties window and in the Dynamic Image field put a formula similar to the following:

='C:\Users\Public\Pictures\Sample Pictures\' & only(Name) & '.jpg'

Regards.

View solution in original post

4 Replies
pover
Luminary Alumni
Luminary Alumni

Are you talking about showing a specific image of a map according to the selection the user makes? If that's the case then look at the Presidents.qvw example installed when you install the complete version of QV Desktop which include the following code to include pictures in the script. The pictures are linked to another table by the Photo column and are filtered like any other data. Regards.

BUNDLE INFO LOAD * INLINE [
Photo, Index
1_150.bmp, ..\Database\images\1_150.bmp
];

marcohadiyanto
Partner - Specialist
Partner - Specialist
Author

hi,

yes i want to show a specific image of a map from user's selection.

my issue is want to put image into chart.

example:

i have a scatter chart with static map from Europe, if i select Germany then chart show Germany map and show customer in Germany. if i select Italy then chart only show Italy map and show customer in Italy.

that's my idea, because i don't want to use internet connection.

any suggestion?

thanks and regards,

pover
Luminary Alumni
Luminary Alumni

Marco, Go the the Colors tab in the properties window and in the Dynamic Image field put a formula similar to the following:

='C:\Users\Public\Pictures\Sample Pictures\' & only(Name) & '.jpg'

Regards.

marcohadiyanto
Partner - Specialist
Partner - Specialist
Author

yeah..

thanks Karl,

but if i put in scatter chart i want to have default map too for overall analysis, how to combine that?

if i don't select anything, i want to see one map. then for detail i'll use

=only(Name)&'.jpg'


regards,