<?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: Urgent: How to fix infowindow to a point so when map drag it won't move in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170057#M15793</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are trying to create an InfoWindow that is independent of the map and fixed on your screen, you may want to use a different Dojo Dijit that is outside of the map functionality. You can still populate it with the map derived data, but it will not be anchored to the map. I don't know the exact details of how to implement this, but I have an application where I populated the map attribute data into a DIV on the side of my map and it was not that difficult to accomplish. I imagine it would shouldn't be too difficult to have a fixed popup appear, especially if you can find a Dojo Dijit that already exists for this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good Luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Apr 2011 15:15:38 GMT</pubDate>
    <dc:creator>MatthewLawton</dc:creator>
    <dc:date>2011-04-13T15:15:38Z</dc:date>
    <item>
      <title>Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170053#M15789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How to fix a infowindow or a info template to a point so that when i drag the map the infowindow will no change place or move ...what is the code...and where shld i place it at?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration:underline;"&gt;this is my code :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var stX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;nbsp;&amp;nbsp; "23319.3347409758";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var stY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;nbsp;&amp;nbsp; "28825.7191286444";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var pt= new esri.geometry.Point(stX,stY,map.spatialReference);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //var strImage = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.rw-designer.com/i/download48b.png" rel="nofollow" target="_blank"&gt;http://www.rw-designer.com/i/download48b.png&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var symbol = new esri.symbol.PictureMarkerSymbol(strImage, 25,25);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var attr = {"PlaceName":"Peranakan musem of Singapore","PlaceAddr":"addr"};&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var infoTemplate = new esri.InfoTemplate();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoTemplate.setTitle("Building Name:");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoTemplate.setContent(getInfoContent);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var graphic = new esri.Graphic(pt,symbol,attr,infoTemplate);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gLayer.add(graphic);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; function getInfoContent(graphic){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; var bc = new dijit.layout.BorderContainer({style: "font-size: 11pt; height: 520px; width:493px; background: #CCFFFF;"});&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; var c1 = new dijit.layout.ContentPane({&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; region: "top",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; style: "height: 20px width: 100%",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; content: "hello"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; });&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; bc.addChild(c1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; //make a tab container &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; var tc = new dijit.layout.TabContainer({&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; region: "center",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; style: "height: 65%; width: 100%;&amp;nbsp; "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; }, dojo.create("div"));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //display attribute information&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var cp1 = new dijit.layout.ContentPane({&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; //style: " background-color: red; ",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; title: "&amp;lt;font color= #E4287C&amp;gt;&amp;lt;b&amp;gt;detail&amp;lt;/font&amp;gt; ",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; content: "sfdfsdfsdf"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tc.addChild(cp1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; bc.addChild(tc);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; return bc.domNode;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; dojo.addOnLoad(addSymbol);&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Apr 2011 11:35:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170053#M15789</guid>
      <dc:creator>Sophialim</dc:creator>
      <dc:date>2011-04-10T11:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170054#M15790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you looking for something like this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;map.infoWindow.show(map.position,map.getInfoWindowAnchor(map.position));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That should anchor the info window to a feature position on the map. Or you can anchor it to a mouse click, like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;map.infoWindow.show(evt.screenPoint,map.getInfoWindowAnchor(evt.screenPoint));&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 21:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170054#M15790</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2011-04-12T21:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170055#M15791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Are you looking for something like this?&lt;BR /&gt;&lt;BR /&gt;map.infoWindow.show(map.position,map.getInfoWindowAnchor(map.position));&lt;BR /&gt;&lt;BR /&gt;That should anchor the info window to a feature position on the map. Or you can anchor it to a mouse click, like this:&lt;BR /&gt;&lt;BR /&gt;map.infoWindow.show(evt.screenPoint,map.getInfoWindowAnchor(evt.screenPoint));&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;how to use this when i want to fix to a position?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cause what i need is when i click on the icon i need to pop up the infowindow but at the same time the icon will move to the side so that the infowindow will be fix until almost the whole map sia...but at the side still can see the icon on the map&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 00:12:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170055#M15791</guid>
      <dc:creator>Sophialim</dc:creator>
      <dc:date>2011-04-13T00:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170056#M15792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For the infoWindow.show(point, placement) method, the point parameter is an esri.geometry.Point object. It is defined by the x y coordinates of the location. Therefore, it always fix to that location on the earth, not the screen. When the map is moved, the location is moved, and the infowindow is moved too. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You may want to try some other control, e.g. floating window or others,&amp;nbsp; instead of infowindow.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 12:54:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170056#M15792</guid>
      <dc:creator>SiqiLi</dc:creator>
      <dc:date>2011-04-13T12:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170057#M15793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are trying to create an InfoWindow that is independent of the map and fixed on your screen, you may want to use a different Dojo Dijit that is outside of the map functionality. You can still populate it with the map derived data, but it will not be anchored to the map. I don't know the exact details of how to implement this, but I have an application where I populated the map attribute data into a DIV on the side of my map and it was not that difficult to accomplish. I imagine it would shouldn't be too difficult to have a fixed popup appear, especially if you can find a Dojo Dijit that already exists for this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good Luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 15:15:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170057#M15793</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2011-04-13T15:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170058#M15794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;For the infoWindow.show(point, placement) method, the point parameter is an esri.geometry.Point object. It is defined by the x y coordinates of the location. Therefore, it always fix to that location on the earth, not the screen. When the map is moved, the location is moved, and the infowindow is moved too. &lt;BR /&gt;&lt;BR /&gt;You may want to try some other control, e.g. floating window or others,&amp;nbsp; instead of infowindow.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;but if the placement is the&amp;nbsp; archo to the map is it? if i want to click on the icon and the icon move to the side of the map and the infowindow pop up and take up almost half the map view...and the infowindow is fix...how can i do it?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 23:46:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170058#M15794</guid>
      <dc:creator>Sophialim</dc:creator>
      <dc:date>2011-04-13T23:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170059#M15795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If you are trying to create an InfoWindow that is independent of the map and fixed on your screen, you may want to use a different Dojo Dijit that is outside of the map functionality. You can still populate it with the map derived data, but it will not be anchored to the map. I don't know the exact details of how to implement this, but I have an application where I populated the map attribute data into a DIV on the side of my map and it was not that difficult to accomplish. I imagine it would shouldn't be too difficult to have a fixed popup appear, especially if you can find a Dojo Dijit that already exists for this.&lt;BR /&gt;&lt;BR /&gt;Good Luck!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so can teach miie tat method i want to see can work anot and what is the dojo diji...cus i use the border container, and tab container and the content pane....&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cus i want to click on the icon and the icon move to the side of the map and the infowindow pop up and take up almost half the map view...and the infowindow is fix...how can i do it?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 23:49:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170059#M15795</guid>
      <dc:creator>Sophialim</dc:creator>
      <dc:date>2011-04-13T23:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170060#M15796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;but if the placement is the&amp;nbsp; archo to the map is it? if i want to click on the icon and the icon move to the side of the map and the infowindow pop up and take up almost half the map view...and the infowindow is fix...how can i do it?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The placement parameter means the placement of the InfoWindow with respect to the graphic.&amp;nbsp; It is relative to the location of your icon. It just means put the inforwindow on the UPPERRIGHT side or other side of the icon. Not the placement on the screen.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/infowindow.htm#show"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/infowindow.htm#show&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Like the answer from mflawton, you may need to find another Dojo Diji control. Maybe a Javascript popup box or other better one.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.w3schools.com/JS/js_popup.asp"&gt;http://www.w3schools.com/JS/js_popup.asp&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2011 14:30:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170060#M15796</guid>
      <dc:creator>SiqiLi</dc:creator>
      <dc:date>2011-04-14T14:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: How to fix infowindow to a point so when map drag it won't move</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170061#M15797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The placement parameter means the placement of the InfoWindow with respect to the graphic.&amp;nbsp; It is relative to the location of your icon. It just means put the inforwindow on the UPPERRIGHT side or other side of the icon. Not the placement on the screen.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/infowindow.htm#show"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/infowindow.htm#show&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Like the answer from mflawton, you may need to find another Dojo Diji control. Maybe a Javascript popup box or other better one.&lt;BR /&gt;&lt;A href="http://www.w3schools.com/JS/js_popup.asp"&gt;http://www.w3schools.com/JS/js_popup.asp&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;what is the the dojo diji tat you two say? cause i gt use the border container and tab container dojo diji control&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2011 23:54:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/urgent-how-to-fix-infowindow-to-a-point-so-when/m-p/170061#M15797</guid>
      <dc:creator>Sophialim</dc:creator>
      <dc:date>2011-04-14T23:54:39Z</dc:date>
    </item>
  </channel>
</rss>

