Web App - Mapviewer

I have a database app and the records in the database contain a lat/long co-ordinate. When I display the location on a map it is “off and up to the left” of where I would like it. I would like the pin displayed in the middle of the map viewer.

[code]Dim location As New WebMapLocation
location.Latitude=latitude
location.Longitude=longitude
location.Tag=“Name”

containerforce1.mapForce.maptype=containerforce1.mapForce.TypeRoadmap

containerforce1.mapForce.AddLocation(location)
containerforce1.mapForce.GoToLocation(location)

containerforce1.mapForce.Zoom = 16

containerforce1.mapForce.update[/code]

How can I centre around the pin? I have read the online docs so unless I am mssing something, or the order of my statements is wrong I am baffled. This is a prototype, the code will actually be on the container in due course, ad not the window.