How to use BCB 5 with mapx 5.0 to add a Feature in a Layer
String strFeature;<br>
CMapXPointDisp point;<br>
CMapXFeature * fNewSymbol = NULL;<br>
double X,Y;<br>
X=1.0;<br>
Y=1.0<br>
point.Bind(StringToOleStr("MapX.Point.5"));<br>
//point = Map1->ConvertCoordP(Variant(X), Variant(Y), miScreenToMap);
point.set_X(double(X));<br>
point.set_Y(double(Y));<br>
fNewSymbol = Map1->FeatureFactory->CreateSymbol(EmptyParam,EmptyParam);<br>
fNewSymbol->set_Point(point);<br>
//error. it can not cover CMapXPointDisp to CMapXPointPtr<br>
fNewSymbol= Map1->FeatureFactory->CreateCircularRegion(miCircleTypeMap,
point, Variant(30), EmptyParam, Variant(99), EmptyParam);<br>
Map1->Layers->_Item(Variant(1))->AddFeature(fNewSymbol, EmptyParam);