Pins and maps and labels (WebMapLocation)

Is it possible to add a label to a pin dropped onto a map?

Perhaps I misunderstand what a tag does. Using the following code, why is there no tag for “My House” visible on the map?

Dim location As New WebMapLocation("123 Main, Austin TX 78701") location.Tag="My House" Webpage1.MapViewer1.AddLocation(location) Webpage1.MapViewer1.GoToLocation(location)

Tag is a variant so you can figure out which pin was clicked on:

WebMapViewer.Click(Latitude as Double, Longitude as Double, Location as WebMapLocation)

Try using the Title property instead:

location.Title = "My House"