<?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: Create or Move Google Map Marker Like twittervision.com</title>
	<atom:link href="http://www.akchauhan.com/create-or-move-google-map-marker-like-twittervisioncom/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.akchauhan.com/create-or-move-google-map-marker-like-twittervisioncom/</link>
	<description>PHP, MySql, JavaScript, JQuery, Prototype, Drupal, HTML, CSS and more...</description>
	<lastBuildDate>Thu, 05 Jan 2012 12:42:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kevin</title>
		<link>http://www.akchauhan.com/create-or-move-google-map-marker-like-twittervisioncom/comment-page-1/#comment-28622</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 03 Nov 2010 12:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.akchauhan.com/?p=328#comment-28622</guid>
		<description>Hi akchauhan,

How can I display links and images in the bubble?

$info[] = array(34.1372273,-117.7023255,&quot;Los Angeles, New Orleans&quot;, &quot;&quot;);

Inserting any tags in the text field makes it stop from working</description>
		<content:encoded><![CDATA[<p>Hi akchauhan,</p>
<p>How can I display links and images in the bubble?</p>
<p>$info[] = array(34.1372273,-117.7023255,&#8221;Los Angeles, New Orleans&#8221;, &#8220;&#8221;);</p>
<p>Inserting any tags in the text field makes it stop from working</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alok Jain</title>
		<link>http://www.akchauhan.com/create-or-move-google-map-marker-like-twittervisioncom/comment-page-1/#comment-4606</link>
		<dc:creator>Alok Jain</dc:creator>
		<pubDate>Mon, 03 Aug 2009 11:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.akchauhan.com/?p=328#comment-4606</guid>
		<description>Hello Chauhan,
Please help me out!
I have created Same as twittervision.com but i am not able to hide/remove marker icon. Will you please help me out from this problem.
Url: http://202.71.142.164/nauna/?module=Users&amp;action=MapFeeds&amp;feed=location
In advance Thank you.

Thanks &amp; Regards,
Alok Jain</description>
		<content:encoded><![CDATA[<p>Hello Chauhan,<br />
Please help me out!<br />
I have created Same as twittervision.com but i am not able to hide/remove marker icon. Will you please help me out from this problem.<br />
Url: <a href="http://202.71.142.164/nauna/?module=Users&#038;action=MapFeeds&#038;feed=location" rel="nofollow">http://202.71.142.164/nauna/?module=Users&#038;action=MapFeeds&#038;feed=location</a><br />
In advance Thank you.</p>
<p>Thanks &amp; Regards,<br />
Alok Jain</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alok Jain</title>
		<link>http://www.akchauhan.com/create-or-move-google-map-marker-like-twittervisioncom/comment-page-1/#comment-4603</link>
		<dc:creator>Alok Jain</dc:creator>
		<pubDate>Mon, 03 Aug 2009 11:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.akchauhan.com/?p=328#comment-4603</guid>
		<description>Hello Chauhan,
Please help me out!
I have created Same as twittervision.com but i am not able to hide/remove marker icon. Will you please help me out from this problem.
In advance Thank you.

Thanks &amp; Regards,
Alok Jain</description>
		<content:encoded><![CDATA[<p>Hello Chauhan,<br />
Please help me out!<br />
I have created Same as twittervision.com but i am not able to hide/remove marker icon. Will you please help me out from this problem.<br />
In advance Thank you.</p>
<p>Thanks &amp; Regards,<br />
Alok Jain</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.akchauhan.com/create-or-move-google-map-marker-like-twittervisioncom/comment-page-1/#comment-4480</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 28 Jul 2009 09:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.akchauhan.com/?p=328#comment-4480</guid>
		<description>&lt;a href=&quot;#comment-4449&quot; rel=&quot;nofollow&quot;&gt;@ tushar&lt;/a&gt; 
I think either you are using PHP &lt; 5.2 or JSON library in not enabled in your php.ini file. If you are using PHP version &lt;5.2 you can use this user defined function &quot;array_to_json&quot; instead of &quot;json_encode&quot;

function array_to_json( $array ){

    if( !is_array( $array ) ){
        return false;
    }

    $associative = count( array_diff( array_keys($array), array_keys( array_keys( $array )) ));
    if( $associative ){

        $construct = array();
        foreach( $array as $key =&gt; $value ){

            // We first copy each key/value pair into a staging array,
            // formatting each key and value properly as we go.

            // Format the key:
            if( is_numeric($key) ){
                $key = &quot;key_$key&quot;;
            }
            $key = &quot;&#039;&quot;.addslashes($key).&quot;&#039;&quot;;

            // Format the value:
            if( is_array( $value )){
                $value = array_to_json( $value );
            } else if( !is_numeric( $value ) &#124;&#124; is_string( $value ) ){
                $value = &quot;&#039;&quot;.addslashes($value).&quot;&#039;&quot;;
            }

            // Add to staging array:
            $construct[] = &quot;$key: $value&quot;;
        }

        // Then we collapse the staging array into the JSON form:
        $result = &quot;{ &quot; . implode( &quot;, &quot;, $construct ) . &quot; }&quot;;

    } else { // If the array is a vector (not associative):

        $construct = array();
        foreach( $array as $value ){

            // Format the value:
            if( is_array( $value )){
                $value = array_to_json( $value );
            } else if( !is_numeric( $value ) &#124;&#124; is_string( $value ) ){
                $value = &quot;&#039;&quot;.addslashes($value).&quot;&#039;&quot;;
            }

            // Add to staging array:
            $construct[] = $value;
        }

        // Then we collapse the staging array into the JSON form:
        $result = &quot;[ &quot; . implode( &quot;, &quot;, $construct ) . &quot; ]&quot;;
    }

    return $result;
}

If you are only sending address then you have to find out the longitude and latitude of the addresses to point addresses to Google Map. Google provide service for this and you can find out more about it on http://code.google.com/apis/maps/documentation/.</description>
		<content:encoded><![CDATA[<p><a href="#comment-4449" rel="nofollow">@ tushar</a><br />
I think either you are using PHP < 5.2 or JSON library in not enabled in your php.ini file. If you are using PHP version &lt;5.2 you can use this user defined function "array_to_json" instead of "json_encode"</p>
<p>function array_to_json( $array ){</p>
<p>    if( !is_array( $array ) ){<br />
        return false;<br />
    }</p>
<p>    $associative = count( array_diff( array_keys($array), array_keys( array_keys( $array )) ));<br />
    if( $associative ){</p>
<p>        $construct = array();<br />
        foreach( $array as $key => $value ){</p>
<p>            // We first copy each key/value pair into a staging array,<br />
            // formatting each key and value properly as we go.</p>
<p>            // Format the key:<br />
            if( is_numeric($key) ){<br />
                $key = &#8220;key_$key&#8221;;<br />
            }<br />
            $key = &#8220;&#8216;&#8221;.addslashes($key).&#8221;&#8216;&#8221;;</p>
<p>            // Format the value:<br />
            if( is_array( $value )){<br />
                $value = array_to_json( $value );<br />
            } else if( !is_numeric( $value ) || is_string( $value ) ){<br />
                $value = &#8220;&#8216;&#8221;.addslashes($value).&#8221;&#8216;&#8221;;<br />
            }</p>
<p>            // Add to staging array:<br />
            $construct[] = &#8220;$key: $value&#8221;;<br />
        }</p>
<p>        // Then we collapse the staging array into the JSON form:<br />
        $result = &#8220;{ &#8221; . implode( &#8220;, &#8220;, $construct ) . &#8221; }&#8221;;</p>
<p>    } else { // If the array is a vector (not associative):</p>
<p>        $construct = array();<br />
        foreach( $array as $value ){</p>
<p>            // Format the value:<br />
            if( is_array( $value )){<br />
                $value = array_to_json( $value );<br />
            } else if( !is_numeric( $value ) || is_string( $value ) ){<br />
                $value = &#8220;&#8216;&#8221;.addslashes($value).&#8221;&#8216;&#8221;;<br />
            }</p>
<p>            // Add to staging array:<br />
            $construct[] = $value;<br />
        }</p>
<p>        // Then we collapse the staging array into the JSON form:<br />
        $result = &#8220;[ " . implode( ", ", $construct ) . " ]&#8220;;<br />
    }</p>
<p>    return $result;<br />
}</p>
<p>If you are only sending address then you have to find out the longitude and latitude of the addresses to point addresses to Google Map. Google provide service for this and you can find out more about it on <a href="http://code.google.com/apis/maps/documentation/" rel="nofollow">http://code.google.com/apis/maps/documentation/</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tushar</title>
		<link>http://www.akchauhan.com/create-or-move-google-map-marker-like-twittervisioncom/comment-page-1/#comment-4449</link>
		<dc:creator>tushar</dc:creator>
		<pubDate>Mon, 27 Jul 2009 07:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.akchauhan.com/?p=328#comment-4449</guid>
		<description>hi akchauhan !
Please help me out!
I have tried your twitter vision code and i am getting error in updates.php: echo json_encode($info);
The json encode function is not working on my system and its showing fatal error.
Also i wanted to just pass address through database without latitude and longitude.
Please provide me a working total solution.
Thanks in advance</description>
		<content:encoded><![CDATA[<p>hi akchauhan !<br />
Please help me out!<br />
I have tried your twitter vision code and i am getting error in updates.php: echo json_encode($info);<br />
The json encode function is not working on my system and its showing fatal error.<br />
Also i wanted to just pass address through database without latitude and longitude.<br />
Please provide me a working total solution.<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>

