====== ThinkGeo.MapSuite.Shapes.AreaBaseShape ====== ===== Inheritance Hierarchy ===== *System.Object *ThinkGeo.MapSuite.Shapes.BaseShape ***ThinkGeo.MapSuite.Shapes.AreaBaseShape** *[[ThinkGeo.MapSuite.Shapes.EllipseShape]] *[[ThinkGeo.MapSuite.Shapes.MultipolygonShape]] *[[ThinkGeo.MapSuite.Shapes.PolygonShape]] *[[ThinkGeo.MapSuite.Shapes.RectangleShape]] *[[ThinkGeo.MapSuite.Shapes.RingShape]] ===== Members Summary ===== ==== Public Constructors ==== ==== Protected Constructors ==== ** {{wiki:ProtectedMethod.gif|}} AreaBaseShape() ** * //This is the default constructor for AreaBaseShape.// == Remarks == * //This constructor simply calls the base constructor.// == Parameters ==
==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} GetPerimeter(GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //You would use this method to find the distance around the area shape.// == Return Value == * Type:Double * Description:The return unit is based on a LengthUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:This is the GeographyUnit of the shape you are performing the operation on. * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:This is the DistanceUnit you would like to use as the return value. For example, if you select miles as your returningUnit, then the distance will be returned in miles.
** {{wiki:PublicMethod.gif|}} GetArea(GeographyUnit,AreaUnit) ** * //N/A// == Remarks == * //You would use this method to find the area inside the shape.// == Return Value == * Type:Double * Description:The return unit is based on a AreaUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:This is the GeographyUnit of the shape you are performing the operation on. * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.AreaUnit|AreaUnit]] * Description:This is the AreaUnit you would like to use as the return value. For example, if you select square miles as your returningUnit, then the distance will be returned in square miles.
** {{wiki:PublicMethod.gif|}} ScaleUp(Double) ** * //N/A// == Remarks == * //This method is useful when you would like to increase the size of the shape. Note that a larger percentage will scale the shape up faster, since you apply the operation multiple times. There is a ScaleDown method that will shrink the shape. as well.// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape's size.
** {{wiki:PublicMethod.gif|}} GetAccuratePerimeter(Int32,DistanceUnit,DistanceCalculationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //shapeSrid// * Type:Int32 * Description:N/A * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A * //distanceCalculationMode// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceCalculationMode|DistanceCalculationMode]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetAccuratePerimeter(String,DistanceUnit,DistanceCalculationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //shapeProj4ProjectionParameters// * Type:String * Description:N/A * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A * //distanceCalculationMode// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceCalculationMode|DistanceCalculationMode]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetAccurateArea(Int32,AreaUnit,DistanceCalculationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //shapeSrid// * Type:Int32 * Description:N/A * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.AreaUnit|AreaUnit]] * Description:N/A * //distanceCalculationMode// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceCalculationMode|DistanceCalculationMode]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetAccurateArea(String,AreaUnit,DistanceCalculationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //shapeProj4ProjectionParameters// * Type:String * Description:N/A * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.AreaUnit|AreaUnit]] * Description:N/A * //distanceCalculationMode// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceCalculationMode|DistanceCalculationMode]] * Description:N/A
** {{wiki:PublicMethod.gif|}} ScaleDown(Double) ** * //N/A// == Remarks == * //This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well.// == Return Value == * Type:Void * Description:This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well. == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape's size.
** {{wiki:PublicMethod.gif|}} GetConvexHull() ** * //N/A// == Remarks == * //This method is useful when you want to create a perimeter around the shape. For example, if you had a MultiPolygon that represented buildings on a campus, you could easily get the convex hull of the buildings and determine the perimeter of all of the buildings together. This also works with MultiPoint shapes, where each point may represent a certain type of person you are doing statistics on. With convex hull, you can get an idea of the regions those points are located in.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.RingShape|RingShape]] * Description:This method returns the convex hull of the shape, defined as the smallest convex ring that contains all of the points in the shape. == Parameters ==
** {{wiki:PublicMethod.gif|}} GetIntersection(AreaBaseShape) ** * //N/A// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in both the current shape and the target shape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the intersection with.
** {{wiki:PublicMethod.gif|}} GetIntersection(Feature) ** * //N/A// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in both the current shape and the target feature. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:The feature you are trying to find the intersection with.
** {{wiki:PublicMethod.gif|}} Union(AreaBaseShape) ** * //N/A// == Remarks == * //This is useful for adding area shapes together to form a larger area shape.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target shape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the union with.
** {{wiki:PublicMethod.gif|}} Union(Feature) ** * //N/A// == Remarks == * //This is useful for adding area shapes together to form a larger area shape.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target feature. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:The feature you are trying to find the union with.
** {{wiki:PublicMethod.gif|}} GetDifference(AreaBaseShape) ** * //N/A// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape but not in the targetShape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the difference with.
** {{wiki:PublicMethod.gif|}} GetDifference(Feature) ** * //N/A// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape but not in the target feature. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:The feture you are trying to find the difference with.
** {{wiki:PublicMethod.gif|}} GetSymmetricalDifference(AreaBaseShape) ** * //N/A// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape or the targetShape but not both. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the symmetrical difference with.
** {{wiki:PublicMethod.gif|}} GetSymmetricalDifference(Feature) ** * //N/A// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape or the targetFeature but not both. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:The feature you are trying to find the symmetrical difference with.
** {{wiki:PublicMethod.gif|}} Simplify(GeographyUnit,Double,DistanceUnit,SimplificationType) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:This parameter specifies the geographic unit of this current shape you are performing the operation * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //toleranceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:This parameter specifes the distance unit of the tolerance. * //simplificationType// * Type:[[ThinkGeo.MapSuite.Shapes.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{wiki:PublicMethod.gif|}} Simplify(Double,SimplificationType) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //simplificationType// * Type:[[ThinkGeo.MapSuite.Shapes.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{wiki:PublicMethod.gif|}} LoadFromWellKnownData(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownText// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} GetWellKnownText() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetGeoJson() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetWellKnownText(RingOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters == * //outerRingOrder// * Type:[[ThinkGeo.MapSuite.Shapes.RingOrder|RingOrder]] * Description:N/A
** {{wiki:PublicMethod.gif|}} LoadFromWellKnownData(Byte[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownBinary// * Type:Byte[] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetWellKnownBinary() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetWellKnownBinary(WkbByteOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters == * //byteOrder// * Type:[[ThinkGeo.MapSuite.Shapes.WkbByteOrder|WkbByteOrder]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetWellKnownBinary(RingOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters == * //outerRingOrder// * Type:[[ThinkGeo.MapSuite.Shapes.RingOrder|RingOrder]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetWellKnownBinary(RingOrder,WkbByteOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters == * //outerRingOrder// * Type:[[ThinkGeo.MapSuite.Shapes.RingOrder|RingOrder]] * Description:N/A * //byteOrder// * Type:[[ThinkGeo.MapSuite.Shapes.WkbByteOrder|WkbByteOrder]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetBoundingBox() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.RectangleShape|RectangleShape]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetWellKnownType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.WellKnownType|WellKnownType]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CloneDeep() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} TranslateByOffset(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //xOffsetDistance// * Type:Double * Description:N/A * //yOffsetDistance// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} TranslateByOffset(Double,Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //xOffsetDistance// * Type:Double * Description:N/A * //yOffsetDistance// * Type:Double * Description:N/A
** {{wiki:PublicMethod.gif|}} TranslateByDegree(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //angleInDegrees// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} TranslateByDegree(Double,Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //angleInDegrees// * Type:Double * Description:N/A
** {{wiki:PublicMethod.gif|}} Rotate(PointShape,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //pivotPoint// * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A * //degreeAngle// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} GetShortestLineTo(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetShortestLineTo(Feature,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetClosestPointTo(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetClosestPointTo(Feature,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetCenterPoint() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Buffer(Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Buffer(Double,Int32,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //quadrantSegments// * Type:Int32 * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Buffer(Double,Int32,BufferCapType,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //quadrantSegments// * Type:Int32 * Description:N/A * //bufferCapType// * Type:[[ThinkGeo.MapSuite.Shapes.BufferCapType|BufferCapType]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetDistanceTo(BaseShape,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetDistanceTo(Feature,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Register(PointShape,PointShape,DistanceUnit,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A == Parameters == * //fromPoint// * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A * //toPoint// * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A * //fromUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A * //toUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Register(Feature,Feature,DistanceUnit,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A == Parameters == * //fromPoint// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //toPoint// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //fromUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A * //toUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Validate(ShapeValidationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.ShapeValidationResult|ShapeValidationResult]] * Description:N/A == Parameters == * //validationMode// * Type:[[ThinkGeo.MapSuite.Shapes.ShapeValidationMode|ShapeValidationMode]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsDisjointed(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsDisjointed(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Intersects(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Intersects(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Touches(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Touches(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Crosses(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Crosses(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsWithin(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsWithin(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Contains(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Contains(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Overlaps(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Overlaps(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsTopologicallyEqual(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsTopologicallyEqual(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetFeature() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetFeature(IDictionary) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A == Parameters == * //columnValues// * Type:IDictionary * Description:N/A
** {{wiki:PublicMethod.gif|}} GetCrossing(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipointShape|MultipointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} ScaleTo(Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //scale// * Type:Double * Description:N/A
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Type * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleUp(AreaBaseShape,Double) ** * //N/A// == Remarks == * //This method is useful when you would like to increase the size of the shape. Note that a larger percentage will scale the shape up faster, since you apply the operation multiple times. There is a ScaleDown method that will shrink the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:This parameter is the shape to use as the base for the scaling. * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape's size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleUp(Feature,Double) ** * //N/A// == Remarks == * //This method is useful when you would like to increase the size of the shape. Note that a larger percentage will scale the shape up faster, since you apply the operation multiple times. There is a ScaleDown method that will shrink the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This parameter is the feature to use as the base for the scaling. * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape's size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleDown(AreaBaseShape,Double) ** * //N/A// == Remarks == * //This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:This parameter is the shape to use as the base for the scaling. * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape's size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleDown(Feature,Double) ** * //N/A// == Remarks == * //This method is useful when you would like to decrease the size of the feature. Note that a larger percentage will scale the shape down faster, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This method is useful when you would like to decrease the size of the feature. Note that a larger percentage will scale the shape down faster, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This parameter is the shape to use as the base for the scaling. * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape's size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Union(IEnumerable) ** * //N/A// == Remarks == * //This is useful for adding area shapes together to form a larger area shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target features. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above. == Parameters == * //targetFeatures// * Type:IEnumerable<[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]> * Description:The target features you are trying to find the union with.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Union(IEnumerable) ** * //N/A// == Remarks == * //This is useful for adding area shapes together to form a larger area shape.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points that lie within the shapes you specified. == Parameters == * //areaShapes// * Type:IEnumerable<[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]]> * Description:The shapes you are trying to find the union with.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Split(AreaBaseShape,AreaBaseShape) ** * //N/A// == Remarks == * //None.// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]]> * Description:This method returns a collection of MultiPolygonShape split by the specified parameters. == Parameters == * //areaToSplit// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:This parameter represents the shape to be split. * //areaToSplitBy// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:This parameter represents the shape that will be used to perform the split.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Split(Feature,Feature) ** * //N/A// == Remarks == * //None.// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]> * Description:This method returns a collection of Features split by the specified parameters. == Parameters == * //areaToSplit// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This parameter represents the feature to be split. * //areaToSplitBy// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This parameter represents the feature that will be used to perform the split.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Simplify(AreaBaseShape,GeographyUnit,Double,DistanceUnit,SimplificationType) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:This parameter specifies the area shape to be simplfied. * //targetShapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:This parameter specifies the geographic unit of the shape you are performing the operation * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //toleranceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:This parameter specifes the distance unit of the tolerance. * //simplificationType// * Type:[[ThinkGeo.MapSuite.Shapes.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Simplify(AreaBaseShape,Double,SimplificationType) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:This parameter specifies the area shape to be simplfied. * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //simplificationType// * Type:[[ThinkGeo.MapSuite.Shapes.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
===== Protected Methods ===== ** {{wiki:ProtectedMethod.gif|}} GetPerimeterCore(GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //You would use this method to find the distance around the area shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Double * Description:The return unit is based on a LengthUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:This is the GeographyUnit of the shape you are performing the operation on. * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:This is the DistanceUnit you would like to use as the return value. For example, if you select miles as your returningUnit, then the distance will be returned in miles.
** {{wiki:ProtectedMethod.gif|}} GetAreaCore(GeographyUnit,AreaUnit) ** * //N/A// == Remarks == * //You would use this method to find the area inside the shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Double * Description:The return unit is based on a AreaUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:This is the GeographyUnit of the shape you are performing the operation on. * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.AreaUnit|AreaUnit]] * Description:This is the AreaUnit you would like to use as the return value. For example, if you select square miles as your returningUnit, then the distance will be returned in square miles.
** {{wiki:ProtectedMethod.gif|}} GetAccurateAreaCore(String,AreaUnit,DistanceCalculationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //shapeProj4ProjectionParameters// * Type:String * Description:N/A * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.AreaUnit|AreaUnit]] * Description:N/A * //distanceCalculationMode// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceCalculationMode|DistanceCalculationMode]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetAccuratePerimeterCore(String,DistanceUnit,DistanceCalculationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //shapeProj4ProjectionParameters// * Type:String * Description:N/A * //returningUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A * //distanceCalculationMode// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceCalculationMode|DistanceCalculationMode]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ScaleUpCore(Double) ** * //N/A// == Remarks == * //This method is useful when you would like to increase the size of the shape. Note that a larger percentage will scale the shape up faster, since you apply the operation multiple times. There is a ScaleDown method that will shrink the shape as well. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape's size.
** {{wiki:ProtectedMethod.gif|}} ScaleDownCore(Double) ** * //N/A// == Remarks == * //This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape's size.
** {{wiki:ProtectedMethod.gif|}} GetConvexHullCore() ** * //N/A// == Remarks == * //This method is useful when you want to create a perimeter around the shape. For example, if you had a MultiPolygon that represented buildings on a campus, you could easily get the convex hull of the buildings and determine the perimeter of all of the buildings together. This also works with MultiPoint shapes, where each point may represent a certain type of person you are doing statistics on. With convex hull, you can get an idea of the regions those points are located in. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.RingShape|RingShape]] * Description:This method returns the convex hull of the shape, defined as the smallest convex ring that contains all of the points in the shape. == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetIntersectionCore(AreaBaseShape) ** * //N/A// == Remarks == * //Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in both the current shape and the target shape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the intersection with.
** {{wiki:ProtectedMethod.gif|}} UnionCore(AreaBaseShape) ** * //N/A// == Remarks == * //This is useful for adding area shapes together to form a larger area shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the union with.
** {{wiki:ProtectedMethod.gif|}} GetDifferenceCore(AreaBaseShape) ** * //N/A// == Remarks == * //Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape but not in the targetShape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the difference with.
** {{wiki:ProtectedMethod.gif|}} GetSymmetricalDifferenceCore(AreaBaseShape) ** * //N/A// == Remarks == * //Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape or the targetShape but not both. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the symmetrical difference with.
** {{wiki:ProtectedMethod.gif|}} SimplifyCore(Double,SimplificationType) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //simplificationType// * Type:[[ThinkGeo.MapSuite.Shapes.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{wiki:ProtectedMethod.gif|}} LoadFromWellKnownDataCore(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownText// * Type:String * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetGeoJsonCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetWellKnownTextCore(RingOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters == * //outerRingOrder// * Type:[[ThinkGeo.MapSuite.Shapes.RingOrder|RingOrder]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} LoadFromWellKnownDataCore(Byte[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownBinary// * Type:Byte[] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetWellKnownBinaryCore(RingOrder,WkbByteOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters == * //outerRingOrder// * Type:[[ThinkGeo.MapSuite.Shapes.RingOrder|RingOrder]] * Description:N/A * //byteOrder// * Type:[[ThinkGeo.MapSuite.Shapes.WkbByteOrder|WkbByteOrder]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetBoundingBoxCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.RectangleShape|RectangleShape]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetWellKnownTypeCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.WellKnownType|WellKnownType]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CloneDeepCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} TranslateByOffsetCore(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //xOffsetDistance// * Type:Double * Description:N/A * //yOffsetDistance// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TranslateByDegreeCore(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //angleInDegrees// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RotateCore(PointShape,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //pivotPoint// * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A * //degreeAngle// * Type:Single * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetShortestLineToCore(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetClosestPointToCore(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetCenterPointCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} BufferCore(Double,Int32,BufferCapType,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //quadrantSegments// * Type:Int32 * Description:N/A * //bufferCapType// * Type:[[ThinkGeo.MapSuite.Shapes.BufferCapType|BufferCapType]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetDistanceToCore(BaseShape,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RegisterCore(PointShape,PointShape,DistanceUnit,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A == Parameters == * //fromPoint// * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A * //toPoint// * Type:[[ThinkGeo.MapSuite.Shapes.PointShape|PointShape]] * Description:N/A * //fromUnit// * Type:[[ThinkGeo.MapSuite.Shapes.DistanceUnit|DistanceUnit]] * Description:N/A * //toUnit// * Type:[[ThinkGeo.MapSuite.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ValidateCore(ShapeValidationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.ShapeValidationResult|ShapeValidationResult]] * Description:N/A == Parameters == * //validationMode// * Type:[[ThinkGeo.MapSuite.Shapes.ShapeValidationMode|ShapeValidationMode]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IsDisjointedCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IntersectsCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TouchesCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CrossesCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IsWithinCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ContainsCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OverlapsCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IsTopologicallyEqualCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetCrossingCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Shapes.MultipointShape|MultipointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ScaleToCore(Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //scale// * Type:Double * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} Id ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Tag ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object ** {{wiki:PublicProperty.gif|}} CanRotate ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ==== Protected Properties ==== ==== Public Events ====