Hi Heath,<div>I believe I am calling the function on the LonLat pair with the below code</div><div><br></div><div>tweet.point = new OpenLayers.LonLat(tweet.geo.coordinates[0],tweet.geo.coordinates[1]).transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject());</div>
<div><br></div><div>which returns POINT(NaN Nan) when I call an alert in the below function. If I don&#39;t call the transform function on the point, which works by the way with placing the geolocated position which centers the map to get the 50km radius for the tweets. </div>
<div><br></div><div>I&#39;ve tried your suggestion as well</div><div><div><br></div><div>function parseTweetsQ(){</div><div>if (tweetsQ.length &gt; 0) {</div><div>var tweet = tweetsQ.pop();</div><div>if (tweet.geo){</div>
<div>var latlon = new OpenLayers.LonLat(tweet.geo.coordinates[0],tweet.geo.coordinates[1]);</div><div>latlon.transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject());</div><div>tweet.point = latlon;</div>
<div>tweet.attributes = {};</div><div>plotTwt(tweet);</div><div>}}}</div><div><br></div></div><div><div>function plotTwt(tweet){</div><div>twtpoint = new OpenLayers.Geometry.Point(tweet.point);</div><div>alert(twtpoint);</div>
<div>twtmark = new OpenLayers.Features.Vector(twtpoint);</div><div>tweetz.addFeatures([twtmark]);</div><div>}</div></div><div><br></div><div>and I still get a POINT(Nan NaN) in the alert. I&#39;m not sure what I&#39;m doing wrong here, but the syntax follows from other examples, and I know I&#39;m missing something really obvious here. If I call the alert in the parsetweet function, it appears that the lon is converted, but the lat is corrupted to a NaN...</div>
<div><br></div><div><div>function plotTwt(tweet){</div><div>twtpoint = new OpenLayers.Geometry.Point(tweet.point);</div><div>alert(twtpoint);</div><div>twtmark = new OpenLayers.Features.Vector(twtpoint);</div><div>tweetz.addFeatures([twtmark]);</div>
<div>alert(tweet.point);</div><div>}</div></div><div><br></div><div>Full code is below</div><div><br></div><div><div>var feat, OpenLayers, latlon;</div><div>var tweetz = new OpenLayers.Layer.Vector(&quot;Tweets&quot;, {styleMap: new OpenLayers.StyleMap({externalGraphic: &quot;OpenLayers-2.11-rc1/img/marker-green.png&quot;, pointRadius: 10})});</div>
<div>var marker = new OpenLayers.Layer.Vector(&quot;Marker&quot;, {styleMap: new OpenLayers.StyleMap({externalGraphic: &quot;OpenLayers-2.11-rc1/img/marker.png&quot;, pointRadius: 10})});</div><div>var map = new OpenLayers.Map(&#39;map&#39;);</div>
<div>var tweets = [];</div><div>var tweetsQ = [];</div><div>var refreshQuery = &#39;?=&#39;;</div><div><br></div><div>function initGIS(){</div><div>map.addControl(new OpenLayers.Control.LayerSwitcher());</div><div>var mapnik = new OpenLayers.Layer.OSM();</div>
<div>map.addLayer(mapnik);</div><div>map.addLayer(tweetz);</div><div>map.setCenter(new OpenLayers.LonLat(-90, 38).transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject()),12);</div><div>$(document).everyTime(&#39;30s&#39;, acquireTweets);</div>
<div>$(document).everyTime(&#39;100ms&#39;, parseTweetsQ);</div><div>getLoc();} </div><div><br></div><div><br></div><div>function getLoc(){</div><div>if (Modernizr.geolocation) {</div><div> navigator.geolocation.getCurrentPosition(plotLoc,handle_error);</div>
<div>} else {</div><div>yqlgeo.get(&#39;visitor&#39;,norm_yql_resp);</div><div>}}</div><div><br></div><div>function createTWTsrcURL (){</div><div>var temp = map.getCenter().transform(new OpenLayers.Projection(&quot;EPSG:900913&quot;),new OpenLayers.Projection(&quot;EPSG:4326&quot;));</div>
<div>return &#39;<a href="http://search.twitter.com/search.json">http://search.twitter.com/search.json</a>&#39; + refreshQuery + &#39;&amp;geocode=&#39; + temp.lat +&#39;%2C&#39; + temp.lon + &#39;%2C50km&amp;rpp=100&amp;callback=?&#39;;}</div>
<div><br></div><div>function plotLoc (position){</div><div>map.addLayer(marker);</div><div>var feat = new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point(position.coords.longitude,position.coords.latitude).transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject()));</div>
<div>marker.addFeatures([feat]);</div><div>var bounds = marker.getDataExtent();</div><div>map.zoomToExtent(bounds);</div><div>acquireTweets();}</div><div><br></div><div>function acquireTweets(){</div><div>$.getJSON(createTWTsrcURL(), function(data){</div>
<div>if(data.results)</div><div>$.each(data.results, function(i, tweet){</div><div>if (tweet.geo || tweet.location)</div><div>tweetsQ.push(tweet);</div><div>});</div><div>refreshQuery = data.refresh_url;</div><div>});}</div>
<div><br></div><div>function parseTweetsQ(){</div><div>if (tweetsQ.length &gt; 0) {</div><div>var tweet = tweetsQ.pop();</div><div>if (tweet.geo){</div><div>tweet.point = new OpenLayers.LonLat(tweet.geo.coordinates[0],tweet.geo.coordinates[1]).transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject());</div>
<div>tweet.attributes = {};</div><div>plotTwt(tweet);</div><div>}}}</div><div><br></div><div>function createInfoContent(tweet) {</div><div>var retval = &#39;&#39;;</div><div>retval += &#39;&lt;div class=&quot;tweet_info&quot;&gt;&#39;;</div>
<div>retval += &#39;&lt;img alt=&quot;&#39; + tweet.from_user_id + &#39;&quot; src=&quot;&#39; +</div><div>tweet.profile_image_url + &#39;&quot; class=&quot;tweet_profile&quot;/&gt;&#39;;</div><div>retval += &#39;&lt;h3&gt;&#39; + tweet.from_user + &#39;&lt;/h3&gt;&#39;;</div>
<div>retval += &#39;&lt;p&gt;&#39; + tweet.text + &#39;&lt;/p&gt;&#39;;</div><div>retval += &#39;&lt;p&gt;Source: &lt;a href=&quot;&#39; + tweet.source + &#39;&quot;/&gt;&#39; +</div><div>tweet.source + &#39;&lt;/a&gt;&lt;/p&gt;&#39;;</div>
<div>retval += &#39;&lt;/div&gt;&#39;;</div><div>return retval;}</div><div><br></div><div>function plotTwt(tweet){</div><div>twtpoint = new OpenLayers.Geometry.Point(tweet.point);</div><div>alert(twtpoint);</div><div>twtmark = new OpenLayers.Features.Vector(twtpoint);</div>
<div>tweetz.addFeatures([twtmark]);</div><div>alert(tweet.point);}</div><div><br></div><div><br></div><div>function handle_error(error) {</div><div>switch(error.code){</div><div>case error.PERMISSION_DENIED: alert(&quot;This application reguires you to agree to share your location. Please reload the page to see it work properly. There is a privacy disclaimer at the bottom of this page. This site does not currently record or store these data, and in the future will not record unique user information without informing the user or asking their permission. -Virtual Spatiality&quot;);</div>
<div>break;</div><div>case error.POSITION_UNAVAILABLE: alert(&quot;could not determine position&quot;);</div><div>break;</div><div>case error.TIMEOUT: alert(&quot;timeout retrieving position&quot;);</div><div>break;</div>
<div>default: alert(&quot;unknown error&quot;);</div><div>break;}}</div><div>function norm_yql_resp(response){</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>if (response.error) {</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>var error = {code : 0};</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>handle_error(error);</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>return;}var position = {coords:</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>{<span class="Apple-tab-span" style="white-space:pre">        </span>latitude: response.place.centroid.latitude,</div>
<div><span class="Apple-tab-span" style="white-space:pre">                                </span>longitude: response.place.centroid.longitude</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>},</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>address :</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>{city: response.place.locality2.content,</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>region: response.place.admin1.content,</div>
<div><span class="Apple-tab-span" style="white-space:pre">                                </span>country: response.place.country.content</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>}};handle_geolocation_query(position);}</div>
<div class="gmail_quote">On Tue, Jun 21, 2011 at 10:44 AM, B. Heath Robinson <span dir="ltr">&lt;<a href="mailto:heath@midnighthour.org">heath@midnighthour.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div style="word-wrap:break-word"><div>I should have proofread the email BEFORE I sent it.</div><div><br></div>Actually, it would be something like this:<div><br><div>var latlon = new OpenLayers.LonLat(tweet.geo.coordinates[0],tweet.geo.coordinates[1]);</div>
<div class="im"><div>latlon.transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject());</div><div>tweet.point = latlon;</div><div><br></div></div><div>This assumes that tweet.geo.coordinates[0],tweet.geo.coordinates[1] is something that the LonLat constructor will take.</div>
<div><div></div><div class="h5"><div><br><div><div>On Jun 21, 2011, at 10:39 AM, B. Heath Robinson wrote:</div><br><blockquote type="cite"><div style="word-wrap:break-word"><div>Transform operates on the coordinates, it does not return a new coordinates.  You should use it like this:</div>
<div>var latlon = weet.geo.coordinates[0],tweet.geo.coordinates[1];</div><div>latlon.transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject());</div></div></blockquote><blockquote type="cite"><div style="word-wrap:break-word">
<div>tweet.point = latlon;</div><div><br></div><br><div><div>On Jun 21, 2011, at 10:21 AM, Nicholas Efremov-Kendall wrote:</div><br><blockquote type="cite">Hi guys thanks for the previous advice,<div><br></div><div>I&#39;m still running into an issue, and I&#39;m not sure how to resolve it. When I first use a OpenLayers.LonLat and transform the point, I get the lon converted correctect, but the lat is returned NaN. If I don&#39;t transform it, the coordinates remain correct.</div>


