<?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>Kommentare zu: jQuery &amp; Google Maps: ein Beispiel</title>
	<atom:link href="http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/feed/" rel="self" type="application/rss+xml" />
	<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/</link>
	<description>The Blog that never sleeps</description>
	<lastBuildDate>Tue, 24 Apr 2012 12:51:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Von: muna</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-140810</link>
		<dc:creator>muna</dc:creator>
		<pubDate>Mon, 22 Dec 2008 08:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-140810</guid>
		<description>Hello Everybody...
 I have problem that the map is not properly working in Internet Explorer.
 So following to this blog i just copied the following code into &#039;googlemap.js&#039;.But it still shows error Line : 60
                  Char : 5
                  Error: Object doesn&#039;t support this property or method
                  Code : 0
and does not show any marker point of the located points.
The code that i had make copy paste is below(u can also get its link from this blog. i.e, http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7)

THE CODE IS:
---------------------------------------------------------------------------------------
if (!Array.prototype.forEach) {
    Array.prototype.forEach = function (fun) {
        var len = this.length, thisp = arguments[1], i = 0;
        if (typeof fun !== &quot;function&quot;) {
            throw new TypeError();
        }

        for (; i &lt; len; i++) {
            if (i in this) {
                fun.call(thisp, this[i], i, this);
            }
        }
    };
}

if (!Array.prototype.filter) {
    Array.prototype.filter = function (fun) {
        var len = this.length;
        var res = [];
        var thisp = arguments[1];
        var i = 0, val;
        if (typeof fun !== &quot;function&quot;) {
            throw new TypeError();
        }

        for (; i &lt; len; i++) {
            if (i in this) {
                val = this[i]; // in case fun mutates this
                if (fun.call(thisp, val, i, this)) {
                    res.push(val);
                }
            }
        }

        return res;
    };
}

if (!Array.prototype.map) {
    Array.prototype.map = function (fun)   {
        var len = this.length;
        var res = [];
        var thisp = arguments[1];
        var i = 0;
        if (typeof fun !== &quot;function&quot;) {
            throw new TypeError();
        }

        for (; i &lt; len; i++) {
            if (i in this) {
                res[i] = fun.call(thisp, this[i], i, this);
            }
        }

        return res;
    };
}

if (!Array.prototype.some) {
    Array.prototype.some = function (fun) {
        var len = this.length, thisp = arguments[1], i = 0;
        if (typeof fun !== &quot;function&quot;) {
            throw new TypeError();
        }

        for (; i &lt; len; i++) {
            if (i in this &amp;&amp; fun.call(thisp, this[i], i, this)) {
                return true;
            }
        }

        return false;
    };
}

if (!Array.prototype.every) {
    Array.prototype.every = function (fun) {
        var len = this.length, thisp = arguments[1], i = 0;
        if (typeof fun !== &quot;function&quot;) {
            throw new TypeError();
        }

        for (; i &lt; len; i++) {
            if (i in this &amp;&amp; !fun.call(thisp, this[i], i, this)) {
                return false;
            }
        }

        return true;
    };
}

if (!Array.prototype.indexOf) {
    Array.prototype.indexOf = function (elt) {
        var len = this.length,
            from = Number(arguments[1]) &#124;&#124; 0;
        from = (from &lt; 0) ? Math.ceil(from) : Math.floor(from);
        if (from &lt; 0) {
            from += len;
        }


        for (; from &lt; len; from++) {
            if (from in this &amp;&amp; this[from] === elt) {
                return from;
            }
        }
        return -1;
    };
}

