Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Localization for Bing Maps integration

Hello,

I create a QVW with a bing maps integration. I follow the instruction of this posting http://community.qlik.com/thread/38403 and included the code snippet

='http://dev.virtualearth.net/REST/v1/Imagery/Map/CollinsBart/'
&
num(var_mid_lat, '##############', '.', ',' )
&
','
&
num(var_mid_long, '##############', '.', ',' )
&
'/'
&
'$(var_zoom)'
&
'?'
&
'mapSize='&map_size_x &','&map_size_y
&
'&format=jpeg'
&
'&key='&bmap_key'


Everything works fine. Now, I would like to change the language of the map to german. I found in the internet the additional parameter 'c=de' and changed my code to:

='http://dev.virtualearth.net/REST/v1/Imagery/Map/CollinsBart/'

&

num(var_mid_lat, '##############', '.', ',' )

&

','

&

num(var_mid_long, '##############', '.', ',' )

&

'/'

&

'$(var_zoom)'

&

'?'

&

'mapSize='&map_size_x &','&map_size_y

&

'&format=jpeg'

&

'&c=de'

&

'&key='&bmap_key'

The new parameter does not work. Please, can anybode help me with this problem?

Thanks a lot!

0 Replies