<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Yahoomaps latlon example</title>
	<atom:link href="http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/</link>
	<description>Flash • Flex • iPhone • Android: software development and visual communication design</description>
	<lastBuildDate>Wed, 16 Jun 2010 15:16:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Randy Troppmann</title>
		<link>http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/comment-page-1/#comment-8</link>
		<dc:creator>Randy Troppmann</dc:creator>
		<pubDate>Fri, 13 Oct 2006 09:41:01 +0000</pubDate>
		<guid isPermaLink="false">http://randytroppmann.com/?p=32#comment-8</guid>
		<description>What zoom level are you viewing at? myMap.map.map_3.getLatLon(myPoint) assumes you are on zoom level 3. Example:

myMap.map.map_%.getLatLon(myPoint)

where % = current map level.

Note that this is undocumented and not part of the offcial &quot;API&quot;, but it works.

I hope that helps.</description>
		<content:encoded><![CDATA[<p>What zoom level are you viewing at? myMap.map.map_3.getLatLon(myPoint) assumes you are on zoom level 3. Example:</p>
<p>myMap.map.map_%.getLatLon(myPoint)</p>
<p>where % = current map level.</p>
<p>Note that this is undocumented and not part of the offcial &#8220;API&#8221;, but it works.</p>
<p>I hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Kirby</title>
		<link>http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/comment-page-1/#comment-7</link>
		<dc:creator>John Kirby</dc:creator>
		<pubDate>Mon, 09 Oct 2006 10:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://randytroppmann.com/?p=32#comment-7</guid>
		<description>This is great... except I&#039;m getting an undefined  (when I execute the click) LatLon (yes I&#039;m importing the com.yahoo.maps.LatLon) on the myMap.map.map_3.getLatLon(myPoint)?

I am getting x,y values from the previous call new Point(myMap._xmouse, myMap._ymouse)

Any Ideas?</description>
		<content:encoded><![CDATA[<p>This is great&#8230; except I&#8217;m getting an undefined  (when I execute the click) LatLon (yes I&#8217;m importing the com.yahoo.maps.LatLon) on the myMap.map.map_3.getLatLon(myPoint)?</p>
<p>I am getting x,y values from the previous call new Point(myMap._xmouse, myMap._ymouse)</p>
<p>Any Ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy Troppmann</title>
		<link>http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/comment-page-1/#comment-6</link>
		<dc:creator>Randy Troppmann</dc:creator>
		<pubDate>Tue, 13 Jun 2006 09:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://randytroppmann.com/?p=32#comment-6</guid>
		<description>Sorry Andrew. I don&#039;t know.</description>
		<content:encoded><![CDATA[<p>Sorry Andrew. I don&#8217;t know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/comment-page-1/#comment-5</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 15 May 2006 23:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://randytroppmann.com/?p=32#comment-5</guid>
		<description>Is it possible to use this technique in combination with a CustomSWFOverlay when using the JS-Flash API?    I&#039;m trying to find a way to allow users to click on a map, automatically creating a marker, returning the lat/lon.  Any ideas how to accomplish this?</description>
		<content:encoded><![CDATA[<p>Is it possible to use this technique in combination with a CustomSWFOverlay when using the JS-Flash API?    I&#8217;m trying to find a way to allow users to click on a map, automatically creating a marker, returning the lat/lon.  Any ideas how to accomplish this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy Troppmann</title>
		<link>http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/comment-page-1/#comment-4</link>
		<dc:creator>Randy Troppmann</dc:creator>
		<pubDate>Wed, 29 Mar 2006 21:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://randytroppmann.com/?p=32#comment-4</guid>
		<description>Great idea! Yes you can dynamically assign the map like this:

var latLon:LatLon = yahooMap.map[&quot;map_&quot; + zoom].getLatLon(mapPoint);

Zoom is a variable where you are keeping track of the zoom level.

Yes, this is an undocumented call. Does this answer your question?</description>
		<content:encoded><![CDATA[<p>Great idea! Yes you can dynamically assign the map like this:</p>
<p>var latLon:LatLon = yahooMap.map["map_" + zoom].getLatLon(mapPoint);</p>
<p>Zoom is a variable where you are keeping track of the zoom level.</p>
<p>Yes, this is an undocumented call. Does this answer your question?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: will</title>
		<link>http://www.randytroppmann.com/2006/03/24/yahoomaps-latlon-example/comment-page-1/#comment-3</link>
		<dc:creator>will</dc:creator>
		<pubDate>Tue, 28 Mar 2006 18:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://randytroppmann.com/?p=32#comment-3</guid>
		<description>thanks for posting the source code!  I&#039;m slighty new to the ymap as business, and I was wondering if you could tell me what the line:

var latLon:LatLon = yahooMap.map.map_3.getLatLon(mapPoint);

is doing.  is there a way to change the map_3 parameter dynamically to allow for this to work at various zoom levels?  Is the getLatLon method an unexposed part of the api?  Thanks for any help, and keep up the sweet work... will</description>
		<content:encoded><![CDATA[<p>thanks for posting the source code!  I&#8217;m slighty new to the ymap as business, and I was wondering if you could tell me what the line:</p>
<p>var latLon:LatLon = yahooMap.map.map_3.getLatLon(mapPoint);</p>
<p>is doing.  is there a way to change the map_3 parameter dynamically to allow for this to work at various zoom levels?  Is the getLatLon method an unexposed part of the api?  Thanks for any help, and keep up the sweet work&#8230; will</p>
]]></content:encoded>
	</item>
</channel>
</rss>
