<?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 missing } after property list in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636007#M59407</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Firebug gives me an Error I simply cannot tackle. I tried two days already but I did not find the error. Furthermore it tells me that my init-function (LoadMap) cannot be found. why? it is definitely there!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would be grateful if anyone could check my code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://biota.botanik.uni-hamburg.de:8399/web/Test-Error/Observatory_WebGIS_PartII.html"&gt;http://biota.botanik.uni-hamburg.de:8399/web/Test-Error/Observatory_WebGIS_PartII.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank !you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 May 2010 10:53:26 GMT</pubDate>
    <dc:creator>JensOldeland</dc:creator>
    <dc:date>2010-05-19T10:53:26Z</dc:date>
    <item>
      <title>missing } after property list</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636007#M59407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Firebug gives me an Error I simply cannot tackle. I tried two days already but I did not find the error. Furthermore it tells me that my init-function (LoadMap) cannot be found. why? it is definitely there!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would be grateful if anyone could check my code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://biota.botanik.uni-hamburg.de:8399/web/Test-Error/Observatory_WebGIS_PartII.html"&gt;http://biota.botanik.uni-hamburg.de:8399/web/Test-Error/Observatory_WebGIS_PartII.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank !you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 10:53:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636007#M59407</guid>
      <dc:creator>JensOldeland</dc:creator>
      <dc:date>2010-05-19T10:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: missing } after property list</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636008#M59408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;First thing:&amp;nbsp; are you trying to use the ArcGIS API for JavaScript or the ArcGIS JavaScript Extension for the Google Maps API? Your html references the former, but your code looks like it's written for the latter. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, you should pick one of the following, not both to run LoadMap:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;dojo.addOnLoad(LoadMap)
&amp;lt;body class="tundra" onload="LoadMap();" onunload="GUnload();"&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally, and this is probably the cause of the error you're posting, change this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;content:"&amp;lt;div style='width:275px; height:175px;'&amp;gt;&amp;lt;b&amp;gt;Total 2007 Census Block Population is " + att.S2001 + ".&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;The age breakdown is as follows. &amp;lt;br /&amp;gt;"
&amp;nbsp;&amp;nbsp;&amp;nbsp; + "&amp;lt;img height=100 width=250 src='http://chart.apis.google.com/chart?cht=bvs&amp;amp;amp;chs=250x100&amp;amp;amp;chd=t:"
&amp;nbsp;&amp;nbsp;&amp;nbsp; + S2001 "," + S2002 + "," + S2003 + ","&amp;nbsp; + S2004 + "&amp;amp;amp;/&amp;gt;&amp;lt;/div&amp;gt;"};&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;content:"&amp;lt;div style='width:275px; height:175px;'&amp;gt;&amp;lt;b&amp;gt;Total 2007 Census Block Population is " + att.S2001 + ".&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;The age breakdown is as follows. &amp;lt;br /&amp;gt;" + 
&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;img height=100 width=250 src='http://chart.apis.google.com/chart?cht=bvs&amp;amp;amp;chs=250x100&amp;amp;amp;chd=t:" + 
&amp;nbsp;&amp;nbsp;&amp;nbsp; S2001 "," + S2002 + "," + S2003 + ","&amp;nbsp; + S2004 + "&amp;amp;amp;/&amp;gt;&amp;lt;/div&amp;gt;"};
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Notice the + at the end of the line rather than at the beginning of a new line.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:02:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636008#M59408</guid>
      <dc:creator>DerekSwingley</dc:creator>
      <dc:date>2021-12-12T03:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: missing } after property list</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636009#M59409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Derek ! &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;you saved my evening! Many thanks! &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Now it works! The mistake was in not having the plus-sign after the "t:". But this is strange because I tried it in so many ways and it never worked...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also found another missing "+" after&amp;nbsp; "+ 2001".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;many thanks also for the hint on the LoadMap() thing. I included the dojoAddonload simply because one error was "LoadMap was not loaded" so I tried again many many possibilities.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;THX&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 16:07:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636009#M59409</guid>
      <dc:creator>JensOldeland</dc:creator>
      <dc:date>2010-05-19T16:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: missing } after property list</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636010#M59410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Glad to help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 16:15:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/missing-after-property-list/m-p/636010#M59410</guid>
      <dc:creator>DerekSwingley</dc:creator>
      <dc:date>2010-05-19T16:15:02Z</dc:date>
    </item>
  </channel>
</rss>

