<?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>Web Mapping World</title>
	<atom:link href="http://webmappingworld.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webmappingworld.com</link>
	<description>The Web Mapping Technology Blog</description>
	<lastBuildDate>Fri, 26 Feb 2010 16:22:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Embed Adsense into Google Map Application</title>
		<link>http://webmappingworld.com/tutorials/how-to-embed-adsense-into-google-map-application/</link>
		<comments>http://webmappingworld.com/tutorials/how-to-embed-adsense-into-google-map-application/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 16:22:39 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adsense for map]]></category>
		<category><![CDATA[embed adsense on google map]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[google map adsense]]></category>
		<category><![CDATA[web mapping]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=140</guid>
		<description><![CDATA[There are two Adsense for Maps products  provided by Google to monetize Google Maps API application:

Advertising alongside local bussines search result using the GoogleBar that requires your Adsense account be enabled for Adsense for Search
Advertising based on map viewport using the Maps Ad Unit that requires your AdSense account be enabled for Adsense for Content.

Advertising [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Ftutorials%2Fhow-to-embed-adsense-into-google-map-application%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Ftutorials%2Fhow-to-embed-adsense-into-google-map-application%2F" height="61" width="51" /></a></div><p>There are two <strong>Adsense for Maps</strong> products  provided by Google to monetize Google Maps API application:</p>
<ul>
<li>Advertising alongside local bussines search result using the GoogleBar that requires your Adsense account be enabled for <a href="http://www.google.com/adsense/ws-overview" target="_blank">Adsense for Search</a></li>
<li>Advertising based on map viewport using the Maps Ad Unit that requires your AdSense account be enabled for <a href="http://www.google.com/adsense/afc-online-overview" target="_blank">Adsense for Content</a>.</li>
</ul>
<p><strong>Advertising using the GoogleBar</strong></p>
<div class="wp-caption alignnone" style="width: 389px"><img title="Adsense using the GoogleBar" src="http://londatiga.net/images/adsensemap/ads1.jpg" alt="Adsense using the GoogleBar" width="379" height="220" /><p class="wp-caption-text">Adsense using the GoogleBar</p></div>
<pre class="brush: jscript;">
var map;
if (GBrowserIsCompatible()) {
    var mapOptions = {
         googleBarOptions : {
                 style : 'new',
                 adsOptions: {
                      client: 'your-publisher-id',
                      channel: 'your-ads-channel-id',
                      adsafe: 'high',
                      language: 'en'
                 }
         }
    }

    map = new GMap2(document.getElementById('map'), mapOptions);
    map.setCenter(new GLatLng(27.6648274, -81.5157535), 12);
    map.setUIToDefault();
    map.enableGoogleBar();
}
</pre>
<p>Line 06: adsense options:<br />
Line 07: your adsense publisher ID<br />
Line 08: your adsense for search channel (optional)<br />
Line 09: ad safety level (optional)<br />
Line 10: language in which to display results</p>
<p><strong>Advertising using the Maps Ad Unit</strong></p>
<div class="wp-caption alignnone" style="width: 279px"><img title="Adsense using Maps Ad Unit" src="http://londatiga.net/images/adsensemap/ads2.jpg" alt="Adsense using Maps Ad Unit" width="269" height="310" /><p class="wp-caption-text">Adsense using Maps Ad Unit</p></div>
<pre class="brush: jscript;">
var adsManagerOptions = {
  maxAdsOnMap : 2,
  style: 'your-ads-unit',
  channel: 'your-ads-channel-id'
};

var publisherID = 'your-publisher-ID';

adsManager = new GAdsManager(map, publisherID, adsManagerOptions);
adsManager.enable();
</pre>
<p>Line 01: specify ads options<br />
Line 02: maximum number of ads<br />
Line 03: your ads unit<br />
Line 04: your ads channel id<br />
Line 07: specify your publisher id<br />
Line 09: construct the  GAdsManager object<br />
Line 10: enable ads</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Ftutorials%2Fhow-to-embed-adsense-into-google-map-application%2F&amp;linkname=How%20to%20Embed%20Adsense%20into%20Google%20Map%20Application"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/tutorials/how-to-embed-adsense-into-google-map-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESRI 2010 Mashup Challenge</title>
		<link>http://webmappingworld.com/news/esri-2010-mashup-challange-for-application-developer/</link>
		<comments>http://webmappingworld.com/news/esri-2010-mashup-challange-for-application-developer/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 15:00:56 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[argis online]]></category>
		<category><![CDATA[esri]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[mashup application]]></category>
		<category><![CDATA[web mapping]]></category>
		<category><![CDATA[web mapping API]]></category>

		<guid isPermaLink="false">http://www.webmappingworld.com/?p=120</guid>
		<description><![CDATA[ESRI’s 2010 Mashup Challenge invites members of the geodeveloper community to stretch their imaginations, test their technical skills, and develop creative geospatial Web applications. The developers have to create an innovative mashup using ArcGIS Online and ESRI Web Mapping APIs for the chance to win one of four cash prizes. Awards will be based on originality, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fesri-2010-mashup-challange-for-application-developer%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fesri-2010-mashup-challange-for-application-developer%2F" height="61" width="51" /></a></div><p><a href="ESRI’s 2010 Mashup Challenge invites members of the geodeveloper community to stretch their imaginations, test their technical skills, and develop creative geospatial Web applications" target="_blank">ESRI’s 2010 Mashup Challenge</a> invites members of the geodeveloper community to stretch their imaginations, test their technical skills, and develop creative geospatial Web applications. The developers have to create an innovative mashup using <a href="http://www.esri.com/software/arcgis/arcgisonline/map-services.html" target="_blank">ArcGIS Online</a> and <a href="http://www.esri.com/software/mapping_for_everyone/api/index.html" target="_blank">ESRI Web Mapping APIs</a> for the chance to win one of four cash prizes. Awards will be based on originality, creativity, and analytic process.</p>
<p>How to participate:</p>
<ol>
<li>Build a mashup using <a href="http://www.esri.com/software/arcgis/arcgisonline/map-services.html" target="_blank">ArcGIS Online</a> and <a href="http://www.esri.com/software/mapping_for_everyone/api/index.html" target="_blank">ESRI Web Mapping APIs</a></li>
<li>Shoot a video of your application and post it on YouTube</li>
<li>Submit your mashup</li>
</ol>
<p>Prizes:</p>
<ol>
<li>1st Place: $10,000</li>
<li>2nd Place: $5,000</li>
<li>3rd Place: $2,500</li>
<li>4rd Place: $2,500</li>
</ol>
<p>Deadline: March 5, 2010</p>
<p><a href="http://www.esri.com/software/mapping_for_everyone/api/mashup.html" target="_blank">More on the challange</a> ..</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fesri-2010-mashup-challange-for-application-developer%2F&amp;linkname=ESRI%202010%20Mashup%20Challenge"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/news/esri-2010-mashup-challange-for-application-developer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Map Scripting 101: A Guide to Building Interactive Maps and Mashups with Bing, Yahoo!, and Google Maps</title>
		<link>http://webmappingworld.com/book/map-scripting-101-a-guide-to-building-interactive-maps-and-mashups-with-bing-yahoo-and-google-maps/</link>
		<comments>http://webmappingworld.com/book/map-scripting-101-a-guide-to-building-interactive-maps-and-mashups-with-bing-yahoo-and-google-maps/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 15:51:16 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[GIS Web]]></category>
		<category><![CDATA[Google Map]]></category>
		<category><![CDATA[Map Services]]></category>
		<category><![CDATA[bing map]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[map scripting]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[web mapping]]></category>
		<category><![CDATA[yahoo map]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=94</guid>
		<description><![CDATA[Web services like Mapquest and Google Maps have transformed the way we think about and use maps. But these services do more than just driving directions-they provide APIs that web developers can use to build customized map applications.
In Map Scripting 101, author Adam DuVander uses a project-based approach to teach you how to create useful and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fmap-scripting-101-a-guide-to-building-interactive-maps-and-mashups-with-bing-yahoo-and-google-maps%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fmap-scripting-101-a-guide-to-building-interactive-maps-and-mashups-with-bing-yahoo-and-google-maps%2F" height="61" width="51" /></a></div><p>Web services like Mapquest and Google Maps have transformed the way we think about and use maps. But these services do more than just driving directions-they provide APIs that web developers can use to build customized map applications.</p>
<p>In <em>Map Scripting 101</em>, author Adam DuVander uses a project-based approach to teach you how to create useful and fun online map mashups like weather maps and local concert trackers. DuVander shows you how to use Mapstraction, an open source JavaScript library, to create and manipulate basic maps by setting zoom levels, showing and hiding markers, geocoding addresses, customizing maps for visitors based on their locales, and so on.</p>
<p>You&#8217;ll also learn to handle complex GIS (geographic information system) data and formats like KML and GeoRSS, and to create graphical overlays to make sense of data and trends. This is a perfect book for any web developer, whether their goal is to build a map to track earthquakes around the world, or to simply mark the best coffee shops in town.</p>
<p><strong>Book data</strong></p>
<p><strong>Author</strong>: Adam DuVande<br />
<strong>Publisher:</strong> No Starch Press; 1 edition (June 15, 2010)<br />
<strong>Language:</strong> English</p>
<p>Source: <a href="http://www.amazon.com/Map-Scripting-101-Building-Interactive/dp/1593272715/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1264602558&amp;sr=1-1" target="_blank">Amazon</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fmap-scripting-101-a-guide-to-building-interactive-maps-and-mashups-with-bing-yahoo-and-google-maps%2F&amp;linkname=Map%20Scripting%20101%3A%20A%20Guide%20to%20Building%20Interactive%20Maps%20and%20Mashups%20with%20Bing%2C%20Yahoo%21%2C%20and%20Google%20Maps"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/book/map-scripting-101-a-guide-to-building-interactive-maps-and-mashups-with-bing-yahoo-and-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapnik 0.7.0 Released</title>
		<link>http://webmappingworld.com/news/mapnik-0-7-0-released/</link>
		<comments>http://webmappingworld.com/news/mapnik-0-7-0-released/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 18:07:54 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[map toolkit]]></category>
		<category><![CDATA[mapnik]]></category>
		<category><![CDATA[online web]]></category>
		<category><![CDATA[web gis]]></category>
		<category><![CDATA[web mapping]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=82</guid>
		<description><![CDATA[The Mapnik team have released version 0.7.0 of their open source map toolkit. The release targets stability and usability of the Mapnik Core and brings notable advancements to the Datasource Plugins. It also brings improvements and fixes to the C++ core that warrant a major release and new a ABI version.
Plugins

Addition of GDAL raster overviews [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapnik-0-7-0-released%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapnik-0-7-0-released%2F" height="61" width="51" /></a></div><p>The Mapnik team have released version 0.7.0 of their open source map toolkit. The release targets stability and usability of the Mapnik Core and brings notable advancements to the Datasource Plugins. It also brings improvements and fixes to the C++ core that warrant a major release and new a ABI version.</p>
<p><strong>Plugins</strong></p>
<ul>
<li>Addition of GDAL raster overviews &#8211; You can now rapidly read large raster datasets</li>
<p>- Turn multiple geotiffs into a Bigtiff and build overviews with gdaladdo then read with the GDAL plugin.</p>
<li>Huge set of improvements to PostGIS Plugin</li>
<p>- The PostGIS plugin now supports custom placement of the BBOX query<br />
- It is is able to skip initialization queries if you supply the &#8216;geometry_field&#8217;,&#8217;srid&#8217;,or &#8216;extent&#8217;<br />
- Errors are now thrown for queries with invalid syntax &#8211; should help in debugging complex SQL</ul>
<p><strong>Python</strong></p>
<ul>
<li>Additional support for python pickling (near complete)</li>
<p>- Map pickling still needs some refinement, but most objects are nicely pickleable now</p>
<li>Improvements to Python linking on Mac OSX</li>
<p>- Smarter default linking to the right Python framework (helps if multiple versions exist like on Snow Leopard +   python 2.6)</p>
<li>Improvements to python docstrings</li>
</ul>
<p><strong>Core</strong></p>
<ul>
<li>Completed adding full support for PPC/ Big endian systems</li>
<p>- Ability to read binary data was completed for 0.6.1, but color support needed work and is now finished</p>
<li>Large extension to TextSymbolizer functionality by David Eastcott  and Jochen</li>
<li>New support for semitransparency in png256 output</li>
<li>New &#8216;gamma&#8217; attribute on PolygonSymbolizer to allow for seamless polygon edges</li>
<li>Support for writing map xml to string</li>
<p>- Call mapnik.save_map_to_string(m) to send a map to an xml stream</p>
<li>Support for relative paths in xml loaded from string</li>
<p>- Works with libxml2 entities even! Thanks Dražen!<br />
- Tested with the latest OSM stylesheet.</p>
<li>Variety of bug and usability fixes</li>
</ul>
<p><a href="http://trac.mapnik.org/wiki/Release0.7.0" target="_blank">View Changelog</a></p>
<p><strong>Download</strong>: <a title="Download mapnik" href="http://mapnik.org/download/" target="_blank">Mapnik 0.7.0</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapnik-0-7-0-released%2F&amp;linkname=Mapnik%200.7.0%20Released"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/news/mapnik-0-7-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MapServer 5.6.1 released</title>
		<link>http://webmappingworld.com/news/mapserver-5-6-1-released/</link>
		<comments>http://webmappingworld.com/news/mapserver-5-6-1-released/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 09:19:08 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MapServer]]></category>
		<category><![CDATA[online web]]></category>
		<category><![CDATA[web mapping]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=60</guid>
		<description><![CDATA[MapServer 5.6.1 has just been released and available for download now. No new functionality has been added. This is a maintenance release that fixes a few issues found in 5.6.0, including a few important ones related to queries that may have prevented some users from upgrading to 5.6.0.
Changes:

Changed msSaveImageBufferGD to be in accordance with msSaveImageGD.
Changed the query map [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-1-released%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-1-released%2F" height="61" width="51" /></a></div><p>MapServer 5.6.1 has just been released and available for <a title="Download mapserver 5.6.1" href="http://download.osgeo.org/mapserver/mapserver-5.6.1.tar.gz">download</a> now. No new functionality has been added. This is a maintenance release that fixes a few issues found in 5.6.0, including a few important ones related to queries that may have prevented some users from upgrading to 5.6.0.</p>
<p><strong>Changes:</strong></p>
<ul>
<li>Changed msSaveImageBufferGD to be in accordance with msSaveImageGD.</li>
<li>Changed the query map rendering implementation without adding extra layers to the map.</li>
<li>SQL Server 2008 plugin is not handling null field values correctly.</li>
<li>Hatch symbol not properly saved.</li>
<li>Expose symbolObj.inmapfile to the SWIG API, have already been exposed to PHP.</li>
<li>Expose getGeomTransform/setGeomTransform to SWIG instead of exposing the private vars for rfc48.</li>
<li>Fixed writeSymbol to support writing &#8216;ANGLE AUTO&#8217;.</li>
<li>Fixed problems with point queries not working via the CGI (mode=query or mode=nquery).</li>
</ul>
<p><strong>Download: </strong><a title="Download mapserver 5.6.1" href="http://download.osgeo.org/mapserver/mapserver-5.6.1.tar.gz">MapServer 5.6.1</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-1-released%2F&amp;linkname=MapServer%205.6.1%20released"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/news/mapserver-5-6-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MapServer 5.6.0 released</title>
		<link>http://webmappingworld.com/news/mapserver-5-6-0-released/</link>
		<comments>http://webmappingworld.com/news/mapserver-5-6-0-released/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 03:49:36 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[GIS Web]]></category>
		<category><![CDATA[map sccript]]></category>
		<category><![CDATA[MapServer]]></category>
		<category><![CDATA[mapserver download]]></category>
		<category><![CDATA[mapserver linux]]></category>
		<category><![CDATA[mapserver windows]]></category>
		<category><![CDATA[online web]]></category>
		<category><![CDATA[web mapping]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=51</guid>
		<description><![CDATA[MapServer 5.6.0 has just been released and available for download now. The new release contains a few new features and performance enhancements.
New features:

MS RFC 51: XML Mapfile schema and XSLT.
MS RFC 52: One-pass query processing, making WFS queries on
database backends much much faster.
MS RFC 55: Improve control of output resolution, allows printing
maps at printer resolution [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-0-released%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-0-released%2F" height="61" width="51" /></a></div><p>MapServer 5.6.0 has just been released and available for download <a title="MapServer 5.6.0" href="http://download.osgeo.org/mapserver/mapserver-5.6.0.tar.gz" target="_blank">now</a>. The new release contains a few new features and performance enhancements.</p>
<p>New features:</p>
<ul>
<li>MS RFC 51: XML Mapfile schema and XSLT.</li>
<li>MS RFC 52: One-pass query processing, making WFS queries on<br />
database backends much much faster.</li>
<li>MS RFC 55: Improve control of output resolution, allows printing<br />
maps at printer resolution using a mapfile defined for screen resolution.</li>
<li>MS RFC 57: Labeling enhancements: ability to repeat labels along a<br />
line/multiline.</li>
</ul>
<p>Enhancements:</p>
<ul>
<li>Security fixes (also backported to 5.4):<br />
Improved security relative to untrusted directories and mapfiles<br />
(RFC 56)</li>
<li>Fixed several security issues found in an audit of the CGI<br />
application (#2939, #2941, #2942, #2943, #2944)</li>
</ul>
<p>Performance optimizations:</p>
<ul>
<li>Load all GDAL image bands in one pass for faster processing (r9260)</li>
<li>Optimized access to very large shapefiles (#2930)</li>
<li>Several enhancements/fixes to OGC Web Services specs support</li>
<li>Several enhancements/fixes to all flavors of MapScript</li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-0-released%2F&amp;linkname=MapServer%205.6.0%20released"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/news/mapserver-5-6-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install MapServer on Windows</title>
		<link>http://webmappingworld.com/tutorials/how-to-install-mapserver-on-windows/</link>
		<comments>http://webmappingworld.com/tutorials/how-to-install-mapserver-on-windows/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 03:01:54 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GIS Web]]></category>
		<category><![CDATA[install map server windows]]></category>
		<category><![CDATA[install mapserver]]></category>
		<category><![CDATA[mapscript]]></category>
		<category><![CDATA[MapServer]]></category>
		<category><![CDATA[online web]]></category>
		<category><![CDATA[web mapping]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=47</guid>
		<description><![CDATA[MapServer is an open source and free software for translating vector maps to raster images and displaying it on a web page.  It  supports installation on Windows and Unix/Linux platform. This tutorial will cover installation guide for Windows platform,   guide for Unix/Linux platform will be covered on another tutorial.
MapServer for Windows [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Ftutorials%2Fhow-to-install-mapserver-on-windows%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Ftutorials%2Fhow-to-install-mapserver-on-windows%2F" height="61" width="51" /></a></div><p><a href="http://mapserver.org">MapServer</a> is an open source and free software for translating vector maps to raster images and displaying it on a web page.  It  supports installation on Windows and Unix/Linux platform. This tutorial will cover installation guide for Windows platform,   guide for Unix/Linux platform will be covered on another tutorial.</p>
<p>MapServer for Windows comes in a package that allow us to quickly install. It is designed to perform a full installation of  Apache, PHP, MapServer CGI and MapScript in a single installation. The package was developed by MapTools.org and available for free download <a href="http://MapTools.org" target="_blank">here</a>. Current release package at the time of this writing is <span style="color: #800000;">ms4w_3.0_beta7.zip</span>, which comes with Apache version 2.2.10, PHP version 5.2.6 and MapServer version 5.2.1.</p>
<p><strong>How to Install</strong></p>
<ol>
<li>Download installation package from <a href="http://MapTools.org" target="_blank">MapTools.org</a></li>
<li>If you upgrading from older version, go to <span style="color: #800000;">ms4w</span> directory and run the<span style="color: #800000;"> apache-uninstall.bat <span style="color: #000000;">file</span> <span style="color: #000000;">to stop and uninstall the Apache Service. Rename the old  <span style="color: #800000;">ms4w</span> directory to something like &#8216;<span style="color: #800000;">ms4w-old&#8217;</span>.</span></span></li>
<li>Extract <span style="color: #800000;">ms4w_3.0_beta7.zip</span> at the root of a drive, eg. C:. If successfull, you should get a new <span style="color: #800000;">ms4w</span> directory (<span style="color: #800000;">C:/ms4w</span>).</li>
<li>Run <span style="color: #800000;">a</span><span style="color: #800000;">pache-install.bat</span> file under <span style="color: #800000;">ms4w</span> directory (<span style="color: #800000;">/ms4w/apache-install.bat</span>) to start and install Apache Web Server as service. This will open a <span style="color: #800000;">cmd</span> window that prints log messages like image shown below:</li>
<div class="wp-caption alignnone" style="width: 510px"><img title="Install Apache" src="http://webmappingworld.com/images/ms4w/apache-install.jpg" alt="Install Apache" width="500" height="251" /><p class="wp-caption-text">Install Apache</p></div>
<li>To test the installation, open your Web browser and type http://localhost or http://127.0.0.1 into address bar, you should see the main <span style="color: #800000;">ms4w</span> page like image shown below:</li>
<p><div class="wp-caption alignnone" style="width: 510px"><img title="MS4W Page" src="http://webmappingworld.com/images/ms4w/localhost.jpg" alt="MS4W Page" width="500" height="335" /><p class="wp-caption-text">MS4W Page</p></div></ol>
<p><strong>Generated Map Image</strong><br />
Default MapServer generated map images are located on <span style="color: #800000;">/ms4w/tmp/ms_tmp</span> that available as <span style="color: #800000;">/ms_tm</span><span style="color: #800000;">p</span> via URL (<span style="color: #800000;">http://localhost/ms_tmp/</span>). The absolute image URL and image path should be <span style="color: #800000;">/ms_tmp</span> and <span style="color: #800000;">/ms4w/tmp/ms_tmp</span>.</p>
<p><strong>Change the Installation Directory</strong><br />
Default  MapServer installation is at the root of a drive (eg. <span style="color: #800000;">C:/ms4w</span>). To change it to another location other than drive root (eg: <span style="color: #800000;">D:/Server/ms4w</span>), you should replace all  &#8216;<span style="color: #800000;">/ms4w/</span>&#8216; in files listed below with your new path.</p>
<ul>
<li>/ms4w/Apache/conf/httpd.conf</li>
<li>/ms4w/Apache/cgi-bin/php.ini</li>
<li>All files in /ms4w/httpd.d</li>
<li>/ms4w/setenv.bat</li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Ftutorials%2Fhow-to-install-mapserver-on-windows%2F&amp;linkname=How%20to%20Install%20MapServer%20on%20Windows"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/tutorials/how-to-install-mapserver-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginning Google Maps Mashups with Mapplets, KML, and GeoRSS: From Novice to Professional</title>
		<link>http://webmappingworld.com/book/beginning-google-maps-mashups-with-mapplets-kml-and-georss-from-novice-to-professional/</link>
		<comments>http://webmappingworld.com/book/beginning-google-maps-mashups-with-mapplets-kml-and-georss-from-novice-to-professional/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 16:07:11 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[GIS Web]]></category>
		<category><![CDATA[Google Map]]></category>
		<category><![CDATA[Map Services]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[mapplet]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[web mapping]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=104</guid>
		<description><![CDATA[
Beginning Google Maps Mashups with Mapplets, KML, and GeoRSS is a beginner’s guide to creating web mashups using Google mapping technology.

Serves as a single–source primer to displaying data on Google Maps
Covers both mapplets and the Google Maps API
Provides everything you need to start participating in the Geographic Web

What you&#8217;ll learn in this book:

“Mash up” GeoWeb [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fbeginning-google-maps-mashups-with-mapplets-kml-and-georss-from-novice-to-professional%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fbeginning-google-maps-mashups-with-mapplets-kml-and-georss-from-novice-to-professional%2F" height="61" width="51" /></a></div><p><img class="alignnone" src="http://webmappingworld.com/images/book/cover_gmap_mashup2.jpg" alt="" width="240" height="240" /></p>
<p>Beginning Google Maps Mashups with Mapplets, KML, and GeoRSS is a beginner’s guide to creating web mashups using Google mapping technology.</p>
<ul>
<li>Serves as a single–source primer to displaying data on Google Maps</li>
<li>Covers both mapplets and the Google Maps API</li>
<li>Provides everything you need to start participating in the Geographic Web</li>
</ul>
<p>What you&#8217;ll learn in this book:</p>
<ul>
<li>“Mash up” GeoWeb services onto a Google map.</li>
<li>Package your mashup as a mapplet and publish it to maps.google.com.</li>
<li>Enhance your map with driving directions, local search, map advertising, and more.</li>
<li>Discover common Google–mapping mistakes to avoid.</li>
<li>Find out how and when to geocode existing data into mappable coordinates.</li>
<li>Deliver your own data as GeoXML.</li>
</ul>
<p><strong>Book data</strong></p>
<p><strong>Author:</strong> Sterling Udell<br />
<strong> Publisher: </strong> Apress; 1 edition (November 14, 2008)<br />
<strong> Language</strong>:  English</p>
<p>Source: <a href="http://www.amazon.com/Beginning-Google-Mashups-Mapplets-GeoRSS/dp/1430216204/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1264602295&amp;sr=1-1" target="_blank">Amazon</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fbeginning-google-maps-mashups-with-mapplets-kml-and-georss-from-novice-to-professional%2F&amp;linkname=Beginning%20Google%20Maps%20Mashups%20with%20Mapplets%2C%20KML%2C%20and%20GeoRSS%3A%20From%20Novice%20to%20Professional"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/book/beginning-google-maps-mashups-with-mapplets-kml-and-georss-from-novice-to-professional/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps Mashups with Google Mapplets</title>
		<link>http://webmappingworld.com/book/google-maps-mashups-with-google-mapplets/</link>
		<comments>http://webmappingworld.com/book/google-maps-mashups-with-google-mapplets/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 01:54:48 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[GIS Web]]></category>
		<category><![CDATA[Google Map]]></category>
		<category><![CDATA[Map Services]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[mapplet]]></category>
		<category><![CDATA[mashups]]></category>
		<category><![CDATA[web mapping]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=97</guid>
		<description><![CDATA[
Have a Google Maps mashup that you’d like to expose to millions of users on maps.google.com? New to the mapping craze, but have an idea for a killer map–based application? Want to learn how to create GeoRSS and KML feeds with your geotagged content, exposing your customer to new ways of exploring and navigating your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fgoogle-maps-mashups-with-google-mapplets%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fgoogle-maps-mashups-with-google-mapplets%2F" height="61" width="51" /></a></div><p><img class="alignnone" src="http://webmappingworld.com/images/book/cover_gmap_mashup.jpg" alt="" width="240" height="240" /></p>
<p>Have a Google Maps mashup that you’d like to expose to millions of users on maps.google.com? New to the mapping craze, but have an idea for a killer map–based application? Want to learn how to create GeoRSS and KML feeds with your geotagged content, exposing your customer to new ways of exploring and navigating your content?</p>
<p>Google Maps Mashups with Google Mapplets</p>
<ul>
<li>Is the first book to cover Google’s new Mapplet technology</li>
<li>Shows you how to create Google Maps–based applications and publish to maps.google.com</li>
<li>Provides a single–source resource and practical guide to Mapplets and mashups</li>
<li>Teaches you how to mash up Mapplets using location–specific data</li>
<li>Includes examples of real–world applications</li>
</ul>
<p>Readers will be taken through the process of building a mashup of multiple data sources and APIs, using Tourfilter’s concert and event data to map concerts and venue information happening nearby. Creating GeoRSS and KML files will also be covered, showing readers how to publish their content with geographic metadata and encouraging their users to interact with their data in new and interesting ways.</p>
<p>This book is aimed at developers, designers, and technologists looking to explore Google’s new Mapplet technology. The book will be a great resource for those just getting into Map–based applications and mashups, as well as for seasoned Maps developers looking to reach an extended audience with their mashups on maps.google.com.</p>
<p>Readers of the book should be familiar with JavaScript, basic HTML and CSS, PHP, and some SQL.</p>
<p><strong>Author:</strong> Michael Young<br />
<strong>Publisher:</strong> Apress; 1 edition (April 1, 2008)<br />
<strong>Language:</strong> English</p>
<p>Source: <a href="http://www.amazon.com/Google-Maps-Mashups-Mapplets/dp/143020995X/ref=sr_1_2?ie=UTF8&amp;s=books&amp;qid=1264602295&amp;sr=1-2" target="_blank"> Amazon</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fbook%2Fgoogle-maps-mashups-with-google-mapplets%2F&amp;linkname=Google%20Maps%20Mashups%20with%20Google%20Mapplets"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/book/google-maps-mashups-with-google-mapplets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MapServer 5.6.0-rc1 Released</title>
		<link>http://webmappingworld.com/news/mapserver-5-6-0-rc1-released/</link>
		<comments>http://webmappingworld.com/news/mapserver-5-6-0-rc1-released/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 23:35:50 +0000</pubDate>
		<dc:creator>lorenz</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[GIS Online]]></category>
		<category><![CDATA[Internet Map]]></category>
		<category><![CDATA[map server]]></category>
		<category><![CDATA[MapServer]]></category>
		<category><![CDATA[Online Map]]></category>

		<guid isPermaLink="false">http://webmappingworld.com/?p=45</guid>
		<description><![CDATA[MapServer 5.6.0-rc1 (release candidate 1) has just been released and available for download now, major issues about blocker has been fixed.
Version 5.6.0-rc1 (2009-11-27):
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
- Fixed a problem with shape-based queries against projected layers when
using a tolerance (#3211)
- Fixed long expression evaluation (#2123)
- Added simplfy and topologyPreservingSimplify to MapScript (#2753)
- Fixed Oracle FastCGI memory leak (#3187)
- layer-&#62;project [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-0-rc1-released%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-0-rc1-released%2F" height="61" width="51" /></a></div><p>MapServer 5.6.0-rc1 (release candidate 1) has just been released and available for download <a title="Download Map Server" href="http://mapserver.org/download.html">now</a>, major issues about blocker has been fixed.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Version 5.6.0-rc1 (2009-11-27):</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Fixed a problem with shape-based queries against projected layers when</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">using a tolerance (#3211)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Fixed long expression evaluation (#2123)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Added simplfy and topologyPreservingSimplify to MapScript (#2753)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Fixed Oracle FastCGI memory leak (#3187)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- layer-&gt;project flag not being reset properly for drawquerylayer (#673 #2079)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- OGC SLD: support multi-polygons geometries for filters embedded in</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">an SLD (#3097)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- [WMC] embedded SLD in context does not work with namespace prefix (#3115)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Support name aliases used in sld text symbolizer (#3114)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- decode html and unicode entities for polygon truetype symbol fills (#3203)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Parse PropertyName parameter for wfs requests (#675)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Fixed when saving a map, layer-&gt;transform isn&#8217;t written properly in</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">all cases. (#3198)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Fixed buffer overflow in oracle spatial driver with large sql data (#2694)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- Improve FastCGI include file finding logic (#3200)</div>
<p>Changes in version 5.6.0-rc1 (2009-11-27):</p>
<ul>
<li>Fixed a problem with shape-based queries against projected layers when using a tolerance (#3211)</li>
<li>Fixed long expression evaluation (#2123)</li>
<li>Added simplfy and topologyPreservingSimplify to MapScript (#2753)</li>
<li>Fixed Oracle FastCGI memory leak (#3187)</li>
<li>layer-&gt;project flag not being reset properly for drawquerylayer (#673 #2079)</li>
<li>OGC SLD: support multi-polygons geometries for filters embedded in an SLD (#3097)</li>
<li>[WMC] embedded SLD in context does not work with namespace prefix (#3115)</li>
<li>Support name aliases used in sld text symbolizer (#3114)</li>
<li>decode html and unicode entities for polygon truetype symbol fills (#3203)</li>
<li>Parse PropertyName parameter for wfs requests (#675)</li>
<li>Fixed when saving a map, layer-&gt;transform isn&#8217;t written properly in all cases. (#3198)</li>
<li>Fixed buffer overflow in oracle spatial driver with large sql data (#2694)</li>
<li>Improve FastCGI include file finding logic (#3200)</li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwebmappingworld.com%2Fnews%2Fmapserver-5-6-0-rc1-released%2F&amp;linkname=MapServer%205.6.0-rc1%20Released"><img src="http://webmappingworld.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://webmappingworld.com/news/mapserver-5-6-0-rc1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