<div><br></div><div><div>tweet.point = new OpenLayers.LonLat(tweet.geo.coordinates[0],tweet.geo.coordinates[1]).transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject());</div><div><br></div><div>


I&#39;ve been playing around with some different iterations, and I can get tweet.point to alert out with ever tweet that&#39;s pulled into the plotting function, but the markers aren&#39;t added. The issue seems to be with how I&#39;m calling the transform function, because somehow after calling the function I get NaN&#39;s for the lat-lon&#39;s inside the point object. I&#39;m really hitting a wall here.</div>

<div><br></div><div><div><br></div></div><div><br></div><div><div class="gmail_quote">On Tue, Jun 21, 2011 at 3:23 AM, Nick Kendall <span dir="ltr">&lt;<a href="mailto:n.e.kendall@gmail.com" target="_blank">n.e.kendall@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF"><div>Thanks! Will take another crack at this Tom! <br><br>Sent from my mobile device</div><div><div></div><div><div><br>On Jun 21, 2011, at 2:37 AM, &quot;Sveen Atle Frenvik (Geomatikk IKT)&quot; &lt;<a href="mailto:Atle.Frenvik.Sveen@geomatikk.no" target="_blank">Atle.Frenvik.Sveen@geomatikk.no</a>&gt; wrote:<br>


