cronosreloaded
cronosreloaded

Reputation: 3

Draw a polygon containing many points in google maps

I have a list of 50+ points within a city, and I need to draw an outline or perimeter containing all of those points. I mean, some point will be inside the perimeter and should not be displayed. I just need to get the points that forms the perimeter.

Upvotes: 0

Views: 110

Answers (1)

c0m4
c0m4

Reputation: 4443

You need to implement a Convex hull algorithm.

Upvotes: 1

Related Questions