<?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>googleMaps | Nerdpress.org</title>
	<atom:link href="https://nerdpress.org/tag/googlemaps/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdpress.org</link>
	<description>...dev, tech problems and solutions.</description>
	<lastBuildDate>Mon, 29 Mar 2010 15:03:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Googlemap Zoom-Faktor automatisch berechnen</title>
		<link>https://nerdpress.org/2010/03/29/googlemap-zoom-faktor-automatisch-berechnen/</link>
		
		<dc:creator><![CDATA[Max Girkens]]></dc:creator>
		<pubDate>Mon, 29 Mar 2010 15:03:28 +0000</pubDate>
				<category><![CDATA[JS]]></category>
		<category><![CDATA[boundaries]]></category>
		<category><![CDATA[googleMaps]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[zoom]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=900</guid>

					<description><![CDATA[<p>pushing the boundaries um den ZoomFaktor auf GoogleMaps dynamisch zu setzen, je nachdem wie viele Marker man wo hat, kann man GLatLngBounds benutzen. Mit jedem Marker der dazukommt erweitert man dann einfach die Grenzen: und schon kann man komfortabel Zoom und Center-Punkt rausbekommen. So das alle Marker sichtbar sind.</p>
The post <a href="https://nerdpress.org/2010/03/29/googlemap-zoom-faktor-automatisch-berechnen/">Googlemap Zoom-Faktor automatisch berechnen</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<blockquote><p>
pushing the boundaries
</p></blockquote>
<p>um den ZoomFaktor auf GoogleMaps dynamisch zu setzen,<br />
je nachdem wie viele Marker man wo hat, kann man <a href="http://code.google.com/intl/de-DE/apis/maps/documentation/reference.html#GLatLngBounds">GLatLngBounds</a> benutzen.<br />
<span id="more-900"></span></p>
<pre class="brush: jscript; title: ; notranslate">
var bounds = new GLatLngBounds();
</pre>
<p>Mit jedem Marker der dazukommt erweitert man dann einfach die Grenzen:</p>
<pre class="brush: jscript; title: ; notranslate">
bounds.extend( myGLatLng );
</pre>
<p>und schon kann man komfortabel Zoom und Center-Punkt rausbekommen.<br />
So das alle Marker sichtbar sind.</p>
<pre class="brush: jscript; title: ; notranslate">
map.setCenter ( bounds.getCenter(), map.getBoundsZoomLevel(bounds) );
</pre>The post <a href="https://nerdpress.org/2010/03/29/googlemap-zoom-faktor-automatisch-berechnen/">Googlemap Zoom-Faktor automatisch berechnen</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Googlemaps Marker Clustering</title>
		<link>https://nerdpress.org/2009/09/07/googlemaps-marker-clustering/</link>
					<comments>https://nerdpress.org/2009/09/07/googlemaps-marker-clustering/#comments</comments>
		
		<dc:creator><![CDATA[Max Girkens]]></dc:creator>
		<pubDate>Mon, 07 Sep 2009 11:38:45 +0000</pubDate>
				<category><![CDATA[JS]]></category>
		<category><![CDATA[Frontend]]></category>
		<category><![CDATA[googleMaps]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Performance]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=117</guid>

					<description><![CDATA[<p>Wer schonmal mehr als 50 Marker auf einer Googlemap unterzubringen hatte wird wissen, wie das auf die Performance gehen kann. Um das Clustering Thema kommt man also früher oder später nicht herum. Neben kommerziellen Lösungen (zB. mapToolKit) gibt es auch, unscheinbar versteckt in den Weiten von GoogleCode, den opensource MarkerClusterer. Anhand eines definierbaren Rasters werden &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2009/09/07/googlemaps-marker-clustering/" class="more-link">Continue reading<span class="screen-reader-text"> "Googlemaps Marker Clustering"</span></a></p>
The post <a href="https://nerdpress.org/2009/09/07/googlemaps-marker-clustering/">Googlemaps Marker Clustering</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Wer schonmal mehr als 50 Marker auf einer Googlemap unterzubringen hatte wird wissen, wie das auf die Performance gehen kann.</p>
<p>Um das Clustering Thema kommt man also früher oder später nicht herum.</p>
<p>Neben kommerziellen Lösungen (zB. <a href="http://www.toursprung.com/products/maptoolkit/">mapToolKit</a>)</p>
<p>gibt es auch, unscheinbar versteckt in den Weiten von GoogleCode, den opensource <a href="http://gmaps-utility-library-dev.googlecode.com/svn/tags/markerclusterer/">MarkerClusterer</a>.<span id="more-117"></span><br />
Anhand eines definierbaren Rasters werden benachbarte Marker dann zusammengefasst und durch die entsprechende Anzahl ersetzt.</p>
<p>Implementiert ist das Dingen zB. mit folgender Zeile:</p>
<pre class="brush: jscript; title: ; notranslate">
var markerCluster = new MarkerClusterer(map, markers);
</pre>
<p>Auf den Beispielseiten <a href="http://gmaps-utility-library-dev.googlecode.com/svn/tags/markerclusterer/1.0/examples/advanced_example.html">hier</a> und <a href="http://gmaps-utility-library-dev.googlecode.com/svn/tags/markerclusterer/1.0/examples/simple_example.html">hier</a> bekommt man einen ganz guten Eindruck was das Tool kann.</p>
<p>Auch die anderen mapTools der <a href="http://code.google.com/p/gmaps-utility-library-dev/">gmaps-utility-library</a> sollte man sich mal anschauen, wenn man mit googleMaps zu tun hat.</p>The post <a href="https://nerdpress.org/2009/09/07/googlemaps-marker-clustering/">Googlemaps Marker Clustering</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
					<wfw:commentRss>https://nerdpress.org/2009/09/07/googlemaps-marker-clustering/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
	</channel>
</rss>