<br></div><div></div><blockquote type="cite"><div>

    try using an OpenLayers.Geometry.Point instead of an
    OpenLayers.LonLat<br>
    <br>
    ie (untested, but i think this is rather correct):<br>
    <br>
    <div>function parseTweetsQ(){</div>
    <div>    if (tweetsQ.length &gt; 0) {</div>
    <div>        var tweet = tweetsQ.pop();</div>
    <div>        if (tweet.geo){</div>
    <div>            tweet.point = new OpenLayers.Geometry.Point(tweet.geo.coordinates[0],tweet.geo.coordinates[1]).transform(new
      OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject());<br>
                  tweet.attributes = {}; //in this you coukd stuff
      attributes of the tweet for easy access on clicks etc.<br>
    </div>
    <div>            plotTwt(tweet);</div>
    <div>        }<br>
          }<br>
      }</div>
    <div><br>
    </div>
    <div>
      <div>function plotTwt(tweet){<br>
            //why do you keep adding the layer for each tweet? <br>
      </div>
      <div>    map.addLayer(tweetz);</div>
      <div>    tweet.marker = new OpenLayers.Feature.Vector(tweet.point,{attributes:{tweet.attributes]});</div>
      <div>    tweetz.addFeatures([tweet.marker]);<br>
        }<br>
        <br>
      </div>
    </div>
    <br>
    <br>
    On 2011-06-21 05:00, Nicholas Efremov-Kendall wrote:
    <blockquote type="cite">Hi Phil et al,
      <div><br>
      </div>
      <div>Thanks for your response. The code as is does iterate through
        the features as they are returned. I have a handle on it up to
        the plotting function. An alert on the tweet.marker object
        returns [object Object], while tweet.latlng returns readable
        coordinates lon=38.6834,lat=-90.4313. I guess what I&#39;m unsure
        about is how to parse the object which is passed to the third
        function. Thanks again.</div>
      <div><br>
      </div>
      <div>
        <div><br>
        </div>
        <div>function acquireTweets(){</div>
        <div>$.getJSON(createTWTsrcURL(), function(data){</div>
        <div>if(data.results)</div>
        <div>$.each(data.results, function(i, tweet){</div>
        <div>if (tweet.geo || tweet.location)</div>
        <div>tweetsQ.push(tweet);</div>
        <div>});</div>
        <div>refreshQuery = data.refresh_url;</div>
        <div>});}</div>
        <div><br>
        </div>
        <div>function parseTweetsQ(){</div>
        <div>if (tweetsQ.length &gt; 0) {</div>
        <div>var tweet = tweetsQ.pop();</div>
        <div>if (tweet.geo){</div>
        <div>tweet.latlng = new
          OpenLayers.LonLat(tweet.geo.coordinates[0],tweet.geo.coordinates[1]);</div>
        <div>plotTwt(tweet);</div>
        <div>}}}</div>
        <div><br>
        </div>
        <div>
          <div>function plotTwt(tweet){</div>
          <div>
            map.addLayer(tweetz);</div>
          <div>tweet.marker = new OpenLayers.Feature.Vector(new
            OpenLayers.Geometry.Point(tweet.latlng).transform(new
            OpenLayers.Projection(&quot;EPSG:4326&quot;),map.getProjectionObject()));</div>
          <div>tweetz.addFeatures([tweet.marker]);}</div>
        </div>
        <div><br>
        </div>
        <div><br>
        </div>
        <div><br>
        </div>
        <br>
        <div class="gmail_quote">On Mon, Jun 20, 2011 at 9:13 PM, Phil
          Scadden <span dir="ltr">&lt;<a href="mailto:p.scadden@gns.cri.nz" target="_blank"></a><a href="mailto:p.scadden@gns.cri.nz" target="_blank">p.scadden@gns.cri.nz</a>&gt;</span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex">I have no idea what the object returned
            by twitter is but surely, but if<br>
            you are using jsonp, then<br>
            have in your code something like:<br>
            jsonp_function(json)<br>
            where jsonp_function is the name of jsonp callback and json
            is the<br>
            returned object. I would guess it contains an array of
            feature type<br>
            objects, so you would iterate through the array, creating
            feature for<br>
            each row, and calling vectorLayer.addFeatures(features) to
            add them to<br>
            the vector layer.<br>
            <br>
            Notice: This email and any attachments are confidential. If
            received in error please destroy and immediately notify us.
            Do not copy or disclose the contents.<br>
            <br>
            _______________________________________________<br>
            Users mailing list<br>
            <a href="mailto:Users@lists.osgeo.org" target="_blank"></a><a href="mailto:Users@lists.osgeo.org" target="_blank">Users@lists.osgeo.org</a><br>
            <a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank"></a><a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a><br>



          </blockquote>
        </div>
        <br>
      </div>
      <pre><fieldset></fieldset>
