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);
link|improve this question
feedback

1 Answer

I want to do it by myself But I cannot .There is error.

 int X,Y;
  X=10;
  Y=10;
  CMapXFeature* feature=NULL;
  CMapXPointDisp point;
   point.Bind(StringToOleStr("MapX.Point.5"));
// point = Map1->ConvertCoordP(TVariant(X), TVariant(Y), miScreenToMap);
     point =Map1->ConvertCoordP(TVariant(X),TVariant (Y),miScreenToMap);
     CMapXPointsDisp points;
     points.Bind(StringToOleStr("MapX.Points.5"));
     double x= point.get_X();
     double y= point.get_Y();
     points.AddXY(x-1,y-0.5);
     points.AddXY(x-0.2,y+0.7);
     points.AddXY(x+0.3,y-0.1);
     points.AddXY(x+0.8,y+0.6);
    // feature=Map1->FeatureFactory->CombineFeatures(EmptyParam,EmptyParam);
    feature=Map1->FeatureFactory->CreateRegion(TVariant((CMapXPoints *)points),EmptyParam);
    //CMapXLayer lyr;
    // CMapXLayerDisp lyr;
    // lyr=Map1.GetLayers().CreateLayer("tempAnimate",NULL,1);
     // Map1->Layers->CreateLayer("tt",NUll,1);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.