<?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>CloudMade &#187; openstreetmap</title>
	<atom:link href="http://blog.cloudmade.com/category/openstreetmap/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cloudmade.com</link>
	<description>The CloudMade Blog</description>
	<lastBuildDate>Tue, 20 Dec 2011 12:03:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How Python is Used at CloudMade</title>
		<link>http://blog.cloudmade.com/2011/01/17/958/</link>
		<comments>http://blog.cloudmade.com/2011/01/17/958/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 12:09:02 +0000</pubDate>
		<dc:creator>mishok13</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[mod_tile]]></category>
		<category><![CDATA[OSM]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=958</guid>
		<description><![CDATA[How Python is Used at CloudMadeThis is a repost from my personal blog.
I&#8217;m starting a series on explaining how and why CloudMade uses Python. The following one explains why we ditched OSM&#8217;s stack in favour of in-house solution.
Intro

It&#8217;s been almost 2 years as CloudMade has ditched mod_tile and renderd as main rendering solution in favour [...]]]></description>
			<content:encoded><![CDATA[<a href='http://blog.cloudmade.com/2011/01/17/958/' class='retweet ' startCount = '0'>How Python is Used at CloudMade</a><p><em>This is a <a href="http://mishkovskyi.net/blog/2011/1/16/tile-server-implementation">repost</a> from my personal blog.</em></p>
<p>I&#8217;m starting a series on explaining how and why CloudMade uses Python. The following one explains why we ditched OSM&#8217;s stack in favour of in-house solution.</p>
<h2>Intro</h2>
<div>
<p>It&#8217;s been almost 2 years as CloudMade has ditched mod_tile and renderd as main rendering solution in favour of in-house solution. As the principle designer of the said alternative, I must say that this decision led to higher development pace. This article will try to cover the general architecture approach, reasons of decisions made and short comparison to other rendering alternatives.</p>
<div>
<h2>Before The Switch</h2>
<p>As some of you might know, CloudMade has its roots in OpenStreetMap and it was quite natural to adopt OSM&#8217;s software stack to have something to start with. But as CloudMade grew, the needs and requirements changed rapidly and the task of supporting and developing mod_tile became more of a burden, the decision to switch to more high-level language as the main was made. The language of choice was Python, due to its generous set of already existing spatial libraries (e.g. Shapely, GeoAlchemy, Mapnik bindings, etc), ease of deployment and its simpler support for cross-platform development. And, well, I knew it better than Scala, Ruby or Perl at that moment. Here goes a list of our tasks with mod_tile and renderd that we found easier to implement with Python:</p>
<dl>
<dt>Variable priorities</dt>
<dd>mod_tile has the notion of &#8220;dirty&#8221; and &#8220;general&#8221; requests, with dirty requests having lower priority and thus having the property of being rendered when there&#8217;s little-to-none on-demand rendering required. While this seems enough for most applications, it does has its warts, as it makes the priority system overall less general. What this means in practice, is that every time we need to add some special priority (i.e. in case we need to health-check system by forcing rendering) we get into adding quite a lot of code, rather than changing the &#8220;priority&#8221; property of the request. It might seem silly, but off the top of my head I can remember that we have at least 6 different priorities now</p>
</dd>
<dt>Replicating cache</dt>
<dd>When it comes to scaling rendering and serving of tiles, the simplest solution that comes to mind is adding more servers. It&#8217;s as simple, as pushing several links in web interface or even using automated process and Amazon Web Services API. But when you add new server with rendering stack installed you lose all the cache that has been on other servers and furthermore all the instances don&#8217;t share cache, which makes the cacheto use system less effective. There&#8217;re several solutions to this issue, each of them making use networking or database libraries, programming against which is tedious task in C (and C++).</p>
</dd>
<dt>Being tied to Apache</dt>
<dd>mod_tile is an Apache module, which makes it less interesting if you look at it from &#8220;commodity server&#8221; perspective. Having to program against a monster that is Apache, using its APR library is one giant leap into full-blown programmer depression. The autogenerated documentation make the matters even worse. And two last things about Apache are its comparatively slow serving of static files and complicated configuration scheme. One might say that Apache might be winning in other parts of comparison, but the things that have been mentioned were essential to our rendering services.</p>
</dd>
</dl>
<p>These were the main reasons to switch, as mod_tile and renderd didn&#8217;t seem like the right thing for CloudMade. Of course, there were a lot of others, more and less subjective reasons, but having even before mentioned ones, it was enough to seriously consider a switch.</p></div>
<div>
<h2>The Switch</h2>
<p>With all the warts of the existing system and requirements for the future in mind, we decided to move on with the new approach. There were several things to consider in our system:</p>
<dl>
<dt>Decoupling</dt>
<dd>This was our main goal &#8212; thoroughly decoupled system, where every part does one thing and does it good. This makes scaling much easier, but also incurs additional penalty on the amount of code, because of the need to write communication utilities. This also makes the system as a whole seem much more stable, as every other part of the system can work as a replacement in case of failure. Of course, the price is having network overhead and supervising system parts.</p>
</dd>
<dt>Handling styles</dt>
<dd>One of the main CloudMade web-services is the style editor, which gives ability to edit map styles using WYSIWYG technique. Handling thousands of Mapnik styles wasn&#8217;t something any existing system was prepared for, so unique way of doing exactly this had to be devised. Of course, this meant that style state in every part of the system had to be consistent at any given moment of time, making this even harder to accomplish.</p>
</dd>
<dt>Cache expiry</dt>
<dd>To minimize load on the system, as much cache as possible has to be available. But for rapidly changing OpenStreetMap data, having all tiles cached for month wouldn&#8217;t work and at the same time rendering all images on the fly would be an enormously heavy goal to accomplish. Whatever cache update approach is taken, unless there&#8217;s a hardware possibility to render maps on the fly, someone will be unhappy about cache expiry scheme.</p>
</dd>
<dt>Health monitoring and high availability</dt>
<dd>In order to meet requirement of having usable web services, one of the most important things to consider is having as high service uptime as possible. Without having health monitoring which knows about state of every part of the system the said objective is almost unreachable. Of course, the ideal can not achieved, but having a setup that covers at least 80% of the nodes would satisfy our needs.</p>
</dd>
</dl>
<p>The system that&#8217;s currently in use at CloudMade has been developed with exactly these goals in mind, with minor additions and subtractions along the way. To summarize, the goal was the system where every part has a maximum level of independency from every other while succumbing to the general goal of having fast and easily-deployed rendering stack.</p></div>
<div>
<h2>To Be Continued</h2>
<p>I&#8217;ll continue the talk about moving from mod_tile to our in-house system in follow-ups, where I&#8217;ll try to get into technical details, explain our shortcomings and issues that arised while developing.</p>
<p>Stay tuned.</p></div>
</div>
<a href='http://blog.cloudmade.com/2011/01/17/958/' class='retweet ' startCount = '0'>How Python is Used at CloudMade</a>]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2011/01/17/958/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>New Mapzen Updates Make Editing Smoother and Faster</title>
		<link>http://blog.cloudmade.com/2010/03/10/new-mapzen-updates-make-editing-smoother-and-faster/</link>
		<comments>http://blog.cloudmade.com/2010/03/10/new-mapzen-updates-make-editing-smoother-and-faster/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 21:25:36 +0000</pubDate>
		<dc:creator>pauljarratt</dc:creator>
				<category><![CDATA[cartography]]></category>
		<category><![CDATA[cloudmade]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[mapzen]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=678</guid>
		<description><![CDATA[We’ve taken on board a lot of feedback and made lots of fixes and updates to Mapzen which we think will make a significant difference to your editing experience. They’re aimed at helping you map more by providing even greater flexibility within Mapzen.
Here’s what we’ve added:
1. Easier to work in areas with lots of land [...]]]></description>
			<content:encoded><![CDATA[<p>We’ve taken on board a lot of feedback and made lots of fixes and updates to Mapzen which we think will make a significant difference to your editing experience. They’re aimed at helping you map more by providing even greater flexibility within Mapzen.</p>
<p>Here’s what we’ve added:</p>
<p><strong>1. Easier to work in areas with lots of land use</strong></p>
<p>It’s now a lot easier to work more accurately with land use and other areas, with the ability to turn their filling on or off to provide a clearer view of what you are putting a perimeter around when viewing the satellite imagery or background images.</p>
<p><img class="alignleft size-medium wp-image-683" title="layer1" src="http://blog.cloudmade.com/wp-content/uploads/2010/03/layer1-300x150.jpg" alt="layer1" width="300" height="150" /></p>
<p><img class="alignleft size-medium wp-image-682" title="layer" src="http://blog.cloudmade.com/wp-content/uploads/2010/03/layer-300x151.jpg" alt="layer" width="300" height="151" /></p>
<p><strong>2. Easier to align roads to satellite imagery</strong></p>
<p>A new Hide/ Show Elements button has been added to the bottom of the editing window allowing you to quickly turn on / off elements to better see the background objects.  This is really useful when trying to align roads to satellite imagery.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-684" title="all_elements_are_hidden[1]" src="http://blog.cloudmade.com/wp-content/uploads/2010/03/all_elements_are_hidden1.jpg" alt="all_elements_are_hidden[1]" width="561" height="352" /></p>
<p><strong>3. More control when adding lines and areas</strong></p>
<p>A much requested feature that you’ve all been waiting for.  Now you can press ESC to cancel any editing made to shapes of lines and press ‘Enter’ to end editing with line types.  This is really useful when adding new roads.</p>
<p><strong>4. Mac Users: no more annoying zoom in / zoom out</strong></p>
<p>If you have a magic mouse from Apple or use a MacBook touchpad you might have experienced sudden jumps in zoom level.  If you have suffered this problem, you can now disable the ‘scroll’ function to prevent the map from accidentally zooming in or out.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-681" title="disable_scroll_touchpad[1]" src="http://blog.cloudmade.com/wp-content/uploads/2010/03/disable_scroll_touchpad1.jpg" alt="disable_scroll_touchpad[1]" width="556" height="349" /></p>
<p>We hope you’ll find these updates useful &#8211; please continue to email us feedback, it’s incredibly useful to help us evolve and improve Mapzen. Here’s how you can get in touch</p>
<ul>
<li>Leave a post in the <a href="http://developers.cloudmade.com/projects/mapzen/boards">Mapzen forums</a></li>
<li>Report a bug on the Mapzen <a href="http://developers.cloudmade.com/projects/mapzen/issues">issue tracker</a></li>
<li>Send us a mail to <a href="mailto:mapzen@cloudmade.com">mapzen@cloudmade.com</a></li>
<li>Get in touch with <a href="http://mapzen.cloudmade.com/user/654502734">Nick</a>, <a href="http://mapzen.cloudmade.com/user/106573939">Yuliya</a> or <a href="http://mapzen.cloudmade.com/user/234857226">Anton</a> through Mapzen</li>
</ul>
<p>The next Mapzen blog post will look at some new features coming up in the April release of Mapzen Beta.  Until then, if you don&#8217;t have a Mapzen account already, you can sign up for one and start using <a href="http://mapzen.cloudmade.com/">Mapzen here</a> – happy mapping!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2010/03/10/new-mapzen-updates-make-editing-smoother-and-faster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapzen Updates and Sneak Preview of the Next Release</title>
		<link>http://blog.cloudmade.com/2010/02/20/mapzen-updates-and-sneak-preview-of-the-next-release/</link>
		<comments>http://blog.cloudmade.com/2010/02/20/mapzen-updates-and-sneak-preview-of-the-next-release/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 18:10:28 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[cartography]]></category>
		<category><![CDATA[cloudmade]]></category>
		<category><![CDATA[mapzen]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[Mapzen POI Collector]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=649</guid>
		<description><![CDATA[There&#8217;s been a lot of work going on behind the scenes to make Mapzen, CloudMade&#8217;s family of easy to use OpenStreetMap editing tools, even easier, even more useful and even more fun to use.  So what&#8217;s new?
Mapzen POI Collector 1.1 &#8211; Now in the App Store
Mapzen POI Collector is CloudMade&#8217;s smash hit iPhone mapping [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a lot of work going on behind the scenes to make <a href="http://mapzen.cloudmade.com">Mapzen</a>, CloudMade&#8217;s family of easy to use OpenStreetMap editing tools, even easier, even more useful and even more fun to use.  So what&#8217;s new?</p>
<h3>Mapzen POI Collector 1.1 &#8211; Now in the App Store</h3>
<p>Mapzen POI Collector is CloudMade&#8217;s smash hit iPhone mapping app that lets you easily and quickly add a huge range of places of interest to OpenStreetMap.  The latest version includes numerous updates and improvements &#8211; all based on feedback we received from Mapzen users.</p>
<p>Mapzen POI Collector 1.1 lets you map faster and smarter:</p>
<ul>
<li> Choose from over 45 new POI types based on user requests, including ‘Grit Bins’ for winter mapping, ‘Traffic  Cams’ and many more</li>
<li> All POI icons are full color for a more vibrant mapping experience</li>
<li>Quickly find the POI type you are looking for with a slick new search feature</li>
<li>Add even more detail to the map with new attributes including disability access, seating capacity and religious denomination</li>
</ul>
<p>Other bug fixes and enhancements:</p>
<ul>
<li>GPS location functionality is faster and more reliable</li>
<li>Faster map loading with an enhanced map engine</li>
</ul>
<p style="text-align: center;"><img class="size-full wp-image-657 aligncenter" title="screens_collapse" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/screens_collapse.png" alt="screens_collapse" width="593" height="374" /></p>
<p>You can<a href="http://itunes.apple.com/gb/app/mapzen-poi-collector/id338079717?mt=8"> get the latest version for free from the App Store</a>.  Existing users can <a href="http://developers.cloudmade.com/projects/mapzen/issues"> give feedback</a> and help make Mapzen POI Collector even better.</p>
<h3>Share your mapping adventures with the world</h3>
<p>With the latest release of Mapzen, mappers can share their mapping adventures with friends and family or publish them for the whole world to see.  An exciting cross between mapping and blogging, mappers can publish their mapping activity feed &#8211; which includes details of recently mapped areas as well as posts made by the user.  Posts can range from short, Twitter style updates to longer, blog style entries that let mappers share their experiences.  Mappers&#8217; activity feeds are tagged with the location of their posts which means they can be used by other applications &#8211; like <a href="http://nick.sandbox.cloudmade.com/mapzen-activity-feed/">this demo shows</a>.</p>
<p style="text-align: center;"><em><img class="size-full wp-image-659 aligncenter" title="dashboard_screen_actions" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/dashboard_screen_actions.jpg" alt="dashboard_screen_actions" width="540" height="659" /></em></p>
<h3>Stay up to date with your friends&#8217; mapping activities</h3>
<p>Mapzen now makes it easier than ever before to keep up to date with updates from your mapping network.  Your Dashboard now includes a mapping activity feed from all of your mapping friends &#8211; so you know who&#8217;s been mapping what, where.</p>
<p style="text-align: center;"><em><img class="size-full wp-image-663 aligncenter" title="mapzen_users_activities" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/mapzen_users_activities.jpg" alt="mapzen_users_activities" width="389" height="416" /></em></p>
<h3>Map faster, worry less with the new Undo/Redo history panel</h3>
<p>Mapzen&#8217;s undo and redo feature lets you map without having to worry about messing up anyone else&#8217;s work.  Mistakes can be undone with the click of a button and now you can view a full history of your edits &#8211; making it easy to jump back to the exact point before it all went wrong.</p>
<p style="text-align: center;"><em><img class="size-full wp-image-660 aligncenter" title="mapzen_history_panel_views" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/mapzen_history_panel_views.jpg" alt="mapzen_history_panel_views" width="608" height="230" /></em></p>
<p><a href="http://mapzen.cloudmade.com">Go to Mapzen</a> to try out all the new features for yourself!</p>
<h3>Coming Soon  &#8211; What&#8217;s Next for Mapzen?</h3>
<p>The next release of Mapzen Beta is just a few weeks away.  We&#8217;ve been listening to your feedback to make it a better, faster, more fun tool to use.  Mapzen Beta Belz includes these top requested features:</p>
<ul>
<li>Natural features like lakes, forests or landuse zones and other areas can be tricky to map, with lots of overlapping layers getting in the way of each other.  The next release of Mapzen gives mappers control over the appearance of natural features and other landuse areas, making it easier to map in places where lots of different types of landuse areas are required</li>
<li>Faster loading of Mapzen will let you quickly start mapping sessions and swap between the &#8220;View&#8221; and &#8220;Edit&#8221; modes</li>
<li>Ending line or shape features can be tricky in Mapzen &#8211; especially when you want to end a line that you&#8217;ve just added a point to.  Keyboard controls in the next version of Mapzen will make it easy to end line and shape drawing.</li>
<li>Some Mac users have experienced problems with the scroll to zoom functions in Mapzen, especially when using an Apple Magic Mouse or MacBook or MacBook Pro touchpad.  These problems will be fixed in the next release of Mapzen</li>
</ul>
<div style="text-align: center;"><img class="alignnone size-full wp-image-666" title="1" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/1.png" alt="1" width="282" height="282" /> <img class="alignnone size-full wp-image-667" title="2" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/2.png" alt="2" width="282" height="282" /><br />
<img class="alignnone size-full wp-image-668" title="3" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/3.png" alt="3" width="282" height="282" /> <img class="alignnone size-full wp-image-669" title="4" src="http://blog.cloudmade.com/wp-content/uploads/2010/02/4.png" alt="4" width="282" height="282" /></div>
<p>If you can&#8217;t wait to try out Mapzen Beta Belz you can<a href="http://community.cloudmade.com/join_mapzen_panel.html"> join the Mapzen Community Panel</a> to have the chance to try out the latest features before they hit the web.  Community Panel members get access to unreleased features and give feedback that makes Mapzen better for everyone.</p>
<h3>Waiting for a feature that we haven&#8217;t talked about?</h3>
<p>If you didn&#8217;t see the feature you want in the list for Mapzen Beta Belz, don&#8217;t worry.  The features listed below are planned for the April release of Mapzen.  We&#8217;d love to hear what you think about them.  To provide feedback, comment on this post or send a mail to <a href="mailto:mapzen@cloudmade.com">mapzen@cloudmade.com</a> or check out the <a href="http://developers.cloudmade.com/projects/mapzen/boards">Mapzen forums</a>.</p>
<ul>
<li>Merging lines is a top requested feature that will appear in the April release of Mapzen</li>
<li>The presets panel is starting to get a bit crowded with all of the line, point and shape types that can be added.  A handy search feature will make finding the right object easy</li>
<li>Hint strings will help new Mapzen users get started quickly and help existing users get more out of Mapzen</li>
<li>Mapzen can be slow sometimes &#8211; but don&#8217;t worry &#8211; we&#8217;ve got a few tricks up our sleeves that will make mapping a lot faster</li>
</ul>
<h3>Tell us what you think</h3>
<p>The Mapzen team want to know what you like and what you don&#8217;t like about Mapzen.  There are loads of ways to get in touch with us:</p>
<ul>
<li>Leave a post in the <a href="http://developers.cloudmade.com/projects/mapzen/boards">Mapzen forums</a></li>
<li>Report a bug on the Mapzen <a href="http://developers.cloudmade.com/projects/mapzen/issues">issue tracker</a></li>
<li>Send us a mail to <a href="mailto:mapzen@cloudmade.com">mapzen@cloudmade.com</a></li>
<li>Get in touch with <a href="http://mapzen.cloudmade.com/user/654502734">Nick</a>, <a href="http://mapzen.cloudmade.com/user/106573939">Yuliya</a> or <a href="http://mapzen.cloudmade.com/user/234857226">Anton</a> through Mapzen</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2010/02/20/mapzen-updates-and-sneak-preview-of-the-next-release/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making Mapzen Even Easier and More Fun to Use</title>
		<link>http://blog.cloudmade.com/2010/01/04/making-mapzen-even-easier-and-more-fun-to-use/</link>
		<comments>http://blog.cloudmade.com/2010/01/04/making-mapzen-even-easier-and-more-fun-to-use/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 11:41:18 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cloudmade]]></category>
		<category><![CDATA[mapzen]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[products]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=548</guid>
		<description><![CDATA[Its just over a month since we launched Mapzen &#8211; the easy to use OpenStreetMap editor.  Since then, the intuitive user interface and focus on ease of use has caught the attention of users and the media (see New Scientist, Mac World, ZDNet and our own Press Zone).  Over the holidays we released [...]]]></description>
			<content:encoded><![CDATA[<p>Its just over a month since we launched <a href="http://mapzen.cloudmade.com">Mapzen</a> &#8211; the easy to use OpenStreetMap editor.  Since then, the intuitive user interface and focus on ease of use has caught the attention of users and the media (see <a href="http://www.newscientist.com/article/dn18249-innovation-making-a-map-for-everyone-by-everyone.html">New Scientist</a>, <a href="http://www.macworld.co.uk/business/news/index.cfm?newsid=27796&#038;pn=2">Mac World</a>, <a href="http://community.zdnet.co.uk/blog/0,1000000567,10014549o-2000458459b,00.htm">ZDNet</a> and our own <a href="http://www.cloudmade.com/press/category/in-the-news/">Press Zone</a>).  Over the holidays we released a set of updates to Mapzen that address many of the comments early users have made.  Here&#8217;s a summary of the updates that were made in the &#8220;Mapzen Beta Uhniv&#8221; release, on the 24th December 2009:</p>
<h3>Bug fixes</h3>
<p>One of the biggest problems reported by some Mapzen users was with saving data &#8211; the annoying &#8220;Oops &#8211; a big error has occurred&#8221; problem was our highest priority for this release.  We tracked down all of the known causes of this problem and they are now be fixed for good.  We also added an automatic reporting system &#8211; so Mapzen will tell us if it incurs any problems when saving or editing data.  Other bug fixes included more reliable loading of satellite imagery and more reliable rendering of lines &#8211; stopping the problems that occasionally made lines disappear.</p>
<h3>Giving you more space to work</h3>
<p>No-one likes working in a small, constrained screen space, so we increased the size of the work area in Mapzen:</p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2010/01/Screen-shot-2010-01-04-at-11.40.40.png" alt="Screen shot 2010-01-04 at 11.40.40" title="Screen shot 2010-01-04 at 11.40.40" width="500" class="aligncenter size-medium wp-image-559" /></p>
<h3>More objects to edit</h3>
<p>There are thousands of different types of map features in OpenStreetMap &#8211; each often with several variations and combinations.  WIth Mapzen we boil all of this choice down to the features and attributes you need for mapping.  With each release of Mapzen we&#8217;ll add some new map features, modify others and even remove features or attributes that user do not find useful.  In this release of Mapzen we added loads of new features, including:</p>
<ul>
<li>New icons for a whole load of exciting features including funicular railways, gondolas and drag lifts &#8211; just in time for the skiing season</li>
<li>New icons for boundaries including city walls, fences, hedge lines and gates</li>
<li>New landuse types including scrub</li>
<li>New POIs including drinking water and recycling</li>
</ul>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2010/01/Screen-shot-2010-01-04-at-11.15.44.png" alt="Screen shot 2010-01-04 at 11.15.44" title="Screen shot 2010-01-04 at 11.15.44" width="500" class="aligncenter size-medium wp-image-551" /><br />
<em>New features make map editing in ski resorts easy</em></p>
<p>Another hugely requested feature was clearer one-way arrows for roads, also updated in this release:</p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2010/01/Screen-shot-2010-01-04-at-11.24.41.png" alt="Screen shot 2010-01-04 at 11.24.41" title="Screen shot 2010-01-04 at 11.24.41" width="549" height="375" class="aligncenter size-full wp-image-555" /></p>
<h3>Coming up next</h3>
<p>The next release of Mapzen will focus on improving usability &#8211; particularly the way in which users interact with roads.  For example, we know you find it annoying to have to click once to select a node and again to drag it when you are re-shaping a road, so we&#8217;ll be updating this behaviour so that to make it easier and quicker for you to drag and re-align roads &#8211; something that all the TIGER editors out there spend a lot of time doing.  </p>
<p>We&#8217;ve also heard that users in areas with a landuse shapes can find it hard to edit roads.  To solve this problem we&#8217;ll be adding controls that let you turn off landuse &#8211; making it far easier to edit roads in these areas.  We&#8217;ll post some screenshots as soon as we have working internal versions.</p>
<h3>What else?</h3>
<p>There are lots of exciting features in the queue for Mapzen from speed enhancements to improved hints to merging of ways to easier selection of map features.  We&#8217;ll be releasing a poll in the next few weeks that will let you choose which features you want to see implemented first &#8211; so stay tuned.</p>
<p>In the meantime you can leave feedback about Mapzen or report bugs at the <a href="http://developers.cloudmade.com/projects/mapzen/issues">Mapzen Issue Tracker</a> or you can <a href="mailto:mapzen@cloudmade.com">get in touch via email</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2010/01/04/making-mapzen-even-easier-and-more-fun-to-use/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mapzen POI Collector is now in the App Store</title>
		<link>http://blog.cloudmade.com/2009/11/26/mapzen-poi-collector-is-now-in-the-app-store/</link>
		<comments>http://blog.cloudmade.com/2009/11/26/mapzen-poi-collector-is-now-in-the-app-store/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 18:10:57 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mapzen]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[products]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=527</guid>
		<description><![CDATA[CloudMade&#8217;s Mapzen POI Collector &#8211; an iPhone application that makes it really easy to add places of interest to OpenStreetMap is now available for free download from the App Store.  Click here to find out more.

Union Square, San Francisco in Mapzen POI Collector

Mapzen POI Collector&#8217;s fast, easy to use POI menu
Stay tuned for more [...]]]></description>
			<content:encoded><![CDATA[<p>CloudMade&#8217;s Mapzen POI Collector &#8211; an iPhone application that makes it really easy to add places of interest to OpenStreetMap is now available for free download from the App Store.  <a href="http://mapzen.cloudmade.com/mapzen-poi-collector">Click here to find out more</a>.</p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2009/11/IMG_0590-200x300.jpg" alt="IMG_0590" title="IMG_0590" width="200" height="300" class="aligncenter size-medium wp-image-528" /><br />
<em>Union Square, San Francisco in Mapzen POI Collector</em></p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2009/11/IMG_0588-200x300.jpg" alt="IMG_0588" title="IMG_0588" width="200" height="300" class="aligncenter size-medium wp-image-530" /><br />
<em>Mapzen POI Collector&#8217;s fast, easy to use POI menu</em></p>
<p>Stay tuned for more Mapzen news coming soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2009/11/26/mapzen-poi-collector-is-now-in-the-app-store/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Calling all OpenStreetMappers! Get Ready for Mapzen &#8211; editing and adding POIs just got easier</title>
		<link>http://blog.cloudmade.com/2009/10/07/calling-all-openstreetmappers-get-ready-for-mapzen-editing-and-adding-pois-just-got-easier/</link>
		<comments>http://blog.cloudmade.com/2009/10/07/calling-all-openstreetmappers-get-ready-for-mapzen-editing-and-adding-pois-just-got-easier/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 18:23:01 +0000</pubDate>
		<dc:creator>emzwmz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cartography]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[mapzen]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[products]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=408</guid>
		<description><![CDATA[
We’ve just released the Alpha version of Mapzen, our OpenStreetMap community editing tool which lets anyone easily contribute to the map, and are actively recruiting people to help test and provide feedback on it.  To be a part of this program please sign up here.
We’re only able to handle a certain number of Alpha [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-413" src="http://blog.cloudmade.com/wp-content/uploads/2009/10/MAPZEN1-300x215.png" alt="MAPZEN" width="300" height="215" /></p>
<p>We’ve just released the Alpha version of <strong>Mapzen</strong>, our OpenStreetMap community editing tool which lets anyone easily contribute to the map, and are actively recruiting people to help test and provide feedback on it.  To be a part of this program please sign up <a href="http://mapzen.cloudmade.com/">here.</a></p>
<p>We’re only able to handle a certain number of Alpha testers so if we’re unable to accept you to the program don’t worry, Mapzen Beta will be available for everyone later on this year.</p>
<p>CloudMade has developed Mapzen to help reduce the time it takes to create and edit OpenStreetMap so you can spend more time doing what you like best, mapping. It’s the first community mapping tool that let’s anyone easily contribute to OpenStreetMap.</p>
<p>Here’s a quick overview of some features:</p>
<p>•	Intuitive user interface and workflow dramatically reduce editing time<br />
•	Graphical menus mean no more searching for obscure tags<br />
•	Multi level undo and save modes mean no more fear of ruining the map<br />
•	Built with social networks in mind so sharing mapping experiences with Facebook and Twitter friends is simple<br />
And much more….</p>
<p><img class="aligncenter size-medium wp-image-411" src="http://blog.cloudmade.com/wp-content/uploads/2009/10/poicollect-300x202.png" alt="poicollect" width="300" height="202" /></p>
<p>We’ve also been busy working on <strong>Mapzen POI Collector</strong> for iPhone which will be in the Apple App Store in a few weeks time, so make sure you sign up <a href="http://mapzen.cloudmade.com/mapzen-poi-collector">here</a> to be informed when it’s available. Adding places of interest (POIs) to OpenStreetMap on location is now a simple 5-click process and there are hundreds of categories to choose from, everything from trees, volcanoes and gas stations to ATMs, vets, picnic spots and aerial way stations, so most interests should be covered. Let us know if there’s something you’re crying out for and we’ll do our best to get it into the next release.</p>
<p>More updates coming soon…</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2009/10/07/calling-all-openstreetmappers-get-ready-for-mapzen-editing-and-adding-pois-just-got-easier/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Your Future is Customized &#8211; State of the Map Presentation from CloudMade</title>
		<link>http://blog.cloudmade.com/2009/08/28/your-future-is-customized-state-of-the-map-presentation-from-cloudmade/</link>
		<comments>http://blog.cloudmade.com/2009/08/28/your-future-is-customized-state-of-the-map-presentation-from-cloudmade/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 14:04:56 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[api]]></category>
		<category><![CDATA[cloudmade]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[geodata]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=403</guid>
		<description><![CDATA[In July this year, 250 of the leading lights in community mapping and geo application development gathered in Amsterdam for the annual OpenStreetMap Foundation conference The State of the Map.  Video and audio recordings form the three day conference are being processed one by one by a dedicated team of volunteers who recently published [...]]]></description>
			<content:encoded><![CDATA[<p>In July this year, 250 of the leading lights in community mapping and geo application development gathered in Amsterdam for the annual OpenStreetMap Foundation conference <a href="http://www.stateofthemap.org/">The State of the Map</a>.  Video and audio recordings form the three day conference are being processed one by one by a dedicated team of volunteers who recently published the video of <a href="http://cloudmade.com/team/nick-black">Nick Black&#8217;s</a> talk: &#8220;Your Future is Customized&#8221;.</p>
<p>The talk asks why most current users of geodata experience maps through one of two ways: in car sat navs, or online mapping portals and looks towards a future of app stores, specialized map data and geo applications that match the exact needs of consumers.  </p>
<p><object width="400" height="320"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6064709&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6064709&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="320"></embed></object>
<p><a href="http://vimeo.com/6064709">Enable your applications with CloudMade &#8211; Nick Black (CloudMade)</a> from <a href="http://vimeo.com/sotm09">State of the Map 2009</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Follow along with the slides from the presentation:</p>
<div style="width:425px;text-align:left" id="__ss_1708675"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/nickb/your-future-is-customized" title="Your Future Is Customized">Your Future Is Customized</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=usersnickblackdocumentscloudmadetalkssotm09nickblack-yourfutureiscustomizedreadable-090711080310-phpapp01&#038;stripped_title=your-future-is-customized" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=usersnickblackdocumentscloudmadetalkssotm09nickblack-yourfutureiscustomizedreadable-090711080310-phpapp01&#038;stripped_title=your-future-is-customized" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/nickb">nickb</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2009/08/28/your-future-is-customized-state-of-the-map-presentation-from-cloudmade/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Find out more about Mapzen at the OpenStreetMap meet-up, London, 30th July</title>
		<link>http://blog.cloudmade.com/2009/07/28/find-out-more-about-mapzen-at-the-openstreetmap-meet-up-london-30th-july/</link>
		<comments>http://blog.cloudmade.com/2009/07/28/find-out-more-about-mapzen-at-the-openstreetmap-meet-up-london-30th-july/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 16:22:43 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[cloudmade]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[geodata]]></category>
		<category><![CDATA[mapzen]]></category>
		<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=331</guid>
		<description><![CDATA[If you&#8217;ve been dying to hear more about Mapzen, CloudMade&#8217;s under-development OpenStreetMap editor, you should call into the next OpenStreeMap meetup, in London this Thursday
The &#8220;Map Mayfair&#8221; evening starts at 6.30pm with a mapping session around Mayfair.  The fun will continue in a nearby pub &#8211; &#8220;The Iron Duke&#8221;, where mappers will be meeting [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been dying to hear more about <a href="http://blog.cloudmade.com/2009/07/22/mapzen-an-easy-to-use-editor-for-openstreetmap/">Mapzen</a>, CloudMade&#8217;s under-development OpenStreetMap editor, you should call into the next OpenStreeMap meetup, in London this Thursday</p>
<p>The &#8220;Map Mayfair&#8221; evening starts at 6.30pm with a mapping session around Mayfair.  The fun will continue in a nearby pub &#8211; &#8220;The Iron Duke&#8221;, where mappers will be meeting from 8.00pm onwards.  OpenStreetMap meetups are a great way to get a quick introduction to mapping.  For more details, take a look at the page below or get in touch with <a href='http://www.openstreetmap.org/message/new/Harry%20Wood' title="Send a message to Harry Wood">Harry</a>, the event organiser.</p>
<p>You can find more details and sign up for the meet-up <a href="http://upcoming.yahoo.com/event/4111275/">here</a>.</p>
<p><iframe width="460" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.cloudmade.com/iframe?lat=51.512581780524755&#038;lng=-0.1457512378692627&#038;zoom=16&#038;styleId=8&#038;marker=yes"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2009/07/28/find-out-more-about-mapzen-at-the-openstreetmap-meet-up-london-30th-july/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mapzen: An easy to use editor for OpenStreetMap</title>
		<link>http://blog.cloudmade.com/2009/07/22/mapzen-an-easy-to-use-editor-for-openstreetmap/</link>
		<comments>http://blog.cloudmade.com/2009/07/22/mapzen-an-easy-to-use-editor-for-openstreetmap/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 14:27:46 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[mapzen]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=310</guid>
		<description><![CDATA[At the recent State of the Map conference we unveiled our plans for an OpenStreetMap editor: Mapzen.  Mapzen is a web based map editing tool that will make it far easier for new-commers to OpenStreetMap to get started editing and creating maps.  Lets take a look at some of Mapzen&#8217;s features:
In Application Tutorials
No [...]]]></description>
			<content:encoded><![CDATA[<p>At the recent <a href="http://2009.stateofthemap.org/">State of the Map</a> conference we unveiled our plans for an OpenStreetMap editor: Mapzen.  Mapzen is a web based map editing tool that will make it far easier for new-commers to OpenStreetMap to get started editing and creating maps.  Lets take a look at some of Mapzen&#8217;s features:</p>
<h3>In Application Tutorials</h3>
<p>No one likes searching wikis and web pages to learn how to use a tool.  With Mapzen, you learn as you map.  In application tutorials teach you to map, step by step.</p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2009/07/mapzen_tutorials1-300x225.jpg" alt="Mazen Tutorials" title="Mazen Tutorials" width="300" height="225" class="aligncenter size-medium wp-image-312" /></p>
<h3>Graphical Menus</h3>
<p>Many new mappers are confused by the large number of different road, track and point of interest types.  Mapzen has an intuitive graphical menu, letting you pick out different features to add to the map.</p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2009/07/mapzen_menu1.png" alt="Mapzen Menu" title="Mapzen Menu" width="450" /></p>
<h3>Context Sensitive Menus</h3>
<p>After choosing which object you want to add to the map, the next hurdle is knowing which attributes to add.  Mapzen&#8217;s context sensitive menu prompts you to add only the attributes that are needed for a particular object.</p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2009/07/mapzen_context_sensitive_menu1-300x156.png" alt="Mapzen Context Sensitive Menu" title="Mapzen Context Sensitive Menu" width="300" height="156" class="aligncenter size-medium wp-image-319" /><br />
<br />
<img src="http://blog.cloudmade.com/wp-content/uploads/2009/07/mapzen_context_sensitve_menu2-300x133.png" alt="Mapzen Context Sensitive Menu 2" title="Mapzen Context Sensitive Menu 2" width="300" height="133" class="aligncenter size-medium wp-image-321" /></p>
<h3>Specialized Junction Editing</h3>
<p>Modeling complex junctions, with one-ways and turn restrictions can be difficult, with so many tags and relations to keep track of.  Mapzen gives mappers a graphical interface that makes modeling junctions quick and fun.</p>
<p><img src="http://blog.cloudmade.com/wp-content/uploads/2009/07/picture-1-300x184.png" alt="Junction Editing in Mapzen" title="Junction Editing in Mapzen" width="300" height="184" class="aligncenter size-medium wp-image-323" /></p>
<h3>Find Out More</h3>
<p>Mapzen is currently under active development.  We&#8217;re going to be carrying out user testing over the summer &#8211; if you&#8217;d like to take part, please mail <a href='mailto:mapzen@cloudmade.com?subject=Add me to the Mapzen user testing list'>mapzen@cloudmade.com</a>.  </p>
<p>Mapzen is open source (GPLv2) &#8211; if you are a developer, you can get hold of the source from <a href="http://vagafonkin.sandbox.cloudmade.com/mappingtool/">here</a> (right click in the window).  </p>
<p>If you have any feature requests, or would like any more information, please send us a <a href="mailto:mapzen@cloudmade.com?subject=Find out more about Mapzen">mail</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2009/07/22/mapzen-an-easy-to-use-editor-for-openstreetmap/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>CloudMade releases Style Editor 1.1</title>
		<link>http://blog.cloudmade.com/2009/07/16/cloudmade-releases-style-editor-11/</link>
		<comments>http://blog.cloudmade.com/2009/07/16/cloudmade-releases-style-editor-11/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 14:05:22 +0000</pubDate>
		<dc:creator>Cragg</dc:creator>
				<category><![CDATA[cartography]]></category>
		<category><![CDATA[cloudmade]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[style editor]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://blog.cloudmade.com/?p=280</guid>
		<description><![CDATA[Great news for Style Editor users: we&#8217;ve launched an updated version of Style Editor (v1.1) that makes discovering, sharing and creating new map styles even easier!
Style Editor is CloudMade&#8217;s online cartography tool for creating customized map styles.  Application developers can use Style Editor to quickly create their own map styles that give applications a unique [...]]]></description>
			<content:encoded><![CDATA[<p>Great news for <a title="Style Editor" href="http://maps.cloudmade.com/editor#" target="_self">Style Editor</a> users: we&#8217;ve launched an updated version of Style Editor (v1.1) that makes discovering, sharing and creating new map styles even easier!</p>
<p>Style Editor is <a title="CloudMade" href="http://www.cloudmade.com" target="_self">CloudMade</a>&#8217;s online cartography tool for creating customized map styles.  Application developers can use Style Editor to quickly create their own map styles that give applications a unique look &amp; feel.  Style Editor gives you complete control over which objects are displayed on the map, and how they will appear on your map at each zoom level.  Developers use CloudMade&#8217;s Style Editor to design customized maps built for a particular use.   For example, if you were building a cycling application that helps users get from point A to point B by bicycle, you&#8217;d want to highlight the cycle paths and roads better suited for cyclists while de-emphasising main roads and motorways.</p>
<div id="attachment_282" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.cloudmade.com/wp-content/uploads/2009/07/style-gallery.png"><img class="size-medium wp-image-282" src="http://blog.cloudmade.com/wp-content/uploads/2009/07/style-gallery-300x143.png" alt="Style Editor now has a style gallery for discovering new map styles" width="300" height="143" /></a><p class="wp-caption-text">Style Editor now has a style gallery for discovering new map styles</p></div>
<p>The most important improvements in Style Editor 1.1 is the addition of the style gallery.  Style gallery will allow you to quickly discover public map styles created by CloudMade and our community.  Style Editor also allows for private styles available only to the author, which you can view by pressing the My Styles tab on the Style Editor toolbar.  By default the map styles are sorted by popularity.  You may also chose to look for CloudMade styles which were created by professional cartographers including some by <a title="Stamen Design" href="http://stamen.com/" target="_self">Stamen Design</a> by clicking on the CloudMade tab.  Or you can browse the featured styles (Featured tab) which showcase a mix of CloudMade and community styles that our cartographers deem fantanstic!</p>
<div id="attachment_285" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.cloudmade.com/wp-content/uploads/2009/07/toolbar.png"><img class="size-medium wp-image-285" src="http://blog.cloudmade.com/wp-content/uploads/2009/07/toolbar-300x16.png" alt="The Style Editor tool bar allows for quick discovery of public maps styles for editing or direct use" width="300" height="16" /></a><p class="wp-caption-text">The Style Editor tool bar allows for quick discovery of public maps styles for editing or direct use</p></div>
<p>Another cool new feature in style gallery is the ability to sort map styles based on color.  To the top of the Style Editor toolbar is a Color Filter control.  This control will filter map styles in the gallery based on where you drag the Color Filter bar.  The default setting on the far left shows all colors.  By dragging the Color Bar towards the right, you can select only the map styles with a particular shade of yellow, for example.  In this way you can find map styles that suit the look and feel of your website or application.  Don&#8217;t forget to reset the Color Bar back to the far left when your done so that you can see all the styles again.</p>
<p>Each map style in the style gallery shows the style name, author and style ID.  The style ID comes in handy when coding with <a title="Developer Zone" href="http://developer.cloudmade.com" target="_self">CloudMade&#8217;s API libraries</a>.  You can quickly change the Style ID and see a completely different map in your app!  The search bar in the far right of the tool bar allows for style searches based on style name, author or style ID.</p>
<p>The last new feature we wanted to talk about is the Style RSS feed.  You can now subscribe to all new style updates via RSS.  This is a super easy way to get all the latest updates to Style Gallery via RSS.  You can subscribe <a title="Style Editor new style feed (RSS)" href="http://maps.cloudmade.com/editor/feed" target="_self">here</a>.</p>
<dl>
<dt> Style Editor is open to the public and available to use as a free service <a title="Style Editor" href="http://maps.cloudmade.com/editor#" target="_self">here</a>.   So go ahead and start creating your own new map styles and publish them to Style Gallery so the world can see and use them! </dt>
</dl>
<p>Style Editor Team @CloudMade</p>
<p style="text-align: center;">
<div id="attachment_290" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.cloudmade.com/wp-content/uploads/2009/07/deepblue-middle-east.png"><img class="size-medium wp-image-290" src="http://blog.cloudmade.com/wp-content/uploads/2009/07/deepblue-middle-east-300x156.png" alt="Creating new map styles is simple with CloudMade's Style Editor" width="300" height="156" /></a><p class="wp-caption-text">Creating new map styles is simple with CloudMade&#39;s Style Editor</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.cloudmade.com/2009/07/16/cloudmade-releases-style-editor-11/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

