Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I made a bubble chart which use google map as background, the expression of dynamic image i used is as below
(refer to http://community.qlik.com/message/321080#321080 😞
&map_size_x&'x'&map_size_y &'&key='&gmap_key &'&sensor=false'
The gmap_key i used refer to https://developers.google.com/maps/documentation/javascript/tutorial?hl=en#api_key .
But the background of the bubble chart is still black. I don't know why. Anybody knows?
Hi,
Try this one:
='http://maps.google.com/maps/api/staticmap?center='
&
num(var_mid_lat, '##############', '.', ',' )
&
','
&
num(var_mid_long, '##############', '.', ',' )
&
'&zoom=$(var_zoom)'
&
'&maptype='&var_maptype
&
'&size='&map_size_x&'x'&map_size_y
&
'&language=ru'
&
'&sensor=false'
Hope this helps.
Andrei
I don't use key anymore, but the rest is more or less the same:
='http://maps.googleapis.com/maps/api/staticmap?center='
&
num(var_mid_lat, '##############', '.', ',' )
&','&
num(var_mid_long, '##############', '.', ',' )
&
'&zoom=$(var_zoom)'
&
'&size='&map_size_x&'x'&map_size_y
&
'&sensor=false'
&
'&maptype='&var_maptype
Can you upload an example?
remove the key
&map_size_x&'x'&map_size_y &'&sensor=false'