<?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 Maps Implementation Issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859810#M1005807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the code in your Load section is using the old api.&lt;/P&gt;&lt;P&gt;Try Recode your Load script with the attached code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2015 12:50:34 GMT</pubDate>
    <dc:creator>jpenuliar</dc:creator>
    <dc:date>2015-05-14T12:50:34Z</dc:date>
    <item>
      <title>Google Maps Implementation Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859806#M1005803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Hi All,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;I am learning Qlikview and faced below issue while implementing google maps . I am using attached PDF as reference to do this scenario.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Code is as below :&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;LOAD FirstName, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastName, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; City, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProductSold, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;let noRows = NoOfRows('Table1')-1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;for i=0 to $(noRows)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; let a=peek('FirstName',$(i),'Table1');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let b=peek('LastName',$(i),'Table1');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let c=peek('ProductSold',$(i),'Table1');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; let address=peek('City',$(i),'Table1');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; '$(a)' as FirstName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; '$(b)' as LastName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; '$(c)' as ProductSold,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; '$(address)' as Address&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; ,subfield([Response/Placemark/Point/coordinates], ',' ,1) AS longitude,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; subfield([Response/Placemark/Point/coordinates], ',' ,2) AS latitude&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN&gt;&amp;nbsp; FROM [&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://maps.google.com/maps/geo?q=$(address)&amp;amp;output=xml&amp;amp;oe=utf8&amp;amp;sensor=false" rel="nofollow"&gt;http://maps.google.com/maps/geo?q=$(address)&amp;amp;output=xml&amp;amp;oe=utf8&amp;amp;sensor=false&lt;/A&gt;&lt;SPAN&gt;] (XmlSimple, Table is [Data]);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;next i;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 10:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859806#M1005803</guid>
      <dc:creator />
      <dc:date>2015-05-14T10:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps Implementation Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859807#M1005804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Puneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the issue you are facing? Are there any error messae?&lt;/P&gt;&lt;P&gt;Can you explain?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 10:52:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859807#M1005804</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2015-05-14T10:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps Implementation Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859808#M1005805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue is:&amp;nbsp; 0 rows are getting fetched in the second step for each of the rows .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 10:56:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859808#M1005805</guid>
      <dc:creator />
      <dc:date>2015-05-14T10:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps Implementation Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859809#M1005806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you upload your qvw file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 11:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859809#M1005806</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2015-05-14T11:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps Implementation Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859810#M1005807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the code in your Load section is using the old api.&lt;/P&gt;&lt;P&gt;Try Recode your Load script with the attached code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 12:50:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859810#M1005807</guid>
      <dc:creator>jpenuliar</dc:creator>
      <dc:date>2015-05-14T12:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Google Maps Implementation Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859811#M1005808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks !!&amp;nbsp; It Worked .&lt;/P&gt;&lt;P&gt;Appreciate your quick help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 19:24:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Google-Maps-Implementation-Issue/m-p/859811#M1005808</guid>
      <dc:creator />
      <dc:date>2015-05-14T19:24:44Z</dc:date>
    </item>
  </channel>
</rss>

