Mappoint 2011 NA is released!

As of  March 1st, 2011

MapPoint 2011

is now officially released!

The MapPoint Product Home page has been updated and a trial download for MapPoint 2011 North America is now available. I hear the team is now working hard to get MapPoint 2011 Europe out the door.

After two releases with significant changes (MapPoint 2009 and MapPoint 2010) this release focused primarily on the #1 customer request which is data updates. As such there are 88,000 additional miles of roads. Updates are in the US, Canada, Mexico and Puerto Rico.

Larry Peterson on the MapPoint team at Microsoft writes —

This year we focused on updating our mapping data which is the #1 requested feature. With the 2011 version, you get 1.9 million points of interest (not only updated from 2010 but it was only 1.7million so many more have been added). There are also 88,000 additional miles of navigable roads in 2011 over 2010. That is pretty huge – equivalent to over 15 coast to coast round trips driving San Francisco between New York City.

Product development takes time and release cycles change for a variety of reasons. We’re ultimately committed to delivering top quality to our customers and this is what drives all efforts behind the product.

Map of State Collective Bargaining Rights

TPM map: Collective Bargaining Rights by State (for public-sector workers)

Josh Marshall of Talking Points Memo: “With the battle going on in Wisconsin, we wanted to ask: How many states have collective bargaining with public employees’ unions? How many forbid it? Check out our map. It’s pretty revealing.”

Bing Maps – Data Connector – SQL Server

Bing Maps – Data Connector is an Open Source + Open Data project focused on connecting the power of Bing Maps Silverlight Control to the spatial query capabilities of SQL Server 2008.

Bing Maps Data Connector SQL Spatial
Bing Maps Data Connector SQL Spatial
The Live Example – Finding Earthquakes using a user defined Buffer.
Solid Red line is Line to be buffered, green is the buffer, cyan is individual earthquake and associated attribution (date, size, duration).

The three basic parts of this project are the DataBase (SampleGeographyData), the WCF Services (DataConnectorWCF), and the Silverlight Client (DataConnectorUI2). The DataConnectorWCF and DataConnectorUI were developed using Visual Studio 2008 and the data base requires SQL Server 2008.

Bing Maps -  Data Connector - SQL Server 2008 Query
Bing Maps – Data Connector – SQL Server 2008 Query
These datasets imported to SQL 2008 were chosen to provide useful common data resources as well as examples of each type of spatial feature: points, lines, and polygons.

Additional data resources are easily added to SQL Server. The import utility used for this project was FME Translator from Safe Software.
http://www.safe.com

The data was imported as spatial type geometry and then corrected as required to make valid before updating to an additional geography spatial column. EPSG:4326 is the SRID used for all tables and constraints were added to enforce this srid. The end result is two spatial columns, “the geo” as geography, and “the geom” as geometry. Once imported the data was modified to include an “ID” column suitable for use as a primary key necessary for spatial indexing. For the sake of uniformity each table was also modified as necessary to provide a ‘NAME’ column. For the thematic polygon example an ‘AREA’ column was added to each of the polygon tables. Finally, spatial indices were added to the geography and the geometry columns.

There are lots of examples and blogs that explore Silverlight Mapping as well as resources for SQL Server Spatial. However, the WCF middle tier is not as well represented, which is the reason for publishing this project. The DataConnectorUI2 example Silverlight UI is a Navigation Project with examples of connecting to each of the sample WCF Services.

1. WKT example uses ‘Well Known Text’ to transmit SQL query results to the client.
2. XAML example transforms SQL query results into XAML, and then transmits as a XAML MapLayer.
3. Tile example builds raster png images in 256px x 256px tiles from the SQL query results. Tile Service feeds these to the client as MapTileLayer.TileSources endpoints. Tile has examples of both cached tiles and dynamic tiles. The th
ematic option will build dynamic tiles, otherwise tiles are cached in SQL Server as acquired.
4. Hybrid example combines tiles and XAML. Lower zoom levels use tile service for better performance with large data sets while higher zoom levels switch to XAML service to take advantage of vector interactivity.

Live Example : http://silverlight.onterrasys.com/dataconnectorUI/#/WKT