What's happend with the class PointMapShape in this version?
I have the follow code to paint points around the map, that work fine in the last version. But now, without the class pointmapshape i don't know how to do it.
Dim longValue As Double = DecimalDegrees.DMSToDecimalDegrees(grados_lon, minutos_lon, segundos_lon)
Dim latValue As Double = DecimalDegrees.DMSToDecimalDegrees(grados_lat, minutos_lat, segundos_lat)
PointShp = New PointShape(longValue, latValue)
pointMapSh = New PointMapShape(PointShp)
pointMapSh.ZoomLevel01.GeoStyle = GeoPointStyles.GetSimpleCircleStyle(GeoColor.SimpleColors.Red, 7, GeoColor.SimpleColors.Black, 1)
pointMapSh.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.ZoomLevel18
pointMapSh.Dragable = False
Map1.MapShapes.Add(pointMapSh)
Map1.Refresh()
Any ideas? Thanks!!!!
Carlos