ArcGIS API for Flex asks the start, end, and midpoint of a line segment

Source: Internet
Author: User
Tags polyline
To find the midpoint of a line segment:
Get Polyline's middle Path first, and then get the middle point of the path as the midpoint of the entire polyline.
Private Function Getcenter (pl:polyline): mappoint{
    var pathcount:number=pl.paths.length;
    var pathindex:int=int ((PATHCOUNT/2)-1);
    var midpath:array=pl.paths[pathindex];
    var ptcount:number=midpath.length;
    var ptindex:int=int ((PTCOUNT/2)-1);
    var pt:mappoint=pl.getpoint (Pathindex, ptindex);
    return pt;
}

To find the beginning and end of a line segment:
var Xx:int=luduanlist.selectedindex;
				var mygraphic:graphic=graphicarr[xx];
				var l:polyline=mygraphic.geometry as Polyline;
				
				
				var goldpath:array=l.paths[l.paths.length-1];
				
				var spt:mappoint=l.getpoint (0,0);
				
				
				
				
				
				var mpt:mappoint=l.getpoint (l.paths.length-1,goldpath.length-1);

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.