_______________________________________________
Users mailing list
<a href="mailto:Users@lists.osgeo.org" target="_blank"></a><a href="mailto:Users@lists.osgeo.org" target="_blank">Users@lists.osgeo.org</a>
<a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank"></a><a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a>
</pre>
    </blockquote>
    <br>
    <br>
    <pre cols="72">-- 
Atle Frenvik Sveen
Utvikler
Geomatikk IKT AS
tlf: 45 27 86 89
<a href="mailto:atle.frenvik.sveen@geomatikk.no" target="_blank"></a><a href="mailto:atle.frenvik.sveen@geomatikk.no" target="_blank">atle.frenvik.sveen@geomatikk.no</a></pre>
  

</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>Users mailing list</span><br><span><a href="mailto:Users@lists.osgeo.org" target="_blank">Users@lists.osgeo.org</a></span><br>


<span><a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a></span><br></div></blockquote></div></div></div></blockquote></div><br>

</div>
</div>
_______________________________________________<br>Users mailing list<br><a href="mailto:Users@lists.osgeo.org" target="_blank">Users@lists.osgeo.org</a><br><a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a><br>
</blockquote></div><br></div>_______________________________________________<br>Users mailing list<br><a href="mailto:Users@lists.osgeo.org" target="_blank">Users@lists.osgeo.org</a><br><a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a><br>
</blockquote></div><br></div></div></div></div></div></blockquote></div><br></div>