Click here to Skip to main content
15,886,724 members
Articles / Programming Languages / C#

Bing Maps in SharePoint 2010 Web Part

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
17 May 2010CPOL5 min read 54.6K   827   10  
This article shows how to create a simple web part in SharePoint 2010 and use Bing Maps service to render maps.
<?xml version="1.0" encoding="utf-8"?>
<Feature xmlns="http://schemas.microsoft.com/sharepoint/" Description="My Visual WebPart Feature" Id="a2a4de3b-8e3c-4513-8c68-024c8f1c3f4a" Scope="Site" Title="VisualWebPartProject1 Feature1">
  <ElementManifests>
    <ElementManifest Location="VisualWebPart1\Elements.xml" />
    <ElementFile Location="VisualWebPart1\VisualWebPart1.webpart" />
    <ElementManifest Location="SimpleOOBListManip\Elements.xml" />
    <ElementFile Location="SimpleOOBListManip\SimpleOOBListManip.webpart" />
    <ElementManifest Location="BingMapsWebPart\Elements.xml" />
    <ElementFile Location="BingMapsWebPart\BingMapsWebPart.webpart" />
  </ElementManifests>
</Feature>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions