<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>der-webentwickler.net &#187; Google Maps</title>
	<atom:link href="http://www.der-webentwickler.net/category/google-maps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.der-webentwickler.net</link>
	<description>Codeschnipsel . PHP . MySQL . JavaScript</description>
	<lastBuildDate>Wed, 25 Jan 2012 09:39:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Google k&#252;ndigt Google Maps API V3 an</title>
		<link>http://www.der-webentwickler.net/google-maps/google-kuendigt-google-maps-api-v3-an/</link>
		<comments>http://www.der-webentwickler.net/google-maps/google-kuendigt-google-maps-api-v3-an/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 09:27:36 +0000</pubDate>
		<dc:creator>Rene Kreupl</dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Api]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[V2]]></category>
		<category><![CDATA[V3]]></category>

		<guid isPermaLink="false">http://code.rene-design.com/?p=19</guid>
		<description><![CDATA[Google hat die Google Maps Api rund erneuert und bringt nun Version 3 heraus. Das ganze sieht sehr viel versprechend aus und ich werde in den kommenden Wochen noch ein paar Beitr&#228;ge zum Thema bringen. Ich bin selber noch am &#8230; <a href="http://www.der-webentwickler.net/google-maps/google-kuendigt-google-maps-api-v3-an/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Google hat die <strong>Google Maps Api</strong> rund erneuert und bringt nun <strong>Version 3</strong> heraus. Das ganze sieht sehr viel versprechend aus und ich werde in den kommenden Wochen noch ein paar Beitr&auml;ge zum Thema bringen. Ich bin selber noch am testen und t&uuml;ffteln. Was ich jetzt schon sehr gut finde, ist die Tatsache, dass man keinen Key mehr braucht. Wer mehr wissen m&ouml;chte kann in diesem <a title="Google Blog" href="http://googlegeodevelopers.blogspot.com/2009/05/announcing-google-maps-api-v3.html" target="_blank">Artikel </a>mehr lesen oder sich die <a title="Google Maps Api V3 Reference" href="http://code.google.com/intl/de-DE/apis/maps/documentation/v3/reference.html" target="_blank">Referenz </a>bzw <a title="Google Maps Api V3 Dokumentation" href="http://code.google.com/intl/de-DE/apis/maps/documentation/v3/" target="_blank">Dokumentation </a>rein ziehen.</p>
<p>Hier seht Ihr ein Beispiel wie eine Google Maps nun eingebunden werden kann:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, user-scalable=no&quot;&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://maps.google.com/maps/api/js?sensor=false&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  function initialize() {
    var latlng = new google.maps.LatLng(-34.397, 150.644);
    var myOptions = {
      zoom: 8,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById(&quot;map_canvas&quot;), myOptions);
  }
&lt;/script&gt;
&lt;/head&gt;
&lt;body onload=&quot;initialize()&quot;&gt;
 &lt;div id=&quot;map_canvas&quot; style=&quot;width:100%; height:100%&quot;&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>via <a href="http://www.rene-design.com/firefox/google-kundigt-google-maps-api-v3-an/" target="_blank">rene-design</a></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.der-webentwickler.net/google-maps/google-kuendigt-google-maps-api-v3-an/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