if (!Array.prototype.lastIndexOf) {
    Array.prototype.lastIndexOf = function (elt) {
        var len = this.length,
            from = Number(arguments[1]);
        if (isNaN(from)) {
            from = len - 1;
        } else {
            from = (from &lt; 0) ? Math.ceil(from) : Math.floor(from);
            if (from = len) {
                from = len - 1;
            }
        }

        for (; from &gt; -1; from--) {
            if (from in this &amp;&amp; this[from] === elt) {
                return from;
            }
        }
        return -1;
    };
}
---------------------------------------------------------------------------------------</description>
		<content:encoded><![CDATA[<p>Hello Everybody&#8230;<br />
 I have problem that the map is not properly working in Internet Explorer.<br />
 So following to this blog i just copied the following code into &#8216;googlemap.js&#8217;.But it still shows error Line : 60<br />
                  Char : 5<br />
                  Error: Object doesn&#8217;t support this property or method<br />
                  Code : 0<br />
and does not show any marker point of the located points.<br />
The code that i had make copy paste is below(u can also get its link from this blog. i.e, <a href="http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7" rel="nofollow"></a><a href='http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7'>http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7</a>)</p>
<p>THE CODE IS:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
if (!Array.prototype.forEach) {<br />
    Array.prototype.forEach = function (fun) {<br />
        var len = this.length, thisp = arguments[1], i = 0;<br />
        if (typeof fun !== &#8220;function&#8221;) {<br />
            throw new TypeError();<br />
        }</p>
<p>        for (; i &lt; len; i++) {<br />
            if (i in this) {<br />
                fun.call(thisp, this[i], i, this);<br />
            }<br />
        }<br />
    };<br />
}</p>
<p>if (!Array.prototype.filter) {<br />
    Array.prototype.filter = function (fun) {<br />
        var len = this.length;<br />
        var res = [];<br />
        var thisp = arguments[1];<br />
        var i = 0, val;<br />
        if (typeof fun !== &#8220;function&#8221;) {<br />
            throw new TypeError();<br />
        }</p>
<p>        for (; i &lt; len; i++) {<br />
            if (i in this) {<br />
                val = this[i]; // in case fun mutates this<br />
                if (fun.call(thisp, val, i, this)) {<br />
                    res.push(val);<br />
                }<br />
            }<br />
        }</p>
<p>        return res;<br />
    };<br />
}</p>
<p>if (!Array.prototype.map) {<br />
    Array.prototype.map = function (fun)   {<br />
        var len = this.length;<br />
        var res = [];<br />
        var thisp = arguments[1];<br />
        var i = 0;<br />
        if (typeof fun !== &#8220;function&#8221;) {<br />
            throw new TypeError();<br />
        }</p>
<p>        for (; i &lt; len; i++) {<br />
            if (i in this) {<br />
                res[i] = fun.call(thisp, this[i], i, this);<br />
            }<br />
        }</p>
<p>        return res;<br />
    };<br />
}</p>
<p>if (!Array.prototype.some) {<br />
    Array.prototype.some = function (fun) {<br />
        var len = this.length, thisp = arguments[1], i = 0;<br />
        if (typeof fun !== &#8220;function&#8221;) {<br />
            throw new TypeError();<br />
        }</p>
<p>        for (; i &lt; len; i++) {<br />
            if (i in this &amp;&amp; fun.call(thisp, this[i], i, this)) {<br />
                return true;<br />
            }<br />
        }</p>
<p>        return false;<br />
    };<br />
}</p>
<p>if (!Array.prototype.every) {<br />
    Array.prototype.every = function (fun) {<br />
        var len = this.length, thisp = arguments[1], i = 0;<br />
        if (typeof fun !== &#8220;function&#8221;) {<br />
            throw new TypeError();<br />
        }</p>
<p>        for (; i &lt; len; i++) {<br />
            if (i in this &amp;&amp; !fun.call(thisp, this[i], i, this)) {<br />
                return false;<br />
            }<br />
        }</p>
<p>        return true;<br />
    };<br />
}</p>
<p>if (!Array.prototype.indexOf) {<br />
    Array.prototype.indexOf = function (elt) {<br />
        var len = this.length,<br />
            from = Number(arguments[1]) || 0;<br />
        from = (from &lt; 0) ? Math.ceil(from) : Math.floor(from);<br />
        if (from &lt; 0) {<br />
            from += len;<br />
        }</p>
<p>        for (; from &lt; len; from++) {<br />
            if (from in this &amp;&amp; this[from] === elt) {<br />
                return from;<br />
            }<br />
        }<br />
        return -1;<br />
    };<br />
}</p>
<p>if (!Array.prototype.lastIndexOf) {<br />
    Array.prototype.lastIndexOf = function (elt) {<br />
        var len = this.length,<br />
            from = Number(arguments[1]);<br />
        if (isNaN(from)) {<br />
            from = len &#8211; 1;<br />
        } else {<br />
            from = (from &lt; 0) ? Math.ceil(from) : Math.floor(from);<br />
            if (from = len) {<br />
                from = len &#8211; 1;<br />
            }<br />
        }</p>
<p>        for (; from &gt; -1; from&#8211;) {<br />
            if (from in this &amp;&amp; this[from] === elt) {<br />
                return from;<br />
            }<br />
        }<br />
        return -1;<br />
    };<br />
}<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: sverd</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-139764</link>
		<dc:creator>sverd</dc:creator>
		<pubDate>Wed, 10 Dec 2008 04:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-139764</guid>
		<description>hi, i have tested all the solutions showed  here for  internet explorer, but none worked for me, do you have any new???
please helpme
thanks in advance!</description>
		<content:encoded><![CDATA[<p>hi, i have tested all the solutions showed  here for  internet explorer, but none worked for me, do you have any new???<br />
please helpme<br />
thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Alessio</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-139298</link>
		<dc:creator>Alessio</dc:creator>
		<pubDate>Fri, 05 Dec 2008 23:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-139298</guid>
		<description>Hi, sorry I if write in english, but for me is easier.

I was searchig db_locations.php, but it is empty, is there a complete version of this script? Someting like a zip file to download and test?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, sorry I if write in english, but for me is easier.</p>
<p>I was searchig db_locations.php, but it is empty, is there a complete version of this script? Someting like a zip file to download and test?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Eric Herberholz</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-137555</link>
		<dc:creator>Eric Herberholz</dc:creator>
		<pubDate>Thu, 13 Nov 2008 15:09:25 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-137555</guid>
		<description>I saw a tweet from linksgoogle (i.e. http://twitter.com/linksgoogle/status/1003865628). I tried your app. Cool! Have you thought of additing &quot;edit&quot;, so that users can, for example, edit their location?</description>
		<content:encoded><![CDATA[<p>I saw a tweet from linksgoogle (i.e. <a href="http://twitter.com/linksgoogle/status/1003865628" rel="nofollow"></a><a href='http://twitter.com/linksgoogle/status/1003865628'>http://twitter.com/linksgoogle/status/1003865628</a>). I tried your app. Cool! Have you thought of additing &#8220;edit&#8221;, so that users can, for example, edit their location?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: quel</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-128747</link>
		<dc:creator>quel</dc:creator>
		<pubDate>Thu, 24 Jul 2008 06:55:41 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-128747</guid>
		<description>i have found a solution.
1. visit http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7 
2. copy all code from line 109 to the end
3. past do googlemaps.js at beggining

greetz ;)</description>
		<content:encoded><![CDATA[<p>i have found a solution.<br />
1. visit <a href="http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7" rel="nofollow"></a><a href='http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7'>http://code.google.com/p/exteditor/source/browse/trunk/src/framework/v2/rui/source/js-additions.js?r=7</a><br />
2. copy all code from line 109 to the end<br />
3. past do googlemaps.js at beggining</p>
<p>greetz ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: quel</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-128620</link>
		<dc:creator>quel</dc:creator>
		<pubDate>Wed, 23 Jul 2008 08:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-128620</guid>
		<description>neryo or Cippus can you share your solution for IE problem ?
i can hanle the problem with rendering map on IE :/

btw. great script Dirk, great work.</description>
		<content:encoded><![CDATA[<p>neryo or Cippus can you share your solution for IE problem ?<br />
i can hanle the problem with rendering map on IE :/</p>
<p>btw. great script Dirk, great work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: neryo</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-126420</link>
		<dc:creator>neryo</dc:creator>
		<pubDate>Fri, 27 Jun 2008 16:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-126420</guid>
		<description>ok, i&#039;ve resolved!</description>
		<content:encoded><![CDATA[<p>ok, i&#8217;ve resolved!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: neryo</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-126417</link>
		<dc:creator>neryo</dc:creator>
		<pubDate>Fri, 27 Jun 2008 15:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-126417</guid>
		<description>hi! i have a problem with rendering map on internet explorer.. please, can you give me a solution? thank you</description>
		<content:encoded><![CDATA[<p>hi! i have a problem with rendering map on internet explorer.. please, can you give me a solution? thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: JOKERz</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-125672</link>
		<dc:creator>JOKERz</dc:creator>
		<pubDate>Thu, 19 Jun 2008 07:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-125672</guid>
		<description>what is the content of db_locations.php??</description>
		<content:encoded><![CDATA[<p>what is the content of db_locations.php??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Flowreen</title>
		<link>http://olbertz.de/blog/2006/07/18/jquery-google-maps-ein-beispiel/comment-page-1/#comment-124977</link>
		<dc:creator>Flowreen</dc:creator>
		<pubDate>Thu, 12 Jun 2008 10:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://olbertz/2006/07/18/jquery-google-maps-ein-beispiel/#comment-124977</guid>
		<description>Coole Sache mit der Map. Ich muss sagen das Teil hat ne gute Funktionalit&#228;t und daher werde ich es bei mir einbauen. Das File JSON.php ist leider nirgendswo zu finden. Meine Frage ist ob ihr ein Pfad oder ein Link dazu setzen k&#246;nntet um dass ganze zu verfolst&#228;ndigen.

Danke soweit,

Flowreen</description>
		<content:encoded><![CDATA[<p>Coole Sache mit der Map. Ich muss sagen das Teil hat ne gute Funktionalit&#228;t und daher werde ich es bei mir einbauen. Das File JSON.php ist leider nirgendswo zu finden. Meine Frage ist ob ihr ein Pfad oder ein Link dazu setzen k&#246;nntet um dass ganze zu verfolst&#228;ndigen.</p>
<p>Danke soweit,</p>
<p>Flowreen</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk
Database Caching using disk
Object Caching 402/418 objects using disk

Served from: olbertz.de @ 2012-05-23 19:09:41 -->
