<?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: Implementing (Google) maps in QV in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525982#M556434</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again, very much appreciated! I've linked the tables using "Customer" and I'm back to using a scatter plot. I've edited the zoom variable and now it works fine. It seems a bit odd to me that my longitude and latitude axes are of the order of magnitude of thousands. If in the near future you would want to check my program again I would be extremely grateful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Jul 2013 18:56:20 GMT</pubDate>
    <dc:creator>bjgrijpstra</dc:creator>
    <dc:date>2013-07-01T18:56:20Z</dc:date>
    <item>
      <title>Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525975#M556427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been trying to implement maps in QV for a week now and I still haven't figured it out. I really hope you guys want to help me. I've followed the &lt;/P&gt;&lt;P&gt;'&lt;STRONG&gt;Steps to Implement Google Map in Qlikview' &lt;/STRONG&gt;document but I think it is outdated. Below you can see the code I am using in the script editor (I do have a gmap key). I will also attacht the .xlsx file and the qvw. My problem is with displaying a dynamic map (as a chart) and plotting the latitudes and longitudes on it. Can someone please explain to me how it is done properly? Many thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Bob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: If someone thinks I should try and use open layer maps I'm very open to that, but I don't know how!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13726664559219807" jivemacro_uid="_13726664559219807"&gt;&lt;P&gt;SET ThousandSep='.';&lt;/P&gt;&lt;P&gt;SET DecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='€ #.##0,00;€ -#.##0,00';&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss';&lt;/P&gt;&lt;P&gt;SET DateFormat='D-M-YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='D-M-YYYY h:mm:ss[.fff]';&lt;/P&gt;&lt;P&gt;SET MonthNames='jan;feb;mrt;apr;mei;jun;jul;aug;sep;okt;nov;dec';&lt;/P&gt;&lt;P&gt;SET DayNames='ma;di;wo;do;vr;za;zo';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CustomerTable:&lt;/P&gt;&lt;P&gt;LOAD Customer, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; City, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let noRows = NoOfRows('CustomerTable')-1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i=0 to $(noRows)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let a = peek('Customer',$(i),'CustomerTable');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let b = peek('City',$(i),'CustomerTable');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let c = peek('Quantity',$(i),'CustomerTable');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GeocodeResponse:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(a)' as CustomerName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(b)' as CustomerCity,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(c)' as CustomerQuantity,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [result/geometry/location/lat] as latitude,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [result/geometry/location/lng] as longitude&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://maps.googleapis.com/maps/api/geocode/xml?address=$(b)&amp;amp;sensor=false"&gt;http://maps.googleapis.com/maps/api/geocode/xml?address=$(b)&amp;amp;sensor=false&lt;/A&gt;&lt;SPAN&gt;] (XmlSimple, Table is [GeocodeResponse]); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;next i;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Google Maps Key&lt;/P&gt;&lt;P&gt;gmap_key = '';&lt;/P&gt;&lt;P&gt;max_zoom_level = 14;&lt;/P&gt;&lt;P&gt;def_zoom_level = 1;&lt;/P&gt;&lt;P&gt;def_map_size = 400;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Variables required for calculating map&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_mc2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = '=median(latitude)';&lt;/P&gt;&lt;P&gt;var_mid_long&amp;nbsp;&amp;nbsp;&amp;nbsp; = '=median(longitude)'; &lt;/P&gt;&lt;P&gt;var_zoom&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = '=if(max(aggr(if(max(round(256*pow(2,(_zoom_level-1)))+(Longitude*((256*pow(2,_zoom_level))/360)))-min(round(256*pow(2,(_zoom_level-1)))+(Longitude*((256*pow(2,_zoom_level))/360)))&amp;lt;def_map_size 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;def_map_size,_zoom_level,null()),_zoom_level))&amp;gt;def_zoom_level,max(aggr(if(max(round(256*pow(2,(_zoom_level-1)))+(longitude*((256*pow(2,_zoom_level))/360)))-min(round(256*pow(2,(_zoom_level-1)))+(longitude*((256*pow(2,_zoom_level))/360)))&amp;lt;def_map_size 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;def_map_size,_zoom_level,null()),_zoom_level)),def_zoom_level)';&lt;/P&gt;&lt;P&gt;var_maptype&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = '=if(isnull(only(maptype)),fieldvalue('&amp;amp;chr(39)&amp;amp;'maptype'&amp;amp;chr(39)&amp;amp;',4),maptype)'; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Calculate best zoom level&lt;/P&gt;&lt;P&gt;set HidePrefix&amp;nbsp;&amp;nbsp;&amp;nbsp; = '_';&lt;/P&gt;&lt;P&gt;&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;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;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 08:23:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525975#M556427</guid>
      <dc:creator>bjgrijpstra</dc:creator>
      <dc:date>2013-07-01T08:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525976#M556428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. You read latitude and longitude as strings, not as number (I changed thousand separator with decimal separator)&lt;/P&gt;&lt;P&gt;2. Google API changed, new call is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;='&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;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;var_mid_lat&lt;/P&gt;&lt;P&gt;&amp;amp;','&lt;/P&gt;&lt;P&gt;&amp;amp;var_mid_long&amp;amp;'&lt;/P&gt;&lt;P&gt;&amp;amp;zoom=$(var_zoom)'&amp;amp;'&lt;/P&gt;&lt;P&gt;&amp;amp;maptype='&amp;amp;var_maptype&amp;amp;'&lt;/P&gt;&lt;P&gt;&amp;amp;size='&amp;amp;def_map_size&amp;amp;'x'&amp;amp;def_map_size&amp;amp;'&lt;/P&gt;&lt;P&gt;&amp;amp;sensor=false'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attachment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 08:46:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525976#M556428</guid>
      <dc:creator>luciancotea</dc:creator>
      <dc:date>2013-07-01T08:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525977#M556429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the quick reply! You are awesome. Now for a quick follow up question, is it possible to have it zoom in on a certain region? I am currently only interested in cities in the Netherlands and at the moment it shows the entire world map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: Changed def_zoom_level to 7 and it showed me the map I was looking for! However, the plotted circles representing the quantites are not plotted correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: when I click on Amsterdam in my listbox, it shows Amsterdam in the center of my map. The quantity (sold in Amsterdam) should be represented as a circle on top of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 08:59:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525977#M556429</guid>
      <dc:creator>bjgrijpstra</dc:creator>
      <dc:date>2013-07-01T08:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525978#M556430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The way Google maps works is: you receive a map of a custom size centered in a custom point. So, you calculate the map center with a formula in the 'var_latitude' and 'var_longitude' variables. Also you have to have a certain zoom to fit all the points in the map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, in the scatter chart, the first 2 expressions sets the location and the 3th parameter sets the circle size.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 09:54:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525978#M556430</guid>
      <dc:creator />
      <dc:date>2013-07-01T09:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525979#M556431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that extra information. Could you then maybe explain to me why the 3rd expression that I've selected (CustomerQuantity) isn't shown on the map at the location corresponding to the first 2 expressions (the lat-long position).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 10:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525979#M556431</guid>
      <dc:creator>bjgrijpstra</dc:creator>
      <dc:date>2013-07-01T10:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525980#M556432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok so I've changed my chart from scatter chart to grid chart. And it looks much better. I've used longitude and latitude as my dimensions and quantity as my expression. However when I select one customer, the circle is placed to the right of where it should be. When I select multiple customers, it makes even less sense. Can someone point out what is going wrong here? Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 15:53:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525980#M556432</guid>
      <dc:creator>bjgrijpstra</dc:creator>
      <dc:date>2013-07-01T15:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525981#M556433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Using Grid-Chart instead of scatter-chart is one problem.&lt;/P&gt;&lt;P&gt;2. Link the Customer table with the geo-info table (Use "Customer" instead of "CustomerName")&lt;/P&gt;&lt;P&gt;3. Use the Customer as dimension in the scatter-chart&lt;/P&gt;&lt;P&gt;4. You have a problem with the "zoom" variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... and more. Don't have the time to get into details.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 16:43:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525981#M556433</guid>
      <dc:creator>luciancotea</dc:creator>
      <dc:date>2013-07-01T16:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525982#M556434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again, very much appreciated! I've linked the tables using "Customer" and I'm back to using a scatter plot. I've edited the zoom variable and now it works fine. It seems a bit odd to me that my longitude and latitude axes are of the order of magnitude of thousands. If in the near future you would want to check my program again I would be extremely grateful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 18:56:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525982#M556434</guid>
      <dc:creator>bjgrijpstra</dc:creator>
      <dc:date>2013-07-01T18:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525983#M556435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the chart, longitude and latitude expressions are not geo-codes anymore, but calculated distance from the axis of the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 19:03:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525983#M556435</guid>
      <dc:creator>luciancotea</dc:creator>
      <dc:date>2013-07-01T19:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525984#M556436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/3404"&gt;Lucian Cotea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried your code.&lt;/P&gt;&lt;P&gt;Initially it was working fine but when i tried it number of times after that it is not showing latitude and longitude now.&lt;/P&gt;&lt;P&gt;Is there any limitation for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Dec 2013 09:56:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525984#M556436</guid>
      <dc:creator>neha_shirsath</dc:creator>
      <dc:date>2013-12-26T09:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing (Google) maps in QV</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525985#M556437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, there is a limit: &lt;A href="https://developers.google.com/maps/documentation/business/articles/usage_limits" title="https://developers.google.com/maps/documentation/business/articles/usage_limits"&gt;Usage Limits for Google Maps API Web Services - Google Maps API for Business — Google Developers&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Dec 2013 11:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-Google-maps-in-QV/m-p/525985#M556437</guid>
      <dc:creator>luciancotea</dc:creator>
      <dc:date>2013-12-26T11:26:23Z</dc:date>
    </item>
  </channel>
</rss>

