<?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: Mapquest Map, Points not autosizing in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705519#M254355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan &amp;amp; Jochem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Had to implement both your suggestions however my points are now dynamically resizing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now onto the next head wrecker! thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Aug 2014 14:46:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-08-19T14:46:40Z</dc:date>
    <item>
      <title>Mapquest Map, Points not autosizing</title>
      <link>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705516#M254352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the attached map of Ireland plotting some counties (all containing random data) then using the MapQuest connection plotting it against a map to show in the correct location.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking to have each county point increase or decrease depending on the quantity of sales, I have tried various methods for this however the points stay resolutely uniform in size.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to have them dynamically resize? Its probably something simple that I'm missing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 14:06:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705516#M254352</guid>
      <dc:creator />
      <dc:date>2014-08-19T14:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Mapquest Map, Points not autosizing</title>
      <link>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705517#M254353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your number format for the CustomerQuantity is not correct.&lt;/P&gt;&lt;P&gt;If you do a sum on this field it returns 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe this can help you:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;sum(num#(CustomerQuantity,'#,##0.##','.',','))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 14:23:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705517#M254353</guid>
      <dc:creator>jochem_zw</dc:creator>
      <dc:date>2014-08-19T14:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Mapquest Map, Points not autosizing</title>
      <link>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705518#M254354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Played around with your number formatting in the script i changed 2 areas:&lt;/P&gt;&lt;P&gt;&lt;/P&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;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;/P&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;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Replace([results/result/locations/location/latLng/lat], '.', ',')&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;as latitude,&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Replace([results/result/locations/location/latLng/lng], '.', ',')&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;as longitude&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Replace([results/result/locations/location/latLng/lat], ',', '.')&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;as latitude,&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Replace([results/result/locations/location/latLng/lng], ',', '.')&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;as longitude&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...then hit reload and it should work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 14:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705518#M254354</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-08-19T14:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mapquest Map, Points not autosizing</title>
      <link>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705519#M254355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan &amp;amp; Jochem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Had to implement both your suggestions however my points are now dynamically resizing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now onto the next head wrecker! thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 14:46:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mapquest-Map-Points-not-autosizing/m-p/705519#M254355</guid>
      <dc:creator />
      <dc:date>2014-08-19T14:46:40Z</dc:date>
    </item>
  </channel>
</rss>

