creating new point with different coordinates not changing the position. First point The bellow code create a point on the map
VectorLayer pushPinLayer = new VectorLayer("PushPins"); position1 = new Coordinate(10, 10); geos.Add(gf.CreatePoint(position1)); Second point But this case also the the point created on the same point
position2 = new Coordinate(20, 20); geos.Add(gf.CreatePoint(position2)); Could you please tell me why both points are in the same place.And could you please tell me how can i make a point from latitude and longitude.
I am using Google Mercator"
أكثر...
VectorLayer pushPinLayer = new VectorLayer("PushPins"); position1 = new Coordinate(10, 10); geos.Add(gf.CreatePoint(position1)); Second point But this case also the the point created on the same point
position2 = new Coordinate(20, 20); geos.Add(gf.CreatePoint(position2)); Could you please tell me why both points are in the same place.And could you please tell me how can i make a point from latitude and longitude.
I am using Google Mercator"
أكثر...