<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Google map is not displaying properly. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562727#M1143821</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Find the attachment. try relloading and test. Regards. siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Aug 2013 11:53:11 GMT</pubDate>
    <dc:creator>Siva_Sankar</dc:creator>
    <dc:date>2013-08-07T11:53:11Z</dc:date>
    <item>
      <title>Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562720#M1143814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the below code in my application to display the map but it was just showing the bubbles only .&amp;nbsp; Not the map, I need to show a demo on how to integrate &lt;/P&gt;&lt;P&gt;the google map with QV 11 to my management with some Sales figure .&amp;nbsp;&amp;nbsp; Somewhere I read API V3 to be used but there is no clarity on how to integrate it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please don't share the qvw file as I couldn't open . If you can paste the code here would be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone pl help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//===========================================================&lt;/P&gt;&lt;P&gt;// Google Maps in QlikView&lt;/P&gt;&lt;P&gt;// V0.85.2 - October 1st 2008&amp;nbsp; © Copyright QlikTech International AB 2008 / AES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Google Maps Key&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;// get a key here &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://code.google.com/apis/maps/signup.html"&gt;http://code.google.com/apis/maps/signup.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;gmap_key = &amp;lt;I supplied the key here&amp;gt;&lt;/P&gt;&lt;P&gt;max_zoom_level = 17; //maximum value 17 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Variables required for calculating map&lt;/P&gt;&lt;P&gt;// No need to change these&lt;/P&gt;&lt;P&gt;var_pi180=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '=pi()/180';&lt;/P&gt;&lt;P&gt;var_lat_offset=&amp;nbsp;&amp;nbsp;&amp;nbsp; '0';&lt;/P&gt;&lt;P&gt;var_long_offset = '0' ;&lt;/P&gt;&lt;P&gt;var_mc2=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '=256*pow(2,$(var_zoom))';&lt;/P&gt;&lt;P&gt;var_mc1=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '=256*pow(2,($(var_zoom)-1))';&lt;/P&gt;&lt;P&gt;var_mid_lat=&amp;nbsp;&amp;nbsp;&amp;nbsp; '=min(Latitude)+(1+var_lat_offset)*((max(Latitude)-min(Latitude))/2)';&lt;/P&gt;&lt;P&gt;var_mid_long=&amp;nbsp;&amp;nbsp;&amp;nbsp; '=min(Longitude)+(max(Longitude)-min(Longitude))/2';&lt;/P&gt;&lt;P&gt;var_zoom=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '=max(aggr(if(max( round(256*pow(2,(_zoom_level -1)))+( Longitude&amp;nbsp; *((256*pow(2,_zoom_level ))/360)) )-min( round(256*pow(2,(_zoom_level -1)))+( Longitude&amp;nbsp; *((256*pow(2,_zoom_level ))/360)) ) &amp;lt;map_size_x AND max((256*pow(2,(_zoom_level-1)))+((0.5*log((1+(sin((Latitude)*pi()/180)))/(1-(sin((Latitude)*pi()/180)))))*((-256*pow(2,_zoom_level))/(2*pi()))))-min((256*pow(2,(_zoom_level-1)))+((0.5*log((1+(sin((Latitude)*pi()/180)))/(1-(sin((Latitude)*pi()/180)))))*((-256*pow(2,_zoom_level))/(2*pi()))))&amp;lt;map_size_y,_zoom_level,1),_zoom_level))';&lt;/P&gt;&lt;P&gt;var_maptype=&amp;nbsp;&amp;nbsp;&amp;nbsp; '=if(isnull(only(maptype)),fieldvalue( '&amp;amp; CHR(39)&amp;amp;'maptype'&amp;amp; CHR(39)&amp;amp;', 1 ),maptype)';&lt;/P&gt;&lt;P&gt;map_size_x=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '640';&lt;/P&gt;&lt;P&gt;map_size_y=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '400';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET HidePrefix='_' ;&lt;/P&gt;&lt;P&gt;// Field required for calcualting best zoom level&lt;/P&gt;&lt;P&gt;_zoom_level:&lt;/P&gt;&lt;P&gt;LOAD RecNo() AS _zoom_level AutoGenerate(max_zoom_level);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maptype:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; maptype&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; roadmap&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mobile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; satellite&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; terrain&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; hybrid];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Customer,longitude,latitude,Sales&lt;/P&gt;&lt;P&gt;A-2-Z Solutions,255.7215289,193.6156805,$343,080&lt;/P&gt;&lt;P&gt;A-ARVIN Laser Resources,149.1185778,193.8956368,$8,570&lt;/P&gt;&lt;P&gt;A Superior System,273.9249778,160.2935876,$206,122&lt;/P&gt;&lt;P&gt;A&amp;amp;B,510.4355556,389.1459995,$233,533&lt;/P&gt;&lt;P&gt;A&amp;amp;G,273.8488889,160.0671736,$29,407&lt;/P&gt;&lt;P&gt;A&amp;amp;R Partners,116.97408,210.5743431,$94,298&lt;/P&gt;&lt;P&gt;A1 Datacom Supply,255.7215289,193.6156805,$719,334&lt;/P&gt;&lt;P&gt;a2i,123.7016178,184.0182003,$1,603&lt;/P&gt;&lt;P&gt;A2Z Solutions,447.0129778,203.584361,$118,897&lt;/P&gt;&lt;P&gt;AA-Wizard,255.8215111,170.2507825,$210,151&lt;/P&gt;&lt;P&gt;Aadast,273.8157511,160.2736679,$559,991&lt;/P&gt;&lt;P&gt;Aaron D. Meyer &amp;amp; Associates,455.5259733,201.4449869,$171,168&lt;/P&gt;&lt;P&gt;Aaron Products,445.9318044,205.3413254,Aaron Products : $7,443&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 04:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562720#M1143814</guid>
      <dc:creator />
      <dc:date>2013-08-07T04:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562721#M1143815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Did you genereate the key from &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://code.google.com/apis/maps/signup.html"&gt;http://code.google.com/apis/maps/signup.html&lt;/A&gt;&lt;SPAN&gt; and pasted the key in the code gmap_key = &lt;/SPAN&gt;&lt;EM&gt;? Regards siva&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 04:34:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562721#M1143815</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2013-08-07T04:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562722#M1143816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes I did, this I mentioned it in my above post&amp;nbsp; -&amp;nbsp; g&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;map_key = &amp;lt;I supplied the key here&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was able to see the map a month ago but now the map is not visible but only the bubbles are visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 05:26:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562722#M1143816</guid>
      <dc:creator />
      <dc:date>2013-08-07T05:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562723#M1143817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the colors tab, set the transparency to 0% and check. Regards. siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 05:38:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562723#M1143817</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2013-08-07T05:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562724#M1143818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its already 0% only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 05:41:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562724#M1143818</guid>
      <dc:creator />
      <dc:date>2013-08-07T05:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562725#M1143819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I couldnt figure out the issue from your code. I am attaching a sample file. You can either compare the code with your existing code or you can copy, paste the Map from the QVW to yours and change the data. Regards. siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 06:37:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562725#M1143819</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2013-08-07T06:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562726#M1143820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply Siva.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't open your app.&amp;nbsp; Am attaching my qvw, please review and let me know if I need to make any changes ...&amp;nbsp; &lt;/P&gt;&lt;P&gt;Refer Copy of Sheet2 and Map tab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also let me know if you can see the map from your system.? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Since I couldn't open the qvw's can you jot down the changes in the email itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sasken&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 09:47:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562726#M1143820</guid>
      <dc:creator />
      <dc:date>2013-08-07T09:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562727#M1143821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Find the attachment. try relloading and test. Regards. siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 11:53:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562727#M1143821</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2013-08-07T11:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562728#M1143822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't open this document as I mentioned earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you pl copy paste the changes that you made it to the doc. so that I can include &amp;amp; retest it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sasken&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 04:45:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562728#M1143822</guid>
      <dc:creator />
      <dc:date>2013-08-08T04:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562729#M1143823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;ok, open your application.&amp;nbsp; under colors tab, in dynamic image expression copy paste the following. ='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://maps.googleapis.com/maps/api/staticmap?center="&gt;http://maps.googleapis.com/maps/api/staticmap?center=&lt;/A&gt;&lt;SPAN&gt;' &amp;amp;&amp;nbsp; num(var_mid_lat, '##############', '.', ',' )&amp;nbsp; &amp;amp;&amp;nbsp; ','&amp;nbsp; &amp;amp;&amp;nbsp; num(var_mid_long, '##############', '.', ',' )&amp;nbsp; &amp;amp;&amp;nbsp; '&amp;amp;zoom='&amp;amp; $(var_zoom) &amp;amp; '&amp;amp;maptype='&amp;amp; (var_maptype) &amp;amp; '&amp;amp;size=400x400' &amp;amp;&amp;nbsp; '&amp;amp;sensor=false'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:06:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562729#M1143823</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2013-08-08T06:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562730#M1143824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I incorporated change suggested by you. Unfortunately, it still remains same , its not showing the map ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:42:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562730#M1143824</guid>
      <dc:creator />
      <dc:date>2013-08-08T06:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562731#M1143825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was wondering if this one&amp;nbsp; is&amp;nbsp; working in your system ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:42:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562731#M1143825</guid>
      <dc:creator />
      <dc:date>2013-08-08T06:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562732#M1143826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes it is working for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 09:11:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562732#M1143826</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2013-08-08T09:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562733#M1143827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a ton Siva. Its working fine now..&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But few issues were three ....&amp;nbsp; the data points that I plotted were showing up in the ocean...(:-. I guess its due to the wrong latitude&amp;nbsp; &amp;amp; longitude.. and the clarity is also not that good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can suggest on the clarity and the cause for the bubbles showing in the ocean...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sasken&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 10:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562733#M1143827</guid>
      <dc:creator />
      <dc:date>2013-08-08T10:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562734#M1143828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="45172" class="jive-image-thumbnail jive-image" onclick="" alt="gmap.png" src="https://community.qlik.com/legacyfs/online/45172_gmap.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 10:40:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562734#M1143828</guid>
      <dc:creator />
      <dc:date>2013-08-08T10:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562735#M1143829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed the latitude and longitude but still this issue persists...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess the blow URL which am using in the dynamic expression image is not in line with the bubbles defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://maps.googleapis.com/maps/api/staticmap?center=" style="background-color: #ffffff; color: #007fc0; font-family: Arial;"&gt;http://maps.googleapis.com/maps/api/staticmap?center=&lt;/A&gt;&lt;SPAN style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;' &amp;amp;&amp;nbsp; num(var_mid_lat, '##############', '.', ',' )&amp;nbsp; &amp;amp;&amp;nbsp; ','&amp;nbsp; &amp;amp;&amp;nbsp; num(var_mid_long, '##############', '.', ',' )&amp;nbsp; &amp;amp;&amp;nbsp; '&amp;amp;zoom='&amp;amp; $(var_zoom) &amp;amp; '&amp;amp;maptype='&amp;amp; (var_maptype) &amp;amp; '&amp;amp;size=400x400' &amp;amp;&amp;nbsp; '&amp;amp;sensor=false'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help on this &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 13:48:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562735#M1143829</guid>
      <dc:creator />
      <dc:date>2013-08-08T13:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Google map is not displaying properly.</title>
      <link>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562736#M1143830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its working perfectly now.... There is a problem with the way that I was plotting the data...Now i fixed it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW thanks for your support Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 14:08:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-map-is-not-displaying-properly/m-p/562736#M1143830</guid>
      <dc:creator />
      <dc:date>2013-08-08T14:08:13Z</dc:date>
    </item>
  </channel>
</rss>

